diff options
author | RJ Catalano <catalanor0220@gmail.com> | 2015-12-15 07:40:35 +0800 |
---|---|---|
committer | RJ Catalano <catalanor0220@gmail.com> | 2015-12-15 07:40:35 +0800 |
commit | 574e48b0b51bbf890702a0c0fbae799473945bdb (patch) | |
tree | d76f74a2f7d4f60296b567fcb8c30d651bd9c6cd /libsolidity | |
parent | 98684cca9035c754adcdc99fd196716cb7802efd (diff) | |
download | dexon-solidity-574e48b0b51bbf890702a0c0fbae799473945bdb.tar.gz dexon-solidity-574e48b0b51bbf890702a0c0fbae799473945bdb.tar.zst dexon-solidity-574e48b0b51bbf890702a0c0fbae799473945bdb.zip |
Inline array declarations complete
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/ast/AST.h | 22 | ||||
-rw-r--r-- | libsolidity/parsing/Parser.cpp | 22 |
2 files changed, 42 insertions, 2 deletions
diff --git a/libsolidity/ast/AST.h b/libsolidity/ast/AST.h index 1217d945..0c37dad3 100644 --- a/libsolidity/ast/AST.h +++ b/libsolidity/ast/AST.h @@ -1126,9 +1126,10 @@ private: ASTPointer<Expression> m_rightHandSide; }; + /** - * Tuple or just parenthesized expression. - * Examples: (1, 2), (x,), (x), () + * Tuple, parenthesized expression, or bracketed expression. + * Examples: (1, 2), (x,), (x), (), [1, 2], * Individual components might be empty shared pointers (as in the second example). * The respective types in lvalue context are: 2-tuple, 2-tuple (with wildcard), type of x, 0-tuple * Not in lvalue context: 2-tuple, _1_-tuple, type of x, 0-tuple. @@ -1150,6 +1151,23 @@ private: std::vector<ASTPointer<Expression>> m_components; }; +class InlineArrayExpression: public Expression +{ +public: + InlineArrayExpression( + SourceLocation const& _location, + std::vector<ASTPointer<Expression>> const& _components + ): + Expression(_location), m_components(_components) {} + virtual void accept(ASTVisitor& _visitor) override; + virtual void accept(ASTConstVisitor& _visitor) const override; + + std::vector<ASTPointer<Expression>> const& components() const { return m_components; } + +private: + std::vector<ASTPointer<Expression>> m_components; +}; + /** * Operation involving a unary operator, pre- or postfix. * Examples: ++i, delete x or !true diff --git a/libsolidity/parsing/Parser.cpp b/libsolidity/parsing/Parser.cpp index 2b886121..50e4d29d 100644 --- a/libsolidity/parsing/Parser.cpp +++ b/libsolidity/parsing/Parser.cpp @@ -1056,6 +1056,28 @@ ASTPointer<Expression> Parser::parsePrimaryExpression() expectToken(Token::RParen); return nodeFactory.createNode<TupleExpression>(components); } + case Token::LBrack: + { + // Inline array expression + // Special cases: [] is empty tuple type, (x) is not a real tuple, (x,) is one-dimensional tuple + m_scanner->next(); + vector<ASTPointer<Expression>> components; + if (m_scanner->currentToken() != Token::RBrack) + while (true) + { + if (m_scanner->currentToken() != Token::Comma && m_scanner->currentToken() != Token::RBrack) + components.push_back(parseExpression()); + else + components.push_back(ASTPointer<Expression>()); + if (m_scanner->currentToken() == Token::RBrack) + break; + else if (m_scanner->currentToken() == Token::Comma) + m_scanner->next(); + } + nodeFactory.markEndPosition(); + expectToken(Token::RBrack); + return nodeFactory.createNode<TupleExpression>(components); + } default: if (Token::isElementaryTypeName(token)) { |