2014-10-07 16:25:04 +00:00
|
|
|
/*
|
2014-10-16 12:08:54 +00:00
|
|
|
This file is part of cpp-ethereum.
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-07 16:25:04 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Solidity parser.
|
|
|
|
*/
|
|
|
|
|
2014-12-03 06:46:55 +00:00
|
|
|
#include <vector>
|
2014-10-15 12:45:51 +00:00
|
|
|
#include <libdevcore/Log.h>
|
2015-04-24 15:35:16 +00:00
|
|
|
#include <libevmasm/SourceLocation.h>
|
2014-10-15 12:45:51 +00:00
|
|
|
#include <libsolidity/Parser.h>
|
|
|
|
#include <libsolidity/Scanner.h>
|
|
|
|
#include <libsolidity/Exceptions.h>
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-12-03 06:47:08 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2014-10-07 16:25:04 +00:00
|
|
|
|
|
|
|
/// AST node factory that also tracks the begin and end position of an AST node
|
|
|
|
/// while it is being parsed
|
|
|
|
class Parser::ASTNodeFactory
|
|
|
|
{
|
|
|
|
public:
|
2014-12-03 17:52:28 +00:00
|
|
|
ASTNodeFactory(Parser const& _parser):
|
|
|
|
m_parser(_parser), m_location(_parser.getPosition(), -1, _parser.getSourceName()) {}
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTNodeFactory(Parser const& _parser, ASTPointer<ASTNode> const& _childNode):
|
|
|
|
m_parser(_parser), m_location(_childNode->getLocation()) {}
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-10-16 21:49:45 +00:00
|
|
|
void markEndPosition() { m_location.end = m_parser.getEndPosition(); }
|
2015-02-24 16:31:06 +00:00
|
|
|
void setLocation(SourceLocation const& _location) { m_location = _location; }
|
2014-10-16 21:49:45 +00:00
|
|
|
void setLocationEmpty() { m_location.end = m_location.start; }
|
2014-10-09 10:28:37 +00:00
|
|
|
/// Set the end position to the one of the given node.
|
2014-10-20 12:00:37 +00:00
|
|
|
void setEndPositionFromNode(ASTPointer<ASTNode> const& _node) { m_location.end = _node->getLocation().end; }
|
2014-10-09 10:28:37 +00:00
|
|
|
|
|
|
|
template <class NodeType, typename... Args>
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<NodeType> createNode(Args&& ... _args)
|
2014-10-09 10:28:37 +00:00
|
|
|
{
|
2014-10-10 14:37:54 +00:00
|
|
|
if (m_location.end < 0)
|
|
|
|
markEndPosition();
|
2014-12-03 06:47:08 +00:00
|
|
|
return make_shared<NodeType>(m_location, forward<Args>(_args)...);
|
2014-10-09 10:28:37 +00:00
|
|
|
}
|
2014-10-07 16:25:04 +00:00
|
|
|
|
|
|
|
private:
|
2014-10-20 11:02:06 +00:00
|
|
|
Parser const& m_parser;
|
2015-02-23 16:14:59 +00:00
|
|
|
SourceLocation m_location;
|
2014-10-07 16:25:04 +00:00
|
|
|
};
|
|
|
|
|
2014-12-03 06:46:55 +00:00
|
|
|
ASTPointer<SourceUnit> Parser::parse(shared_ptr<Scanner> const& _scanner)
|
|
|
|
{
|
|
|
|
m_scanner = _scanner;
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
vector<ASTPointer<ASTNode>> nodes;
|
|
|
|
while (_scanner->getCurrentToken() != Token::EOS)
|
|
|
|
{
|
|
|
|
switch (m_scanner->getCurrentToken())
|
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Import:
|
2014-12-03 06:46:55 +00:00
|
|
|
nodes.push_back(parseImportDirective());
|
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Contract:
|
2014-12-03 06:46:55 +00:00
|
|
|
nodes.push_back(parseContractDefinition());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BOOST_THROW_EXCEPTION(createParserError(std::string("Expected import directive or contract definition.")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nodeFactory.createNode<SourceUnit>(nodes);
|
|
|
|
}
|
|
|
|
|
2014-12-03 17:52:28 +00:00
|
|
|
std::shared_ptr<const string> const& Parser::getSourceName() const
|
|
|
|
{
|
|
|
|
return m_scanner->getSourceName();
|
|
|
|
}
|
|
|
|
|
2014-10-07 16:25:04 +00:00
|
|
|
int Parser::getPosition() const
|
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
return m_scanner->getCurrentLocation().start;
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int Parser::getEndPosition() const
|
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
return m_scanner->getCurrentLocation().end;
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 06:46:55 +00:00
|
|
|
ASTPointer<ImportDirective> Parser::parseImportDirective()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Import);
|
|
|
|
if (m_scanner->getCurrentToken() != Token::StringLiteral)
|
2014-12-03 06:46:55 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected string literal (URL)."));
|
|
|
|
ASTPointer<ASTString> url = getLiteralAndAdvance();
|
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Semicolon);
|
2014-12-03 06:46:55 +00:00
|
|
|
return nodeFactory.createNode<ImportDirective>(url);
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ContractDefinition> Parser::parseContractDefinition()
|
2014-10-07 16:25:04 +00:00
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-01-20 16:41:09 +00:00
|
|
|
ASTPointer<ASTString> docString;
|
2014-12-10 12:13:12 +00:00
|
|
|
if (m_scanner->getCurrentCommentLiteral() != "")
|
2015-01-20 16:41:09 +00:00
|
|
|
docString = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Contract);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ASTString> name = expectIdentifierToken();
|
2015-01-19 20:05:47 +00:00
|
|
|
vector<ASTPointer<InheritanceSpecifier>> baseContracts;
|
2014-12-03 06:47:08 +00:00
|
|
|
vector<ASTPointer<StructDefinition>> structs;
|
2015-02-09 17:08:56 +00:00
|
|
|
vector<ASTPointer<EnumDefinition>> enums;
|
2014-12-03 06:47:08 +00:00
|
|
|
vector<ASTPointer<VariableDeclaration>> stateVariables;
|
|
|
|
vector<ASTPointer<FunctionDefinition>> functions;
|
2015-01-21 10:16:18 +00:00
|
|
|
vector<ASTPointer<ModifierDefinition>> modifiers;
|
2015-01-29 13:35:28 +00:00
|
|
|
vector<ASTPointer<EventDefinition>> events;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::Is)
|
2015-01-15 15:15:01 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
m_scanner->next();
|
2015-01-19 20:05:47 +00:00
|
|
|
baseContracts.push_back(parseInheritanceSpecifier());
|
2015-01-15 15:15:01 +00:00
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
while (m_scanner->getCurrentToken() == Token::Comma);
|
|
|
|
expectToken(Token::LBrace);
|
2014-10-16 12:08:54 +00:00
|
|
|
while (true)
|
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
Token::Value currentToken = m_scanner->getCurrentToken();
|
2015-02-09 13:00:12 +00:00
|
|
|
if (currentToken == Token::RBrace)
|
2014-10-09 10:28:37 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (currentToken == Token::Function)
|
2015-03-27 14:15:34 +00:00
|
|
|
functions.push_back(parseFunctionDefinition(name.get()));
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (currentToken == Token::Struct)
|
2014-10-09 10:28:37 +00:00
|
|
|
structs.push_back(parseStructDefinition());
|
2015-02-09 17:08:56 +00:00
|
|
|
else if (currentToken == Token::Enum)
|
|
|
|
enums.push_back(parseEnumDefinition());
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (currentToken == Token::Identifier || currentToken == Token::Mapping ||
|
2014-10-16 12:08:54 +00:00
|
|
|
Token::isElementaryTypeName(currentToken))
|
|
|
|
{
|
2015-01-29 13:35:28 +00:00
|
|
|
VarDeclParserOptions options;
|
|
|
|
options.isStateVariable = true;
|
2015-02-17 15:21:38 +00:00
|
|
|
options.allowInitialValue = true;
|
2015-01-29 13:35:28 +00:00
|
|
|
stateVariables.push_back(parseVariableDeclaration(options));
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Semicolon);
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (currentToken == Token::Modifier)
|
2015-01-21 10:16:18 +00:00
|
|
|
modifiers.push_back(parseModifierDefinition());
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (currentToken == Token::Event)
|
2015-01-29 13:35:28 +00:00
|
|
|
events.push_back(parseEventDefinition());
|
2014-10-16 12:08:54 +00:00
|
|
|
else
|
2015-01-21 10:16:18 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Function, variable, struct or modifier declaration expected."));
|
2014-10-09 10:28:37 +00:00
|
|
|
}
|
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RBrace);
|
2015-03-20 16:50:26 +00:00
|
|
|
return nodeFactory.createNode<ContractDefinition>(
|
|
|
|
name,
|
|
|
|
docString,
|
|
|
|
baseContracts,
|
|
|
|
structs,
|
|
|
|
enums,
|
|
|
|
stateVariables,
|
|
|
|
functions,
|
|
|
|
modifiers,
|
2015-03-27 10:53:17 +00:00
|
|
|
events
|
2015-03-20 16:50:26 +00:00
|
|
|
);
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 20:05:47 +00:00
|
|
|
ASTPointer<InheritanceSpecifier> Parser::parseInheritanceSpecifier()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-01-28 10:28:22 +00:00
|
|
|
ASTPointer<Identifier> name(parseIdentifier());
|
2015-01-19 20:05:47 +00:00
|
|
|
vector<ASTPointer<Expression>> arguments;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::LParen)
|
2015-01-19 20:05:47 +00:00
|
|
|
{
|
|
|
|
m_scanner->next();
|
2015-01-29 17:26:00 +00:00
|
|
|
arguments = parseFunctionCallListArguments();
|
2015-01-19 20:05:47 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2015-01-19 20:05:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
nodeFactory.setEndPositionFromNode(name);
|
|
|
|
return nodeFactory.createNode<InheritanceSpecifier>(name, arguments);
|
|
|
|
}
|
|
|
|
|
2015-02-02 16:24:09 +00:00
|
|
|
Declaration::Visibility Parser::parseVisibilitySpecifier(Token::Value _token)
|
|
|
|
{
|
2015-02-09 13:35:31 +00:00
|
|
|
Declaration::Visibility visibility(Declaration::Visibility::Default);
|
2015-02-09 13:00:12 +00:00
|
|
|
if (_token == Token::Public)
|
2015-02-09 13:35:31 +00:00
|
|
|
visibility = Declaration::Visibility::Public;
|
2015-02-22 18:37:54 +00:00
|
|
|
else if (_token == Token::Internal)
|
|
|
|
visibility = Declaration::Visibility::Internal;
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (_token == Token::Private)
|
2015-02-09 13:35:31 +00:00
|
|
|
visibility = Declaration::Visibility::Private;
|
2015-02-13 23:43:02 +00:00
|
|
|
else if (_token == Token::External)
|
|
|
|
visibility = Declaration::Visibility::External;
|
2015-02-02 16:24:09 +00:00
|
|
|
else
|
|
|
|
solAssert(false, "Invalid visibility specifier.");
|
|
|
|
m_scanner->next();
|
|
|
|
return visibility;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASTPointer<FunctionDefinition> Parser::parseFunctionDefinition(ASTString const* _contractName)
|
2014-10-07 16:25:04 +00:00
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2014-11-28 00:26:37 +00:00
|
|
|
ASTPointer<ASTString> docstring;
|
|
|
|
if (m_scanner->getCurrentCommentLiteral() != "")
|
2014-12-03 06:47:08 +00:00
|
|
|
docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
|
2014-11-30 21:43:40 +00:00
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Function);
|
2015-01-29 21:50:20 +00:00
|
|
|
ASTPointer<ASTString> name;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::LParen)
|
2015-01-29 21:50:20 +00:00
|
|
|
name = make_shared<ASTString>(); // anonymous function
|
|
|
|
else
|
|
|
|
name = expectIdentifierToken();
|
2015-06-05 09:07:50 +00:00
|
|
|
VarDeclParserOptions options;
|
|
|
|
options.allowLocationSpecifier = true;
|
|
|
|
ASTPointer<ParameterList> parameters(parseParameterList(options));
|
2014-10-09 10:28:37 +00:00
|
|
|
bool isDeclaredConst = false;
|
2015-02-09 13:35:31 +00:00
|
|
|
Declaration::Visibility visibility(Declaration::Visibility::Default);
|
2015-01-22 00:02:38 +00:00
|
|
|
vector<ASTPointer<ModifierInvocation>> modifiers;
|
|
|
|
while (true)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2015-02-02 16:24:09 +00:00
|
|
|
Token::Value token = m_scanner->getCurrentToken();
|
2015-02-09 13:00:12 +00:00
|
|
|
if (token == Token::Const)
|
2015-01-22 00:02:38 +00:00
|
|
|
{
|
|
|
|
isDeclaredConst = true;
|
|
|
|
m_scanner->next();
|
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (token == Token::Identifier)
|
2015-01-22 00:02:38 +00:00
|
|
|
modifiers.push_back(parseModifierInvocation());
|
2015-02-02 16:24:09 +00:00
|
|
|
else if (Token::isVisibilitySpecifier(token))
|
|
|
|
{
|
2015-02-09 13:35:31 +00:00
|
|
|
if (visibility != Declaration::Visibility::Default)
|
2015-02-02 16:24:09 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Multiple visibility specifiers."));
|
|
|
|
visibility = parseVisibilitySpecifier(token);
|
|
|
|
}
|
2015-01-22 00:02:38 +00:00
|
|
|
else
|
|
|
|
break;
|
2014-10-09 10:28:37 +00:00
|
|
|
}
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ParameterList> returnParameters;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::Returns)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-20 11:02:06 +00:00
|
|
|
bool const permitEmptyParameterList = false;
|
2014-10-09 10:28:37 +00:00
|
|
|
m_scanner->next();
|
2015-06-05 09:07:50 +00:00
|
|
|
returnParameters = parseParameterList(options, permitEmptyParameterList);
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else
|
2015-01-30 20:43:19 +00:00
|
|
|
returnParameters = createEmptyParameterList();
|
2015-03-20 16:50:26 +00:00
|
|
|
ASTPointer<Block> block = ASTPointer<Block>();
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
if (m_scanner->getCurrentToken() != Token::Semicolon)
|
|
|
|
{
|
|
|
|
block = parseBlock();
|
|
|
|
nodeFactory.setEndPositionFromNode(block);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_scanner->next(); // just consume the ';'
|
2015-01-20 14:58:04 +00:00
|
|
|
bool const c_isConstructor = (_contractName && *name == *_contractName);
|
2015-02-02 16:24:09 +00:00
|
|
|
return nodeFactory.createNode<FunctionDefinition>(name, visibility, c_isConstructor, docstring,
|
2015-01-22 00:02:38 +00:00
|
|
|
parameters, isDeclaredConst, modifiers,
|
|
|
|
returnParameters, block);
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<StructDefinition> Parser::parseStructDefinition()
|
2014-10-07 16:25:04 +00:00
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Struct);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ASTString> name = expectIdentifierToken();
|
2014-12-03 06:47:08 +00:00
|
|
|
vector<ASTPointer<VariableDeclaration>> members;
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::LBrace);
|
|
|
|
while (m_scanner->getCurrentToken() != Token::RBrace)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2015-01-29 13:35:28 +00:00
|
|
|
members.push_back(parseVariableDeclaration());
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Semicolon);
|
2014-10-09 10:28:37 +00:00
|
|
|
}
|
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RBrace);
|
2014-10-09 10:28:37 +00:00
|
|
|
return nodeFactory.createNode<StructDefinition>(name, members);
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 21:52:04 +00:00
|
|
|
ASTPointer<EnumValue> Parser::parseEnumValue()
|
2015-02-09 17:08:56 +00:00
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
nodeFactory.markEndPosition();
|
2015-02-13 21:52:04 +00:00
|
|
|
return nodeFactory.createNode<EnumValue>(expectIdentifierToken());
|
2015-02-09 17:08:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ASTPointer<EnumDefinition> Parser::parseEnumDefinition()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
expectToken(Token::Enum);
|
|
|
|
ASTPointer<ASTString> name = expectIdentifierToken();
|
2015-02-13 16:34:46 +00:00
|
|
|
vector<ASTPointer<EnumValue>> members;
|
2015-02-09 17:08:56 +00:00
|
|
|
expectToken(Token::LBrace);
|
|
|
|
|
2015-02-11 16:23:13 +00:00
|
|
|
while (m_scanner->getCurrentToken() != Token::RBrace)
|
2015-02-09 17:08:56 +00:00
|
|
|
{
|
2015-02-13 21:52:04 +00:00
|
|
|
members.push_back(parseEnumValue());
|
2015-02-09 17:08:56 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::RBrace)
|
|
|
|
break;
|
|
|
|
expectToken(Token::Comma);
|
2015-02-13 21:52:04 +00:00
|
|
|
if (m_scanner->getCurrentToken() != Token::Identifier)
|
2015-02-13 14:59:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected Identifier after ','"));
|
2015-02-09 17:08:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
expectToken(Token::RBrace);
|
|
|
|
return nodeFactory.createNode<EnumDefinition>(name, members);
|
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<VariableDeclaration> Parser::parseVariableDeclaration(
|
2015-06-05 09:07:50 +00:00
|
|
|
VarDeclParserOptions const& _options,
|
|
|
|
ASTPointer<TypeName> const& _lookAheadArrayType
|
|
|
|
)
|
2014-10-07 16:25:04 +00:00
|
|
|
{
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTNodeFactory nodeFactory = _lookAheadArrayType ?
|
|
|
|
ASTNodeFactory(*this, _lookAheadArrayType) : ASTNodeFactory(*this);
|
|
|
|
ASTPointer<TypeName> type;
|
|
|
|
if (_lookAheadArrayType)
|
|
|
|
type = _lookAheadArrayType;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
type = parseTypeName(_options.allowVar);
|
|
|
|
if (type != nullptr)
|
|
|
|
nodeFactory.setEndPositionFromNode(type);
|
|
|
|
}
|
2015-01-29 13:35:28 +00:00
|
|
|
bool isIndexed = false;
|
2015-03-12 13:15:04 +00:00
|
|
|
bool isDeclaredConst = false;
|
2015-02-09 13:35:31 +00:00
|
|
|
Declaration::Visibility visibility(Declaration::Visibility::Default);
|
2015-06-05 09:07:50 +00:00
|
|
|
VariableDeclaration::Location location = VariableDeclaration::Location::Default;
|
|
|
|
ASTPointer<ASTString> identifier;
|
|
|
|
|
|
|
|
while (true)
|
2015-03-12 13:15:04 +00:00
|
|
|
{
|
2015-06-05 09:07:50 +00:00
|
|
|
Token::Value token = m_scanner->getCurrentToken();
|
|
|
|
if (_options.isStateVariable && Token::isVariableVisibilitySpecifier(token))
|
|
|
|
{
|
|
|
|
if (visibility != Declaration::Visibility::Default)
|
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Visibility already specified."));
|
|
|
|
visibility = parseVisibilitySpecifier(token);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (_options.allowIndexed && token == Token::Indexed)
|
|
|
|
isIndexed = true;
|
|
|
|
else if (token == Token::Const)
|
|
|
|
isDeclaredConst = true;
|
|
|
|
else if (_options.allowLocationSpecifier && Token::isLocationSpecifier(token))
|
|
|
|
{
|
|
|
|
if (location != VariableDeclaration::Location::Default)
|
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Location already specified."));
|
|
|
|
if (!type)
|
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Location specifier needs explicit type name."));
|
|
|
|
location = (
|
|
|
|
token == Token::Memory ?
|
|
|
|
VariableDeclaration::Location::Memory :
|
|
|
|
VariableDeclaration::Location::Storage
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
m_scanner->next();
|
|
|
|
}
|
2015-03-12 13:15:04 +00:00
|
|
|
}
|
2015-02-09 01:24:57 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-03-12 13:15:04 +00:00
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
if (_options.allowEmptyName && m_scanner->getCurrentToken() != Token::Identifier)
|
2015-02-09 01:06:30 +00:00
|
|
|
{
|
|
|
|
identifier = make_shared<ASTString>("");
|
2015-02-09 10:09:03 +00:00
|
|
|
solAssert(type != nullptr, "");
|
2015-02-09 01:06:30 +00:00
|
|
|
nodeFactory.setEndPositionFromNode(type);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
identifier = expectIdentifierToken();
|
2015-02-17 15:21:38 +00:00
|
|
|
ASTPointer<Expression> value;
|
|
|
|
if (_options.allowInitialValue)
|
|
|
|
{
|
|
|
|
if (m_scanner->getCurrentToken() == Token::Assign)
|
|
|
|
{
|
|
|
|
m_scanner->next();
|
|
|
|
value = parseExpression();
|
|
|
|
nodeFactory.setEndPositionFromNode(value);
|
|
|
|
}
|
|
|
|
}
|
2015-06-05 12:45:47 +00:00
|
|
|
return nodeFactory.createNode<VariableDeclaration>(
|
|
|
|
type,
|
|
|
|
identifier,
|
|
|
|
value,
|
|
|
|
visibility,
|
|
|
|
_options.isStateVariable,
|
|
|
|
isIndexed,
|
|
|
|
isDeclaredConst,
|
|
|
|
location
|
|
|
|
);
|
2014-10-08 18:53:50 +00:00
|
|
|
}
|
|
|
|
|
2015-01-21 10:16:18 +00:00
|
|
|
ASTPointer<ModifierDefinition> Parser::parseModifierDefinition()
|
|
|
|
{
|
|
|
|
ScopeGuard resetModifierFlag([this]() { m_insideModifier = false; });
|
|
|
|
m_insideModifier = true;
|
|
|
|
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
ASTPointer<ASTString> docstring;
|
|
|
|
if (m_scanner->getCurrentCommentLiteral() != "")
|
|
|
|
docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
|
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Modifier);
|
2015-01-21 10:16:18 +00:00
|
|
|
ASTPointer<ASTString> name(expectIdentifierToken());
|
|
|
|
ASTPointer<ParameterList> parameters;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::LParen)
|
2015-06-05 09:07:50 +00:00
|
|
|
{
|
|
|
|
VarDeclParserOptions options;
|
|
|
|
options.allowIndexed = true;
|
|
|
|
options.allowLocationSpecifier = true;
|
|
|
|
parameters = parseParameterList(options);
|
|
|
|
}
|
2015-01-21 10:16:18 +00:00
|
|
|
else
|
2015-01-30 20:43:19 +00:00
|
|
|
parameters = createEmptyParameterList();
|
2015-01-21 10:16:18 +00:00
|
|
|
ASTPointer<Block> block = parseBlock();
|
|
|
|
nodeFactory.setEndPositionFromNode(block);
|
|
|
|
return nodeFactory.createNode<ModifierDefinition>(name, docstring, parameters, block);
|
|
|
|
}
|
|
|
|
|
2015-01-29 13:35:28 +00:00
|
|
|
ASTPointer<EventDefinition> Parser::parseEventDefinition()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
ASTPointer<ASTString> docstring;
|
|
|
|
if (m_scanner->getCurrentCommentLiteral() != "")
|
|
|
|
docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
|
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Event);
|
2015-01-29 13:35:28 +00:00
|
|
|
ASTPointer<ASTString> name(expectIdentifierToken());
|
|
|
|
ASTPointer<ParameterList> parameters;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::LParen)
|
2015-06-05 09:07:50 +00:00
|
|
|
{
|
|
|
|
VarDeclParserOptions options;
|
|
|
|
options.allowIndexed = true;
|
|
|
|
parameters = parseParameterList(options);
|
|
|
|
}
|
2015-01-30 20:43:19 +00:00
|
|
|
else
|
|
|
|
parameters = createEmptyParameterList();
|
2015-03-17 09:48:46 +00:00
|
|
|
bool anonymous = false;
|
|
|
|
if (m_scanner->getCurrentToken() == Token::Anonymous)
|
|
|
|
{
|
|
|
|
anonymous = true;
|
|
|
|
m_scanner->next();
|
|
|
|
}
|
2015-01-29 13:35:28 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Semicolon);
|
2015-03-16 18:19:34 +00:00
|
|
|
return nodeFactory.createNode<EventDefinition>(name, docstring, parameters, anonymous);
|
2015-01-29 13:35:28 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 00:02:38 +00:00
|
|
|
ASTPointer<ModifierInvocation> Parser::parseModifierInvocation()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-01-28 10:28:22 +00:00
|
|
|
ASTPointer<Identifier> name(parseIdentifier());
|
2015-01-22 00:02:38 +00:00
|
|
|
vector<ASTPointer<Expression>> arguments;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::LParen)
|
2015-01-22 00:02:38 +00:00
|
|
|
{
|
|
|
|
m_scanner->next();
|
2015-01-29 17:26:00 +00:00
|
|
|
arguments = parseFunctionCallListArguments();
|
2015-01-22 00:02:38 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2015-01-22 00:02:38 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
nodeFactory.setEndPositionFromNode(name);
|
|
|
|
return nodeFactory.createNode<ModifierInvocation>(name, arguments);
|
|
|
|
}
|
|
|
|
|
2015-01-28 10:28:22 +00:00
|
|
|
ASTPointer<Identifier> Parser::parseIdentifier()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
return nodeFactory.createNode<Identifier>(expectIdentifierToken());
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<TypeName> Parser::parseTypeName(bool _allowVar)
|
2014-10-08 18:53:50 +00:00
|
|
|
{
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<TypeName> type;
|
2014-10-09 10:28:37 +00:00
|
|
|
Token::Value token = m_scanner->getCurrentToken();
|
2014-10-16 12:08:54 +00:00
|
|
|
if (Token::isElementaryTypeName(token))
|
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
type = ASTNodeFactory(*this).createNode<ElementaryTypeName>(token);
|
|
|
|
m_scanner->next();
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (token == Token::Var)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-13 16:22:15 +00:00
|
|
|
if (!_allowVar)
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected explicit type name."));
|
2014-10-09 10:28:37 +00:00
|
|
|
m_scanner->next();
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (token == Token::Mapping)
|
2014-10-09 10:28:37 +00:00
|
|
|
type = parseMapping();
|
2015-02-09 13:00:12 +00:00
|
|
|
else if (token == Token::Identifier)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-10 14:37:54 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
type = nodeFactory.createNode<UserDefinedTypeName>(expectIdentifierToken());
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected type name"));
|
2015-02-20 14:52:30 +00:00
|
|
|
|
2015-04-15 22:06:57 +00:00
|
|
|
if (type)
|
|
|
|
// Parse "[...]" postfixes for arrays.
|
|
|
|
while (m_scanner->getCurrentToken() == Token::LBrack)
|
|
|
|
{
|
|
|
|
m_scanner->next();
|
|
|
|
ASTPointer<Expression> length;
|
|
|
|
if (m_scanner->getCurrentToken() != Token::RBrack)
|
|
|
|
length = parseExpression();
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
expectToken(Token::RBrack);
|
|
|
|
type = nodeFactory.createNode<ArrayTypeName>(type, length);
|
|
|
|
}
|
2014-10-09 10:28:37 +00:00
|
|
|
return type;
|
2014-10-08 18:53:50 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Mapping> Parser::parseMapping()
|
2014-10-08 18:53:50 +00:00
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Mapping);
|
|
|
|
expectToken(Token::LParen);
|
2014-10-16 12:08:54 +00:00
|
|
|
if (!Token::isElementaryTypeName(m_scanner->getCurrentToken()))
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected elementary type name for mapping key type"));
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ElementaryTypeName> keyType;
|
2014-10-09 10:28:37 +00:00
|
|
|
keyType = ASTNodeFactory(*this).createNode<ElementaryTypeName>(m_scanner->getCurrentToken());
|
|
|
|
m_scanner->next();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Arrow);
|
2014-10-13 16:22:15 +00:00
|
|
|
bool const allowVar = false;
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<TypeName> valueType = parseTypeName(allowVar);
|
2014-10-09 10:28:37 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2014-10-09 10:28:37 +00:00
|
|
|
return nodeFactory.createNode<Mapping>(keyType, valueType);
|
2014-10-08 18:53:50 +00:00
|
|
|
}
|
|
|
|
|
2015-06-05 09:07:50 +00:00
|
|
|
ASTPointer<ParameterList> Parser::parseParameterList(
|
|
|
|
VarDeclParserOptions const& _options,
|
|
|
|
bool _allowEmpty
|
|
|
|
)
|
2014-10-08 18:53:50 +00:00
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2014-12-03 06:47:08 +00:00
|
|
|
vector<ASTPointer<VariableDeclaration>> parameters;
|
2015-06-05 09:07:50 +00:00
|
|
|
VarDeclParserOptions options(_options);
|
2015-02-09 01:06:30 +00:00
|
|
|
options.allowEmptyName = true;
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::LParen);
|
|
|
|
if (!_allowEmpty || m_scanner->getCurrentToken() != Token::RParen)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2015-01-29 13:35:28 +00:00
|
|
|
parameters.push_back(parseVariableDeclaration(options));
|
2015-02-09 13:00:12 +00:00
|
|
|
while (m_scanner->getCurrentToken() != Token::RParen)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Comma);
|
2015-01-29 13:35:28 +00:00
|
|
|
parameters.push_back(parseVariableDeclaration(options));
|
2014-10-09 10:28:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
m_scanner->next();
|
|
|
|
return nodeFactory.createNode<ParameterList>(parameters);
|
2014-10-08 18:53:50 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Block> Parser::parseBlock()
|
2014-10-08 18:53:50 +00:00
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::LBrace);
|
2014-12-03 06:47:08 +00:00
|
|
|
vector<ASTPointer<Statement>> statements;
|
2015-02-09 13:00:12 +00:00
|
|
|
while (m_scanner->getCurrentToken() != Token::RBrace)
|
2014-10-09 10:28:37 +00:00
|
|
|
statements.push_back(parseStatement());
|
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RBrace);
|
2014-10-09 10:28:37 +00:00
|
|
|
return nodeFactory.createNode<Block>(statements);
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Statement> Parser::parseStatement()
|
2014-10-09 10:28:37 +00:00
|
|
|
{
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Statement> statement;
|
2014-10-16 12:08:54 +00:00
|
|
|
switch (m_scanner->getCurrentToken())
|
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::If:
|
2014-10-09 10:28:37 +00:00
|
|
|
return parseIfStatement();
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::While:
|
2014-10-09 10:28:37 +00:00
|
|
|
return parseWhileStatement();
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::For:
|
2014-12-15 16:45:18 +00:00
|
|
|
return parseForStatement();
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::LBrace:
|
2014-10-09 10:28:37 +00:00
|
|
|
return parseBlock();
|
2014-10-16 12:08:54 +00:00
|
|
|
// starting from here, all statements must be terminated by a semicolon
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Continue:
|
2014-10-09 13:57:49 +00:00
|
|
|
statement = ASTNodeFactory(*this).createNode<Continue>();
|
2014-10-30 00:20:32 +00:00
|
|
|
m_scanner->next();
|
2014-10-09 13:57:49 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Break:
|
2014-10-09 13:57:49 +00:00
|
|
|
statement = ASTNodeFactory(*this).createNode<Break>();
|
2014-10-30 00:20:32 +00:00
|
|
|
m_scanner->next();
|
2014-10-09 13:57:49 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Return:
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> expression;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->next() != Token::Semicolon)
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2014-10-16 12:08:54 +00:00
|
|
|
expression = parseExpression();
|
|
|
|
nodeFactory.setEndPositionFromNode(expression);
|
2014-10-09 13:57:49 +00:00
|
|
|
}
|
2014-10-16 12:08:54 +00:00
|
|
|
statement = nodeFactory.createNode<Return>(expression);
|
2015-01-21 10:16:18 +00:00
|
|
|
break;
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Identifier:
|
2015-01-21 10:16:18 +00:00
|
|
|
if (m_insideModifier && m_scanner->getCurrentLiteral() == "_")
|
|
|
|
{
|
|
|
|
statement = ASTNodeFactory(*this).createNode<PlaceholderStatement>();
|
|
|
|
m_scanner->next();
|
|
|
|
return statement;
|
|
|
|
}
|
|
|
|
// fall-through
|
2014-10-09 13:57:49 +00:00
|
|
|
default:
|
2015-02-20 14:52:30 +00:00
|
|
|
statement = parseSimpleStatement();
|
2014-10-09 13:57:49 +00:00
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Semicolon);
|
2014-10-09 13:57:49 +00:00
|
|
|
return statement;
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<IfStatement> Parser::parseIfStatement()
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::If);
|
|
|
|
expectToken(Token::LParen);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> condition = parseExpression();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Statement> trueBody = parseStatement();
|
|
|
|
ASTPointer<Statement> falseBody;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::Else)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-09 13:57:49 +00:00
|
|
|
m_scanner->next();
|
|
|
|
falseBody = parseStatement();
|
|
|
|
nodeFactory.setEndPositionFromNode(falseBody);
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else
|
2014-10-09 13:57:49 +00:00
|
|
|
nodeFactory.setEndPositionFromNode(trueBody);
|
|
|
|
return nodeFactory.createNode<IfStatement>(condition, trueBody, falseBody);
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<WhileStatement> Parser::parseWhileStatement()
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::While);
|
|
|
|
expectToken(Token::LParen);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> condition = parseExpression();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Statement> body = parseStatement();
|
2014-10-09 13:57:49 +00:00
|
|
|
nodeFactory.setEndPositionFromNode(body);
|
|
|
|
return nodeFactory.createNode<WhileStatement>(condition, body);
|
|
|
|
}
|
|
|
|
|
2014-12-15 16:45:18 +00:00
|
|
|
ASTPointer<ForStatement> Parser::parseForStatement()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2014-12-16 12:20:50 +00:00
|
|
|
ASTPointer<Statement> initExpression;
|
2014-12-16 08:51:51 +00:00
|
|
|
ASTPointer<Expression> conditionExpression;
|
|
|
|
ASTPointer<ExpressionStatement> loopExpression;
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::For);
|
|
|
|
expectToken(Token::LParen);
|
2014-12-16 08:51:51 +00:00
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
// LTODO: Maybe here have some predicate like peekExpression() instead of checking for semicolon and RParen?
|
|
|
|
if (m_scanner->getCurrentToken() != Token::Semicolon)
|
2015-02-20 14:52:30 +00:00
|
|
|
initExpression = parseSimpleStatement();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Semicolon);
|
2014-12-16 08:51:51 +00:00
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() != Token::Semicolon)
|
2014-12-16 08:51:51 +00:00
|
|
|
conditionExpression = parseExpression();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Semicolon);
|
2014-12-16 08:51:51 +00:00
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() != Token::RParen)
|
2014-12-16 08:51:51 +00:00
|
|
|
loopExpression = parseExpressionStatement();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2014-12-16 08:51:51 +00:00
|
|
|
|
2014-12-15 16:45:18 +00:00
|
|
|
ASTPointer<Statement> body = parseStatement();
|
|
|
|
nodeFactory.setEndPositionFromNode(body);
|
|
|
|
return nodeFactory.createNode<ForStatement>(initExpression,
|
|
|
|
conditionExpression,
|
|
|
|
loopExpression,
|
|
|
|
body);
|
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<Statement> Parser::parseSimpleStatement()
|
2014-12-15 16:45:18 +00:00
|
|
|
{
|
2015-02-20 14:52:30 +00:00
|
|
|
// These two cases are very hard to distinguish:
|
|
|
|
// x[7 * 20 + 3] a; - x[7 * 20 + 3] = 9;
|
|
|
|
// In the first case, x is a type name, in the second it is the name of a variable.
|
2015-02-23 13:38:44 +00:00
|
|
|
switch (peekStatementType())
|
|
|
|
{
|
|
|
|
case LookAheadInfo::VariableDeclarationStatement:
|
2015-02-17 15:21:38 +00:00
|
|
|
return parseVariableDeclarationStatement();
|
2015-02-23 13:38:44 +00:00
|
|
|
case LookAheadInfo::ExpressionStatement:
|
2014-12-15 16:45:18 +00:00
|
|
|
return parseExpressionStatement();
|
2015-02-23 13:55:06 +00:00
|
|
|
default:
|
|
|
|
break;
|
2015-02-23 13:38:44 +00:00
|
|
|
}
|
2015-02-20 14:52:30 +00:00
|
|
|
|
|
|
|
// At this point, we have '(Identifier|ElementaryTypeName) "["'.
|
|
|
|
// We parse '(Identifier|ElementaryTypeName) ( "[" Expression "]" )+' and then decide whether to hand this over
|
|
|
|
// to ExpressionStatement or create a VariableDeclarationStatement out of it.
|
|
|
|
ASTPointer<PrimaryExpression> primary;
|
|
|
|
if (m_scanner->getCurrentToken() == Token::Identifier)
|
|
|
|
primary = parseIdentifier();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
primary = ASTNodeFactory(*this).createNode<ElementaryTypeNameExpression>(m_scanner->getCurrentToken());
|
|
|
|
m_scanner->next();
|
|
|
|
}
|
2015-02-24 16:31:06 +00:00
|
|
|
vector<pair<ASTPointer<Expression>, SourceLocation>> indices;
|
2015-02-20 14:52:30 +00:00
|
|
|
solAssert(m_scanner->getCurrentToken() == Token::LBrack, "");
|
2015-02-24 16:31:06 +00:00
|
|
|
SourceLocation indexLocation = primary->getLocation();
|
2015-02-20 14:52:30 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
expectToken(Token::LBrack);
|
|
|
|
ASTPointer<Expression> index;
|
2015-02-21 17:25:08 +00:00
|
|
|
if (m_scanner->getCurrentToken() != Token::RBrack)
|
2015-02-20 14:52:30 +00:00
|
|
|
index = parseExpression();
|
|
|
|
indexLocation.end = getEndPosition();
|
|
|
|
indices.push_back(make_pair(index, indexLocation));
|
|
|
|
expectToken(Token::RBrack);
|
|
|
|
}
|
|
|
|
while (m_scanner->getCurrentToken() == Token::LBrack);
|
|
|
|
|
2015-06-05 09:07:50 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::Identifier || Token::isLocationSpecifier(m_scanner->getCurrentToken()))
|
2015-02-23 13:38:44 +00:00
|
|
|
return parseVariableDeclarationStatement(typeNameIndexAccessStructure(primary, indices));
|
2015-02-20 14:52:30 +00:00
|
|
|
else
|
2015-02-23 13:38:44 +00:00
|
|
|
return parseExpressionStatement(expressionFromIndexAccessStructure(primary, indices));
|
2014-12-15 16:45:18 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<VariableDeclarationStatement> Parser::parseVariableDeclarationStatement(
|
|
|
|
ASTPointer<TypeName> const& _lookAheadArrayType)
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2015-01-29 13:35:28 +00:00
|
|
|
VarDeclParserOptions options;
|
|
|
|
options.allowVar = true;
|
2015-02-17 15:21:38 +00:00
|
|
|
options.allowInitialValue = true;
|
2015-06-05 09:07:50 +00:00
|
|
|
options.allowLocationSpecifier = true;
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<VariableDeclaration> variable = parseVariableDeclaration(options, _lookAheadArrayType);
|
|
|
|
ASTNodeFactory nodeFactory(*this, variable);
|
2015-02-17 15:21:38 +00:00
|
|
|
return nodeFactory.createNode<VariableDeclarationStatement>(variable);
|
2014-10-09 13:57:49 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<ExpressionStatement> Parser::parseExpressionStatement(
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> const& _lookAheadIndexAccessStructure)
|
2014-10-30 00:20:32 +00:00
|
|
|
{
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> expression = parseExpression(_lookAheadIndexAccessStructure);
|
2015-02-20 14:52:30 +00:00
|
|
|
return ASTNodeFactory(*this, expression).createNode<ExpressionStatement>(expression);
|
2014-10-30 00:20:32 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<Expression> Parser::parseExpression(
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> const& _lookAheadIndexAccessStructure)
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> expression = parseBinaryExpression(4, _lookAheadIndexAccessStructure);
|
2014-10-16 12:08:54 +00:00
|
|
|
if (!Token::isAssignmentOp(m_scanner->getCurrentToken()))
|
2014-10-09 13:57:49 +00:00
|
|
|
return expression;
|
|
|
|
Token::Value assignmentOperator = expectAssignmentOperator();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> rightHandSide = parseExpression();
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this, expression);
|
2014-10-09 13:57:49 +00:00
|
|
|
nodeFactory.setEndPositionFromNode(rightHandSide);
|
|
|
|
return nodeFactory.createNode<Assignment>(expression, assignmentOperator, rightHandSide);
|
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<Expression> Parser::parseBinaryExpression(int _minPrecedence,
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> const& _lookAheadIndexAccessStructure)
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> expression = parseUnaryExpression(_lookAheadIndexAccessStructure);
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this, expression);
|
2014-10-16 12:08:54 +00:00
|
|
|
int precedence = Token::precedence(m_scanner->getCurrentToken());
|
|
|
|
for (; precedence >= _minPrecedence; --precedence)
|
|
|
|
while (Token::precedence(m_scanner->getCurrentToken()) == precedence)
|
|
|
|
{
|
2014-10-09 13:57:49 +00:00
|
|
|
Token::Value op = m_scanner->getCurrentToken();
|
|
|
|
m_scanner->next();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> right = parseBinaryExpression(precedence + 1);
|
2014-10-09 13:57:49 +00:00
|
|
|
nodeFactory.setEndPositionFromNode(right);
|
|
|
|
expression = nodeFactory.createNode<BinaryOperation>(expression, op, right);
|
|
|
|
}
|
|
|
|
return expression;
|
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<Expression> Parser::parseUnaryExpression(
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> const& _lookAheadIndexAccessStructure)
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTNodeFactory nodeFactory = _lookAheadIndexAccessStructure ?
|
|
|
|
ASTNodeFactory(*this, _lookAheadIndexAccessStructure) : ASTNodeFactory(*this);
|
2014-10-09 13:57:49 +00:00
|
|
|
Token::Value token = m_scanner->getCurrentToken();
|
2015-02-23 13:38:44 +00:00
|
|
|
if (!_lookAheadIndexAccessStructure && (Token::isUnaryOp(token) || Token::isCountOp(token)))
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-09 13:57:49 +00:00
|
|
|
// prefix expression
|
|
|
|
m_scanner->next();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> subExpression = parseUnaryExpression();
|
2014-10-09 13:57:49 +00:00
|
|
|
nodeFactory.setEndPositionFromNode(subExpression);
|
|
|
|
return nodeFactory.createNode<UnaryOperation>(token, subExpression, true);
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-09 13:57:49 +00:00
|
|
|
// potential postfix expression
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> subExpression = parseLeftHandSideExpression(_lookAheadIndexAccessStructure);
|
2014-10-09 13:57:49 +00:00
|
|
|
token = m_scanner->getCurrentToken();
|
2014-10-16 12:08:54 +00:00
|
|
|
if (!Token::isCountOp(token))
|
2014-10-09 13:57:49 +00:00
|
|
|
return subExpression;
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
m_scanner->next();
|
|
|
|
return nodeFactory.createNode<UnaryOperation>(token, subExpression, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTPointer<Expression> Parser::parseLeftHandSideExpression(
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> const& _lookAheadIndexAccessStructure)
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTNodeFactory nodeFactory = _lookAheadIndexAccessStructure ?
|
|
|
|
ASTNodeFactory(*this, _lookAheadIndexAccessStructure) : ASTNodeFactory(*this);
|
2015-02-20 14:52:30 +00:00
|
|
|
|
2015-01-13 17:12:19 +00:00
|
|
|
ASTPointer<Expression> expression;
|
2015-02-23 13:38:44 +00:00
|
|
|
if (_lookAheadIndexAccessStructure)
|
|
|
|
expression = _lookAheadIndexAccessStructure;
|
2015-02-20 14:52:30 +00:00
|
|
|
else if (m_scanner->getCurrentToken() == Token::New)
|
2015-01-13 17:12:19 +00:00
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::New);
|
2015-01-28 10:28:22 +00:00
|
|
|
ASTPointer<Identifier> contractName(parseIdentifier());
|
|
|
|
nodeFactory.setEndPositionFromNode(contractName);
|
2015-01-13 17:12:19 +00:00
|
|
|
expression = nodeFactory.createNode<NewExpression>(contractName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
expression = parsePrimaryExpression();
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
switch (m_scanner->getCurrentToken())
|
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::LBrack:
|
2014-10-20 12:00:37 +00:00
|
|
|
{
|
|
|
|
m_scanner->next();
|
2015-02-21 17:25:08 +00:00
|
|
|
ASTPointer<Expression> index;
|
|
|
|
if (m_scanner->getCurrentToken() != Token::RBrack)
|
|
|
|
index = parseExpression();
|
2014-10-20 12:00:37 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RBrack);
|
2014-10-20 12:00:37 +00:00
|
|
|
expression = nodeFactory.createNode<IndexAccess>(expression, index);
|
|
|
|
}
|
2014-10-16 12:08:54 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Period:
|
2014-10-20 12:00:37 +00:00
|
|
|
{
|
|
|
|
m_scanner->next();
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
expression = nodeFactory.createNode<MemberAccess>(expression, expectIdentifierToken());
|
|
|
|
}
|
2014-10-16 12:08:54 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::LParen:
|
2014-10-20 12:00:37 +00:00
|
|
|
{
|
|
|
|
m_scanner->next();
|
2015-01-29 17:26:00 +00:00
|
|
|
vector<ASTPointer<Expression>> arguments;
|
2015-02-03 20:25:08 +00:00
|
|
|
vector<ASTPointer<ASTString>> names;
|
|
|
|
std::tie(arguments, names) = parseFunctionCallArguments();
|
2014-10-20 12:00:37 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2015-01-29 17:26:00 +00:00
|
|
|
expression = nodeFactory.createNode<FunctionCall>(expression, arguments, names);
|
2014-10-20 12:00:37 +00:00
|
|
|
}
|
2014-10-16 12:08:54 +00:00
|
|
|
break;
|
2014-10-09 13:57:49 +00:00
|
|
|
default:
|
|
|
|
return expression;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> Parser::parsePrimaryExpression()
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2014-10-10 14:37:54 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this);
|
2014-10-09 13:57:49 +00:00
|
|
|
Token::Value token = m_scanner->getCurrentToken();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> expression;
|
2014-10-16 12:08:54 +00:00
|
|
|
switch (token)
|
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::TrueLiteral:
|
|
|
|
case Token::FalseLiteral:
|
2014-10-30 00:20:32 +00:00
|
|
|
expression = nodeFactory.createNode<Literal>(token, getLiteralAndAdvance());
|
2014-10-10 14:37:54 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Number:
|
2015-02-06 12:38:10 +00:00
|
|
|
if (Token::isEtherSubdenomination(m_scanner->peekNextToken()))
|
|
|
|
{
|
|
|
|
ASTPointer<ASTString> literal = getLiteralAndAdvance();
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
Literal::SubDenomination subdenomination = static_cast<Literal::SubDenomination>(m_scanner->getCurrentToken());
|
|
|
|
m_scanner->next();
|
|
|
|
expression = nodeFactory.createNode<Literal>(token, literal, subdenomination);
|
|
|
|
break;
|
|
|
|
}
|
2015-03-04 16:35:23 +00:00
|
|
|
if (Token::isTimeSubdenomination(m_scanner->peekNextToken()))
|
|
|
|
{
|
|
|
|
ASTPointer<ASTString> literal = getLiteralAndAdvance();
|
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
Literal::SubDenomination subdenomination = static_cast<Literal::SubDenomination>(m_scanner->getCurrentToken());
|
|
|
|
m_scanner->next();
|
|
|
|
expression = nodeFactory.createNode<Literal>(token, literal, subdenomination);
|
|
|
|
break;
|
|
|
|
}
|
2015-02-06 12:38:10 +00:00
|
|
|
// fall-through
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::StringLiteral:
|
2014-10-10 14:37:54 +00:00
|
|
|
nodeFactory.markEndPosition();
|
2015-02-06 12:38:10 +00:00
|
|
|
expression = nodeFactory.createNode<Literal>(token, getLiteralAndAdvance());
|
2014-10-10 14:37:54 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Identifier:
|
2014-10-10 14:37:54 +00:00
|
|
|
nodeFactory.markEndPosition();
|
|
|
|
expression = nodeFactory.createNode<Identifier>(getLiteralAndAdvance());
|
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::LParen:
|
2014-10-20 12:00:37 +00:00
|
|
|
{
|
|
|
|
m_scanner->next();
|
|
|
|
ASTPointer<Expression> expression = parseExpression();
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RParen);
|
2014-10-20 12:00:37 +00:00
|
|
|
return expression;
|
|
|
|
}
|
2014-10-09 13:57:49 +00:00
|
|
|
default:
|
2014-10-16 12:08:54 +00:00
|
|
|
if (Token::isElementaryTypeName(token))
|
|
|
|
{
|
2014-10-09 13:57:49 +00:00
|
|
|
// used for casts
|
2014-10-10 14:37:54 +00:00
|
|
|
expression = nodeFactory.createNode<ElementaryTypeNameExpression>(token);
|
2014-10-09 13:57:49 +00:00
|
|
|
m_scanner->next();
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected primary expression."));
|
2014-10-16 21:49:45 +00:00
|
|
|
break;
|
2014-10-09 10:28:37 +00:00
|
|
|
}
|
2014-10-10 14:37:54 +00:00
|
|
|
return expression;
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
2015-01-29 17:26:00 +00:00
|
|
|
vector<ASTPointer<Expression>> Parser::parseFunctionCallListArguments()
|
2014-10-09 13:57:49 +00:00
|
|
|
{
|
2014-12-03 06:47:08 +00:00
|
|
|
vector<ASTPointer<Expression>> arguments;
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() != Token::RParen)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-09 13:57:49 +00:00
|
|
|
arguments.push_back(parseExpression());
|
2015-02-09 13:00:12 +00:00
|
|
|
while (m_scanner->getCurrentToken() != Token::RParen)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Comma);
|
2014-10-09 13:57:49 +00:00
|
|
|
arguments.push_back(parseExpression());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return arguments;
|
|
|
|
}
|
|
|
|
|
2015-02-03 20:25:08 +00:00
|
|
|
pair<vector<ASTPointer<Expression>>, vector<ASTPointer<ASTString>>> Parser::parseFunctionCallArguments()
|
2015-01-29 17:26:00 +00:00
|
|
|
{
|
2015-02-03 20:25:08 +00:00
|
|
|
pair<vector<ASTPointer<Expression>>, vector<ASTPointer<ASTString>>> ret;
|
2015-01-29 17:26:00 +00:00
|
|
|
Token::Value token = m_scanner->getCurrentToken();
|
2015-02-09 13:00:12 +00:00
|
|
|
if (token == Token::LBrace)
|
2015-01-29 17:26:00 +00:00
|
|
|
{
|
|
|
|
// call({arg1 : 1, arg2 : 2 })
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::LBrace);
|
|
|
|
while (m_scanner->getCurrentToken() != Token::RBrace)
|
2015-01-29 17:26:00 +00:00
|
|
|
{
|
2015-02-03 20:45:16 +00:00
|
|
|
ret.second.push_back(expectIdentifierToken());
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::Colon);
|
2015-02-03 20:25:08 +00:00
|
|
|
ret.first.push_back(parseExpression());
|
2015-01-29 17:26:00 +00:00
|
|
|
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() == Token::Comma)
|
|
|
|
expectToken(Token::Comma);
|
2015-01-29 17:26:00 +00:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2015-02-09 13:00:12 +00:00
|
|
|
expectToken(Token::RBrace);
|
2015-01-29 17:26:00 +00:00
|
|
|
}
|
|
|
|
else
|
2015-02-03 20:25:08 +00:00
|
|
|
ret.first = parseFunctionCallListArguments();
|
|
|
|
return ret;
|
2015-01-29 17:26:00 +00:00
|
|
|
}
|
|
|
|
|
2015-02-23 13:38:44 +00:00
|
|
|
Parser::LookAheadInfo Parser::peekStatementType() const
|
2015-02-20 14:52:30 +00:00
|
|
|
{
|
|
|
|
// Distinguish between variable declaration (and potentially assignment) and expression statement
|
|
|
|
// (which include assignments to other expressions and pre-declared variables).
|
|
|
|
// We have a variable declaration if we get a keyword that specifies a type name.
|
|
|
|
// If it is an identifier or an elementary type name followed by an identifier, we also have
|
|
|
|
// a variable declaration.
|
|
|
|
// If we get an identifier followed by a "[", it can be both ("type[9] a;" or "arr[9] = 7;").
|
|
|
|
// In all other cases, we have an expression statement.
|
|
|
|
Token::Value token(m_scanner->getCurrentToken());
|
|
|
|
bool mightBeTypeName = (Token::isElementaryTypeName(token) || token == Token::Identifier);
|
2015-03-13 17:16:04 +00:00
|
|
|
|
2015-06-05 09:07:50 +00:00
|
|
|
if (token == Token::Mapping || token == Token::Var)
|
2015-02-23 13:38:44 +00:00
|
|
|
return LookAheadInfo::VariableDeclarationStatement;
|
2015-06-05 09:07:50 +00:00
|
|
|
if (mightBeTypeName)
|
|
|
|
{
|
|
|
|
Token::Value next = m_scanner->peekNextToken();
|
|
|
|
if (next == Token::Identifier || Token::isLocationSpecifier(next))
|
|
|
|
return LookAheadInfo::VariableDeclarationStatement;
|
|
|
|
if (m_scanner->peekNextToken() == Token::LBrack)
|
|
|
|
return LookAheadInfo::IndexAccessStructure;
|
|
|
|
}
|
2015-02-23 13:38:44 +00:00
|
|
|
return LookAheadInfo::ExpressionStatement;
|
2015-02-20 14:52:30 +00:00
|
|
|
}
|
2014-12-15 16:45:18 +00:00
|
|
|
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<TypeName> Parser::typeNameIndexAccessStructure(
|
2015-02-24 16:31:06 +00:00
|
|
|
ASTPointer<PrimaryExpression> const& _primary, vector<pair<ASTPointer<Expression>, SourceLocation>> const& _indices)
|
2014-12-15 16:45:18 +00:00
|
|
|
{
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this, _primary);
|
|
|
|
ASTPointer<TypeName> type;
|
|
|
|
if (auto identifier = dynamic_cast<Identifier const*>(_primary.get()))
|
|
|
|
type = nodeFactory.createNode<UserDefinedTypeName>(make_shared<ASTString>(identifier->getName()));
|
|
|
|
else if (auto typeName = dynamic_cast<ElementaryTypeNameExpression const*>(_primary.get()))
|
|
|
|
type = nodeFactory.createNode<ElementaryTypeName>(typeName->getTypeToken());
|
|
|
|
else
|
|
|
|
solAssert(false, "Invalid type name for array look-ahead.");
|
|
|
|
for (auto const& lengthExpression: _indices)
|
|
|
|
{
|
|
|
|
nodeFactory.setLocation(lengthExpression.second);
|
|
|
|
type = nodeFactory.createNode<ArrayTypeName>(type, lengthExpression.first);
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
2014-12-15 16:45:18 +00:00
|
|
|
|
2015-02-23 13:38:44 +00:00
|
|
|
ASTPointer<Expression> Parser::expressionFromIndexAccessStructure(
|
2015-02-24 16:31:06 +00:00
|
|
|
ASTPointer<PrimaryExpression> const& _primary, vector<pair<ASTPointer<Expression>, SourceLocation>> const& _indices)
|
2014-12-15 16:45:18 +00:00
|
|
|
{
|
2015-02-20 14:52:30 +00:00
|
|
|
ASTNodeFactory nodeFactory(*this, _primary);
|
|
|
|
ASTPointer<Expression> expression(_primary);
|
|
|
|
for (auto const& index: _indices)
|
|
|
|
{
|
|
|
|
nodeFactory.setLocation(index.second);
|
|
|
|
expression = nodeFactory.createNode<IndexAccess>(expression, index.first);
|
|
|
|
}
|
|
|
|
return expression;
|
2014-12-15 16:45:18 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 16:25:04 +00:00
|
|
|
void Parser::expectToken(Token::Value _value)
|
|
|
|
{
|
2014-10-09 10:28:37 +00:00
|
|
|
if (m_scanner->getCurrentToken() != _value)
|
2014-12-03 06:47:08 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError(string("Expected token ") + string(Token::getName(_value))));
|
2014-10-09 10:28:37 +00:00
|
|
|
m_scanner->next();
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
2014-10-09 13:57:49 +00:00
|
|
|
Token::Value Parser::expectAssignmentOperator()
|
|
|
|
{
|
|
|
|
Token::Value op = m_scanner->getCurrentToken();
|
2014-10-16 12:08:54 +00:00
|
|
|
if (!Token::isAssignmentOp(op))
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected assignment operator"));
|
2014-10-09 13:57:49 +00:00
|
|
|
m_scanner->next();
|
|
|
|
return op;
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ASTString> Parser::expectIdentifierToken()
|
2014-10-07 16:25:04 +00:00
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
if (m_scanner->getCurrentToken() != Token::Identifier)
|
2014-10-23 17:22:30 +00:00
|
|
|
BOOST_THROW_EXCEPTION(createParserError("Expected identifier"));
|
2014-10-10 14:37:54 +00:00
|
|
|
return getLiteralAndAdvance();
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ASTString> Parser::getLiteralAndAdvance()
|
2014-10-10 14:37:54 +00:00
|
|
|
{
|
2014-12-03 06:47:08 +00:00
|
|
|
ASTPointer<ASTString> identifier = make_shared<ASTString>(m_scanner->getCurrentLiteral());
|
2014-10-09 10:28:37 +00:00
|
|
|
m_scanner->next();
|
2014-10-10 14:37:54 +00:00
|
|
|
return identifier;
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 20:43:19 +00:00
|
|
|
ASTPointer<ParameterList> Parser::createEmptyParameterList()
|
|
|
|
{
|
|
|
|
ASTNodeFactory nodeFactory(*this);
|
|
|
|
nodeFactory.setLocationEmpty();
|
|
|
|
return nodeFactory.createNode<ParameterList>(vector<ASTPointer<VariableDeclaration>>());
|
|
|
|
}
|
|
|
|
|
2014-12-03 06:47:08 +00:00
|
|
|
ParserError Parser::createParserError(string const& _description) const
|
2014-10-07 16:25:04 +00:00
|
|
|
{
|
2015-02-23 16:14:59 +00:00
|
|
|
return ParserError() << errinfo_sourceLocation(SourceLocation(getPosition(), getPosition(), getSourceName()))
|
2014-12-03 17:52:28 +00:00
|
|
|
<< errinfo_comment(_description);
|
2014-10-07 16:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
}
|