Tests for ether subdenominations. Work in progress

This commit is contained in:
Lefteris Karapetsas 2015-02-04 22:02:35 +01:00
parent dca5f7b57b
commit 426f9a2860
3 changed files with 7 additions and 4 deletions

View File

@ -599,10 +599,10 @@ Literal::Literal(Location const& _location, Token::Value _token,
Token::Value _sub): Token::Value _sub):
PrimaryExpression(_location), m_token(_token), m_value(_value) PrimaryExpression(_location), m_token(_token), m_value(_value)
{ {
solAssert(_sub == Token::ILLEGAL || _sub == Token::ETH_SUB_WEI || if(Token::isEtherSubdenomination(_sub))
_sub == Token::ETH_SUB_SZABO || _sub == Token::ETH_SUB_FINNEY || m_subDenomination = static_cast<Literal::ethSubDenomination>(_sub);
_sub == Token::ETH_SUB_ETHER, "Illegal Token::Value given to Literal ctor"); else
m_subDenomination =static_cast<Literal::ethSubDenomination>(_sub); m_subDenomination = Literal::ethSubDenomination::NONE;
} }
void Literal::checkTypeRequirements() void Literal::checkTypeRequirements()

View File

@ -694,6 +694,8 @@ ASTPointer<Expression> Parser::parsePrimaryExpression()
case Token::NUMBER: case Token::NUMBER:
nextToken = m_scanner->peekNextToken(); nextToken = m_scanner->peekNextToken();
case Token::STRING_LITERAL: case Token::STRING_LITERAL:
if (Token::isEtherSubdenomination(nextToken))
m_scanner->next();
nodeFactory.markEndPosition(); nodeFactory.markEndPosition();
expression = nodeFactory.createNode<Literal>(token, getLiteralAndAdvance(), nextToken); expression = nodeFactory.createNode<Literal>(token, getLiteralAndAdvance(), nextToken);
break; break;

View File

@ -383,6 +383,7 @@ public:
static bool isCountOp(Value op) { return op == INC || op == DEC; } static bool isCountOp(Value op) { return op == INC || op == DEC; }
static bool isShiftOp(Value op) { return (SHL <= op) && (op <= SHR); } static bool isShiftOp(Value op) { return (SHL <= op) && (op <= SHR); }
static bool isVisibilitySpecifier(Value op) { return op == PUBLIC || op == PRIVATE || op == PROTECTED; } static bool isVisibilitySpecifier(Value op) { return op == PUBLIC || op == PRIVATE || op == PROTECTED; }
static bool isEtherSubdenomination(Value op) { return op == ETH_SUB_WEI || op == ETH_SUB_SZABO || op == ETH_SUB_FINNEY || op == Token::ETH_SUB_ETHER; }
// Returns a string corresponding to the JS token string // Returns a string corresponding to the JS token string
// (.e., "<" for the token LT) or NULL if the token doesn't // (.e., "<" for the token LT) or NULL if the token doesn't