mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Moving Source Location libdevcore
- Big plus is we now remove the useless header libsolibity/BaseTypes.h
This commit is contained in:
parent
38cb123a82
commit
1891020ffb
94
AST.h
94
AST.h
@ -27,9 +27,9 @@
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include <libdevcore/SourceLocation.h>
|
||||
#include <libsolidity/Utils.h>
|
||||
#include <libsolidity/ASTForward.h>
|
||||
#include <libsolidity/BaseTypes.h>
|
||||
#include <libsolidity/Token.h>
|
||||
#include <libsolidity/Types.h>
|
||||
#include <libsolidity/Exceptions.h>
|
||||
@ -51,7 +51,7 @@ class ASTConstVisitor;
|
||||
class ASTNode: private boost::noncopyable
|
||||
{
|
||||
public:
|
||||
explicit ASTNode(Location const& _location): m_location(_location) {}
|
||||
explicit ASTNode(SourceLocation const& _location): m_location(_location) {}
|
||||
|
||||
virtual ~ASTNode() {}
|
||||
|
||||
@ -71,7 +71,7 @@ public:
|
||||
}
|
||||
|
||||
/// Returns the source code location of this node.
|
||||
Location const& getLocation() const { return m_location; }
|
||||
SourceLocation const& getLocation() const { return m_location; }
|
||||
|
||||
/// Creates a @ref TypeError exception and decorates it with the location of the node and
|
||||
/// the given description
|
||||
@ -85,7 +85,7 @@ public:
|
||||
///@}
|
||||
|
||||
private:
|
||||
Location m_location;
|
||||
SourceLocation m_location;
|
||||
};
|
||||
|
||||
/**
|
||||
@ -94,7 +94,7 @@ private:
|
||||
class SourceUnit: public ASTNode
|
||||
{
|
||||
public:
|
||||
SourceUnit(Location const& _location, std::vector<ASTPointer<ASTNode>> const& _nodes):
|
||||
SourceUnit(SourceLocation const& _location, std::vector<ASTPointer<ASTNode>> const& _nodes):
|
||||
ASTNode(_location), m_nodes(_nodes) {}
|
||||
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -114,7 +114,7 @@ private:
|
||||
class ImportDirective: public ASTNode
|
||||
{
|
||||
public:
|
||||
ImportDirective(Location const& _location, ASTPointer<ASTString> const& _identifier):
|
||||
ImportDirective(SourceLocation const& _location, ASTPointer<ASTString> const& _identifier):
|
||||
ASTNode(_location), m_identifier(_identifier) {}
|
||||
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -135,7 +135,7 @@ public:
|
||||
/// Visibility ordered from restricted to unrestricted.
|
||||
enum class Visibility { Default, Private, Internal, Public, External };
|
||||
|
||||
Declaration(Location const& _location, ASTPointer<ASTString> const& _name,
|
||||
Declaration(SourceLocation const& _location, ASTPointer<ASTString> const& _name,
|
||||
Visibility _visibility = Visibility::Default):
|
||||
ASTNode(_location), m_name(_name), m_visibility(_visibility), m_scope(nullptr) {}
|
||||
|
||||
@ -205,7 +205,7 @@ protected:
|
||||
class ContractDefinition: public Declaration, public Documented
|
||||
{
|
||||
public:
|
||||
ContractDefinition(Location const& _location,
|
||||
ContractDefinition(SourceLocation const& _location,
|
||||
ASTPointer<ASTString> const& _name,
|
||||
ASTPointer<ASTString> const& _documentation,
|
||||
std::vector<ASTPointer<InheritanceSpecifier>> const& _baseContracts,
|
||||
@ -278,7 +278,7 @@ private:
|
||||
class InheritanceSpecifier: public ASTNode
|
||||
{
|
||||
public:
|
||||
InheritanceSpecifier(Location const& _location, ASTPointer<Identifier> const& _baseName,
|
||||
InheritanceSpecifier(SourceLocation const& _location, ASTPointer<Identifier> const& _baseName,
|
||||
std::vector<ASTPointer<Expression>> _arguments):
|
||||
ASTNode(_location), m_baseName(_baseName), m_arguments(_arguments) {}
|
||||
|
||||
@ -298,7 +298,7 @@ private:
|
||||
class StructDefinition: public Declaration
|
||||
{
|
||||
public:
|
||||
StructDefinition(Location const& _location,
|
||||
StructDefinition(SourceLocation const& _location,
|
||||
ASTPointer<ASTString> const& _name,
|
||||
std::vector<ASTPointer<VariableDeclaration>> const& _members):
|
||||
Declaration(_location, _name), m_members(_members) {}
|
||||
@ -323,7 +323,7 @@ private:
|
||||
class EnumDefinition: public Declaration
|
||||
{
|
||||
public:
|
||||
EnumDefinition(Location const& _location,
|
||||
EnumDefinition(SourceLocation const& _location,
|
||||
ASTPointer<ASTString> const& _name,
|
||||
std::vector<ASTPointer<EnumValue>> const& _members):
|
||||
Declaration(_location, _name), m_members(_members) {}
|
||||
@ -344,7 +344,7 @@ private:
|
||||
class EnumValue: public Declaration
|
||||
{
|
||||
public:
|
||||
EnumValue(Location const& _location,
|
||||
EnumValue(SourceLocation const& _location,
|
||||
ASTPointer<ASTString> const& _name):
|
||||
Declaration(_location, _name) {}
|
||||
|
||||
@ -361,7 +361,7 @@ class EnumValue: public Declaration
|
||||
class ParameterList: public ASTNode
|
||||
{
|
||||
public:
|
||||
ParameterList(Location const& _location,
|
||||
ParameterList(SourceLocation const& _location,
|
||||
std::vector<ASTPointer<VariableDeclaration>> const& _parameters):
|
||||
ASTNode(_location), m_parameters(_parameters) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -376,7 +376,7 @@ private:
|
||||
class FunctionDefinition: public Declaration, public VariableScope, public Documented
|
||||
{
|
||||
public:
|
||||
FunctionDefinition(Location const& _location, ASTPointer<ASTString> const& _name,
|
||||
FunctionDefinition(SourceLocation const& _location, ASTPointer<ASTString> const& _name,
|
||||
Declaration::Visibility _visibility, bool _isConstructor,
|
||||
ASTPointer<ASTString> const& _documentation,
|
||||
ASTPointer<ParameterList> const& _parameters,
|
||||
@ -431,7 +431,7 @@ private:
|
||||
class VariableDeclaration: public Declaration
|
||||
{
|
||||
public:
|
||||
VariableDeclaration(Location const& _location, ASTPointer<TypeName> const& _type,
|
||||
VariableDeclaration(SourceLocation const& _location, ASTPointer<TypeName> const& _type,
|
||||
ASTPointer<ASTString> const& _name, ASTPointer<Expression> _value,
|
||||
Visibility _visibility,
|
||||
bool _isStateVar = false, bool _isIndexed = false):
|
||||
@ -476,7 +476,7 @@ private:
|
||||
class ModifierDefinition: public Declaration, public VariableScope, public Documented
|
||||
{
|
||||
public:
|
||||
ModifierDefinition(Location const& _location,
|
||||
ModifierDefinition(SourceLocation const& _location,
|
||||
ASTPointer<ASTString> const& _name,
|
||||
ASTPointer<ASTString> const& _documentation,
|
||||
ASTPointer<ParameterList> const& _parameters,
|
||||
@ -506,7 +506,7 @@ private:
|
||||
class ModifierInvocation: public ASTNode
|
||||
{
|
||||
public:
|
||||
ModifierInvocation(Location const& _location, ASTPointer<Identifier> const& _name,
|
||||
ModifierInvocation(SourceLocation const& _location, ASTPointer<Identifier> const& _name,
|
||||
std::vector<ASTPointer<Expression>> _arguments):
|
||||
ASTNode(_location), m_modifierName(_name), m_arguments(_arguments) {}
|
||||
|
||||
@ -529,7 +529,7 @@ private:
|
||||
class EventDefinition: public Declaration, public VariableScope, public Documented
|
||||
{
|
||||
public:
|
||||
EventDefinition(Location const& _location,
|
||||
EventDefinition(SourceLocation const& _location,
|
||||
ASTPointer<ASTString> const& _name,
|
||||
ASTPointer<ASTString> const& _documentation,
|
||||
ASTPointer<ParameterList> const& _parameters):
|
||||
@ -560,7 +560,7 @@ class MagicVariableDeclaration: public Declaration
|
||||
{
|
||||
public:
|
||||
MagicVariableDeclaration(ASTString const& _name, std::shared_ptr<Type const> const& _type):
|
||||
Declaration(Location(), std::make_shared<ASTString>(_name)), m_type(_type) {}
|
||||
Declaration(SourceLocation(), std::make_shared<ASTString>(_name)), m_type(_type) {}
|
||||
virtual void accept(ASTVisitor&) override { BOOST_THROW_EXCEPTION(InternalCompilerError()
|
||||
<< errinfo_comment("MagicVariableDeclaration used inside real AST.")); }
|
||||
virtual void accept(ASTConstVisitor&) const override { BOOST_THROW_EXCEPTION(InternalCompilerError()
|
||||
@ -581,7 +581,7 @@ private:
|
||||
class TypeName: public ASTNode
|
||||
{
|
||||
public:
|
||||
explicit TypeName(Location const& _location): ASTNode(_location) {}
|
||||
explicit TypeName(SourceLocation const& _location): ASTNode(_location) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
|
||||
@ -598,7 +598,7 @@ public:
|
||||
class ElementaryTypeName: public TypeName
|
||||
{
|
||||
public:
|
||||
explicit ElementaryTypeName(Location const& _location, Token::Value _type):
|
||||
explicit ElementaryTypeName(SourceLocation const& _location, Token::Value _type):
|
||||
TypeName(_location), m_type(_type)
|
||||
{
|
||||
solAssert(Token::isElementaryTypeName(_type), "");
|
||||
@ -619,7 +619,7 @@ private:
|
||||
class UserDefinedTypeName: public TypeName
|
||||
{
|
||||
public:
|
||||
UserDefinedTypeName(Location const& _location, ASTPointer<ASTString> const& _name):
|
||||
UserDefinedTypeName(SourceLocation const& _location, ASTPointer<ASTString> const& _name):
|
||||
TypeName(_location), m_name(_name), m_referencedDeclaration(nullptr) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -641,7 +641,7 @@ private:
|
||||
class Mapping: public TypeName
|
||||
{
|
||||
public:
|
||||
Mapping(Location const& _location, ASTPointer<ElementaryTypeName> const& _keyType,
|
||||
Mapping(SourceLocation const& _location, ASTPointer<ElementaryTypeName> const& _keyType,
|
||||
ASTPointer<TypeName> const& _valueType):
|
||||
TypeName(_location), m_keyType(_keyType), m_valueType(_valueType) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -689,7 +689,7 @@ private:
|
||||
class Statement: public ASTNode
|
||||
{
|
||||
public:
|
||||
explicit Statement(Location const& _location): ASTNode(_location) {}
|
||||
explicit Statement(SourceLocation const& _location): ASTNode(_location) {}
|
||||
|
||||
/// Check all type requirements, throws exception if some requirement is not met.
|
||||
/// This includes checking that operators are applicable to their arguments but also that
|
||||
@ -703,7 +703,7 @@ public:
|
||||
class Block: public Statement
|
||||
{
|
||||
public:
|
||||
Block(Location const& _location, std::vector<ASTPointer<Statement>> const& _statements):
|
||||
Block(SourceLocation const& _location, std::vector<ASTPointer<Statement>> const& _statements):
|
||||
Statement(_location), m_statements(_statements) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -721,7 +721,7 @@ private:
|
||||
class PlaceholderStatement: public Statement
|
||||
{
|
||||
public:
|
||||
PlaceholderStatement(Location const& _location): Statement(_location) {}
|
||||
PlaceholderStatement(SourceLocation const& _location): Statement(_location) {}
|
||||
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -736,7 +736,7 @@ public:
|
||||
class IfStatement: public Statement
|
||||
{
|
||||
public:
|
||||
IfStatement(Location const& _location, ASTPointer<Expression> const& _condition,
|
||||
IfStatement(SourceLocation const& _location, ASTPointer<Expression> const& _condition,
|
||||
ASTPointer<Statement> const& _trueBody, ASTPointer<Statement> const& _falseBody):
|
||||
Statement(_location),
|
||||
m_condition(_condition), m_trueBody(_trueBody), m_falseBody(_falseBody) {}
|
||||
@ -761,13 +761,13 @@ private:
|
||||
class BreakableStatement: public Statement
|
||||
{
|
||||
public:
|
||||
BreakableStatement(Location const& _location): Statement(_location) {}
|
||||
BreakableStatement(SourceLocation const& _location): Statement(_location) {}
|
||||
};
|
||||
|
||||
class WhileStatement: public BreakableStatement
|
||||
{
|
||||
public:
|
||||
WhileStatement(Location const& _location, ASTPointer<Expression> const& _condition,
|
||||
WhileStatement(SourceLocation const& _location, ASTPointer<Expression> const& _condition,
|
||||
ASTPointer<Statement> const& _body):
|
||||
BreakableStatement(_location), m_condition(_condition), m_body(_body) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -788,7 +788,7 @@ private:
|
||||
class ForStatement: public BreakableStatement
|
||||
{
|
||||
public:
|
||||
ForStatement(Location const& _location,
|
||||
ForStatement(SourceLocation const& _location,
|
||||
ASTPointer<Statement> const& _initExpression,
|
||||
ASTPointer<Expression> const& _conditionExpression,
|
||||
ASTPointer<ExpressionStatement> const& _loopExpression,
|
||||
@ -821,7 +821,7 @@ private:
|
||||
class Continue: public Statement
|
||||
{
|
||||
public:
|
||||
Continue(Location const& _location): Statement(_location) {}
|
||||
Continue(SourceLocation const& _location): Statement(_location) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
virtual void checkTypeRequirements() override {}
|
||||
@ -830,7 +830,7 @@ public:
|
||||
class Break: public Statement
|
||||
{
|
||||
public:
|
||||
Break(Location const& _location): Statement(_location) {}
|
||||
Break(SourceLocation const& _location): Statement(_location) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
virtual void checkTypeRequirements() override {}
|
||||
@ -839,7 +839,7 @@ public:
|
||||
class Return: public Statement
|
||||
{
|
||||
public:
|
||||
Return(Location const& _location, ASTPointer<Expression> _expression):
|
||||
Return(SourceLocation const& _location, ASTPointer<Expression> _expression):
|
||||
Statement(_location), m_expression(_expression), m_returnParameters(nullptr) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -864,7 +864,7 @@ private:
|
||||
class VariableDeclarationStatement: public Statement
|
||||
{
|
||||
public:
|
||||
VariableDeclarationStatement(Location const& _location, ASTPointer<VariableDeclaration> _variable):
|
||||
VariableDeclarationStatement(SourceLocation const& _location, ASTPointer<VariableDeclaration> _variable):
|
||||
Statement(_location), m_variable(_variable) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -883,7 +883,7 @@ private:
|
||||
class ExpressionStatement: public Statement
|
||||
{
|
||||
public:
|
||||
ExpressionStatement(Location const& _location, ASTPointer<Expression> _expression):
|
||||
ExpressionStatement(SourceLocation const& _location, ASTPointer<Expression> _expression):
|
||||
Statement(_location), m_expression(_expression) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -908,7 +908,7 @@ private:
|
||||
class Expression: public ASTNode
|
||||
{
|
||||
public:
|
||||
Expression(Location const& _location): ASTNode(_location) {}
|
||||
Expression(SourceLocation const& _location): ASTNode(_location) {}
|
||||
virtual void checkTypeRequirements() = 0;
|
||||
|
||||
std::shared_ptr<Type const> const& getType() const { return m_type; }
|
||||
@ -939,7 +939,7 @@ protected:
|
||||
class Assignment: public Expression
|
||||
{
|
||||
public:
|
||||
Assignment(Location const& _location, ASTPointer<Expression> const& _leftHandSide,
|
||||
Assignment(SourceLocation const& _location, ASTPointer<Expression> const& _leftHandSide,
|
||||
Token::Value _assignmentOperator, ASTPointer<Expression> const& _rightHandSide):
|
||||
Expression(_location), m_leftHandSide(_leftHandSide),
|
||||
m_assigmentOperator(_assignmentOperator), m_rightHandSide(_rightHandSide)
|
||||
@ -967,7 +967,7 @@ private:
|
||||
class UnaryOperation: public Expression
|
||||
{
|
||||
public:
|
||||
UnaryOperation(Location const& _location, Token::Value _operator,
|
||||
UnaryOperation(SourceLocation const& _location, Token::Value _operator,
|
||||
ASTPointer<Expression> const& _subExpression, bool _isPrefix):
|
||||
Expression(_location), m_operator(_operator),
|
||||
m_subExpression(_subExpression), m_isPrefix(_isPrefix)
|
||||
@ -995,7 +995,7 @@ private:
|
||||
class BinaryOperation: public Expression
|
||||
{
|
||||
public:
|
||||
BinaryOperation(Location const& _location, ASTPointer<Expression> const& _left,
|
||||
BinaryOperation(SourceLocation const& _location, ASTPointer<Expression> const& _left,
|
||||
Token::Value _operator, ASTPointer<Expression> const& _right):
|
||||
Expression(_location), m_left(_left), m_operator(_operator), m_right(_right)
|
||||
{
|
||||
@ -1026,7 +1026,7 @@ private:
|
||||
class FunctionCall: public Expression
|
||||
{
|
||||
public:
|
||||
FunctionCall(Location const& _location, ASTPointer<Expression> const& _expression,
|
||||
FunctionCall(SourceLocation const& _location, ASTPointer<Expression> const& _expression,
|
||||
std::vector<ASTPointer<Expression>> const& _arguments, std::vector<ASTPointer<ASTString>> const& _names):
|
||||
Expression(_location), m_expression(_expression), m_arguments(_arguments), m_names(_names) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -1053,7 +1053,7 @@ private:
|
||||
class NewExpression: public Expression
|
||||
{
|
||||
public:
|
||||
NewExpression(Location const& _location, ASTPointer<Identifier> const& _contractName):
|
||||
NewExpression(SourceLocation const& _location, ASTPointer<Identifier> const& _contractName):
|
||||
Expression(_location), m_contractName(_contractName) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -1074,7 +1074,7 @@ private:
|
||||
class MemberAccess: public Expression
|
||||
{
|
||||
public:
|
||||
MemberAccess(Location const& _location, ASTPointer<Expression> _expression,
|
||||
MemberAccess(SourceLocation const& _location, ASTPointer<Expression> _expression,
|
||||
ASTPointer<ASTString> const& _memberName):
|
||||
Expression(_location), m_expression(_expression), m_memberName(_memberName) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -1094,7 +1094,7 @@ private:
|
||||
class IndexAccess: public Expression
|
||||
{
|
||||
public:
|
||||
IndexAccess(Location const& _location, ASTPointer<Expression> const& _base,
|
||||
IndexAccess(SourceLocation const& _location, ASTPointer<Expression> const& _base,
|
||||
ASTPointer<Expression> const& _index):
|
||||
Expression(_location), m_base(_base), m_index(_index) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
@ -1116,7 +1116,7 @@ private:
|
||||
class PrimaryExpression: public Expression
|
||||
{
|
||||
public:
|
||||
PrimaryExpression(Location const& _location): Expression(_location) {}
|
||||
PrimaryExpression(SourceLocation const& _location): Expression(_location) {}
|
||||
};
|
||||
|
||||
/**
|
||||
@ -1125,7 +1125,7 @@ public:
|
||||
class Identifier: public PrimaryExpression
|
||||
{
|
||||
public:
|
||||
Identifier(Location const& _location, ASTPointer<ASTString> const& _name):
|
||||
Identifier(SourceLocation const& _location, ASTPointer<ASTString> const& _name):
|
||||
PrimaryExpression(_location), m_name(_name) {}
|
||||
virtual void accept(ASTVisitor& _visitor) override;
|
||||
virtual void accept(ASTConstVisitor& _visitor) const override;
|
||||
@ -1160,7 +1160,7 @@ private:
|
||||
class ElementaryTypeNameExpression: public PrimaryExpression
|
||||
{
|
||||
public:
|
||||
ElementaryTypeNameExpression(Location const& _location, Token::Value _typeToken):
|
||||
ElementaryTypeNameExpression(SourceLocation const& _location, Token::Value _typeToken):
|
||||
PrimaryExpression(_location), m_typeToken(_typeToken)
|
||||
{
|
||||
solAssert(Token::isElementaryTypeName(_typeToken), "");
|
||||
@ -1189,7 +1189,7 @@ public:
|
||||
Finney = Token::SubFinney,
|
||||
Ether = Token::SubEther
|
||||
};
|
||||
Literal(Location const& _location, Token::Value _token,
|
||||
Literal(SourceLocation const& _location, Token::Value _token,
|
||||
ASTPointer<ASTString> const& _value,
|
||||
SubDenomination _sub = SubDenomination::None):
|
||||
PrimaryExpression(_location), m_token(_token), m_value(_value), m_subDenomination(_sub) {}
|
||||
|
@ -555,7 +555,7 @@ void ASTPrinter::printSourcePart(ASTNode const& _node)
|
||||
{
|
||||
if (!m_source.empty())
|
||||
{
|
||||
Location const& location(_node.getLocation());
|
||||
SourceLocation const& location(_node.getLocation());
|
||||
*m_ostream << getIndentation() << " Source: "
|
||||
<< escaped(m_source.substr(location.start, location.end - location.start), false) << endl;
|
||||
}
|
||||
|
60
BaseTypes.h
60
BaseTypes.h
@ -1,60 +0,0 @@
|
||||
/*
|
||||
This file is part of cpp-ethereum.
|
||||
|
||||
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.
|
||||
|
||||
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.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/**
|
||||
* @author Christian <c@ethdev.com>
|
||||
* @date 2014
|
||||
* Some elementary types for the parser.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <ostream>
|
||||
|
||||
namespace dev
|
||||
{
|
||||
namespace solidity
|
||||
{
|
||||
|
||||
/**
|
||||
* Representation of an interval of source positions.
|
||||
* The interval includes start and excludes end.
|
||||
*/
|
||||
struct Location
|
||||
{
|
||||
Location(int _start, int _end, std::shared_ptr<std::string const> _sourceName):
|
||||
start(_start), end(_end), sourceName(_sourceName) { }
|
||||
Location(): start(-1), end(-1) { }
|
||||
|
||||
bool isEmpty() const { return start == -1 && end == -1; }
|
||||
|
||||
int start;
|
||||
int end;
|
||||
std::shared_ptr<std::string const> sourceName;
|
||||
};
|
||||
|
||||
/// Stream output for Location (used e.g. in boost exceptions).
|
||||
inline std::ostream& operator<<(std::ostream& _out, Location const& _location)
|
||||
{
|
||||
if (_location.isEmpty())
|
||||
return _out << "NO_LOCATION_SPECIFIED";
|
||||
return _out << *_location.sourceName << "[" << _location.start << "," << _location.end << ")";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -24,7 +24,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <libdevcore/Exceptions.h>
|
||||
#include <libsolidity/BaseTypes.h>
|
||||
#include <libdevcore/SourceLocation.h>
|
||||
|
||||
namespace dev
|
||||
{
|
||||
@ -38,7 +38,7 @@ struct CompilerError: virtual Exception {};
|
||||
struct InternalCompilerError: virtual Exception {};
|
||||
struct DocstringParsingError: virtual Exception {};
|
||||
|
||||
using errinfo_sourceLocation = boost::error_info<struct tag_sourceLocation, Location>;
|
||||
using errinfo_sourceLocation = boost::error_info<struct tag_sourceLocation, SourceLocation>;
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1035,7 +1035,7 @@ void ExpressionCompiler::appendStateVariableAccessor(VariableDeclaration const&
|
||||
<< structType->getStorageOffsetOfMember(names[i])
|
||||
<< eth::Instruction::ADD;
|
||||
m_currentLValue = LValue(m_context, LValue::LValueType::Storage, types[i]);
|
||||
m_currentLValue.retrieveValue(Location(), true);
|
||||
m_currentLValue.retrieveValue(SourceLocation(), true);
|
||||
solAssert(types[i]->getSizeOnStack() == 1, "Returning struct elements with stack size != 1 not yet implemented.");
|
||||
m_context << eth::Instruction::SWAP1;
|
||||
retSizeOnStack += types[i]->getSizeOnStack();
|
||||
@ -1047,7 +1047,7 @@ void ExpressionCompiler::appendStateVariableAccessor(VariableDeclaration const&
|
||||
// simple value
|
||||
solAssert(accessorType.getReturnParameterTypes().size() == 1, "");
|
||||
m_currentLValue = LValue(m_context, LValue::LValueType::Storage, returnType);
|
||||
m_currentLValue.retrieveValue(Location(), true);
|
||||
m_currentLValue.retrieveValue(SourceLocation(), true);
|
||||
retSizeOnStack = returnType->getSizeOnStack();
|
||||
}
|
||||
solAssert(retSizeOnStack <= 15, "Stack too deep.");
|
||||
@ -1068,7 +1068,7 @@ ExpressionCompiler::LValue::LValue(CompilerContext& _compilerContext, LValueType
|
||||
m_size = unsigned(m_dataType->getSizeOnStack());
|
||||
}
|
||||
|
||||
void ExpressionCompiler::LValue::fromDeclaration(Declaration const& _declaration, Location const& _location)
|
||||
void ExpressionCompiler::LValue::fromDeclaration(Declaration const& _declaration, SourceLocation const& _location)
|
||||
{
|
||||
if (m_context->isLocalVariable(&_declaration))
|
||||
{
|
||||
@ -1091,7 +1091,7 @@ void ExpressionCompiler::LValue::fromDeclaration(Declaration const& _declaration
|
||||
<< errinfo_comment("Identifier type not supported or identifier not found."));
|
||||
}
|
||||
|
||||
void ExpressionCompiler::LValue::retrieveValue(Location const& _location, bool _remove) const
|
||||
void ExpressionCompiler::LValue::retrieveValue(SourceLocation const& _location, bool _remove) const
|
||||
{
|
||||
switch (m_type)
|
||||
{
|
||||
@ -1140,7 +1140,7 @@ void ExpressionCompiler::LValue::retrieveValueFromStorage(bool _remove) const
|
||||
}
|
||||
}
|
||||
|
||||
void ExpressionCompiler::LValue::storeValue(Type const& _sourceType, Location const& _location, bool _move) const
|
||||
void ExpressionCompiler::LValue::storeValue(Type const& _sourceType, SourceLocation const& _location, bool _move) const
|
||||
{
|
||||
switch (m_type)
|
||||
{
|
||||
@ -1243,7 +1243,7 @@ void ExpressionCompiler::LValue::storeValue(Type const& _sourceType, Location co
|
||||
}
|
||||
}
|
||||
|
||||
void ExpressionCompiler::LValue::setToZero(Location const& _location) const
|
||||
void ExpressionCompiler::LValue::setToZero(SourceLocation const& _location) const
|
||||
{
|
||||
switch (m_type)
|
||||
{
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include <memory>
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include <libdevcore/Common.h>
|
||||
#include <libsolidity/BaseTypes.h>
|
||||
#include <libdevcore/SourceLocation.h>
|
||||
#include <libsolidity/ASTVisitor.h>
|
||||
|
||||
namespace dev {
|
||||
@ -133,7 +133,7 @@ private:
|
||||
|
||||
/// Set type according to the declaration and retrieve the reference.
|
||||
/// @a _location is the current location
|
||||
void fromDeclaration(Declaration const& _declaration, Location const& _location);
|
||||
void fromDeclaration(Declaration const& _declaration, SourceLocation const& _location);
|
||||
|
||||
void reset() { m_type = LValueType::None; m_dataType.reset(); m_baseStackOffset = 0; m_size = 0; }
|
||||
|
||||
@ -148,15 +148,15 @@ private:
|
||||
/// Copies the value of the current lvalue to the top of the stack and, if @a _remove is true,
|
||||
/// also removes the reference from the stack (note that is does not reset the type to @a NONE).
|
||||
/// @a _location source location of the current expression, used for error reporting.
|
||||
void retrieveValue(Location const& _location, bool _remove = false) const;
|
||||
void retrieveValue(SourceLocation const& _location, bool _remove = false) const;
|
||||
/// Moves a value from the stack to the lvalue. Removes the value if @a _move is true.
|
||||
/// @a _location is the source location of the expression that caused this operation.
|
||||
/// Stack pre: value [lvalue_ref]
|
||||
/// Stack post if !_move: value_of(lvalue_ref)
|
||||
void storeValue(Type const& _sourceType, Location const& _location = Location(), bool _move = false) const;
|
||||
void storeValue(Type const& _sourceType, SourceLocation const& _location = SourceLocation(), bool _move = false) const;
|
||||
/// Stores zero in the lvalue.
|
||||
/// @a _location is the source location of the requested operation
|
||||
void setToZero(Location const& _location = Location()) const;
|
||||
void setToZero(SourceLocation const& _location = SourceLocation()) const;
|
||||
/// Convenience function to convert the stored reference to a value and reset type to NONE if
|
||||
/// the reference was not requested by @a _expression.
|
||||
void retrieveValueIfLValueNotRequested(Expression const& _expression);
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
#include <vector>
|
||||
#include <libdevcore/Log.h>
|
||||
#include <libsolidity/BaseTypes.h>
|
||||
#include <libdevcore/SourceLocation.h>
|
||||
#include <libsolidity/Parser.h>
|
||||
#include <libsolidity/Scanner.h>
|
||||
#include <libsolidity/Exceptions.h>
|
||||
@ -60,7 +60,7 @@ public:
|
||||
|
||||
private:
|
||||
Parser const& m_parser;
|
||||
Location m_location;
|
||||
SourceLocation m_location;
|
||||
};
|
||||
|
||||
ASTPointer<SourceUnit> Parser::parse(shared_ptr<Scanner> const& _scanner)
|
||||
@ -983,7 +983,7 @@ ASTPointer<ParameterList> Parser::createEmptyParameterList()
|
||||
|
||||
ParserError Parser::createParserError(string const& _description) const
|
||||
{
|
||||
return ParserError() << errinfo_sourceLocation(Location(getPosition(), getPosition(), getSourceName()))
|
||||
return ParserError() << errinfo_sourceLocation(SourceLocation(getPosition(), getPosition(), getSourceName()))
|
||||
<< errinfo_comment(_description);
|
||||
}
|
||||
|
||||
|
10
Scanner.h
10
Scanner.h
@ -55,7 +55,7 @@
|
||||
#include <libdevcore/Common.h>
|
||||
#include <libdevcore/Log.h>
|
||||
#include <libdevcore/CommonData.h>
|
||||
#include <libsolidity/BaseTypes.h>
|
||||
#include <libdevcore/SourceLocation.h>
|
||||
#include <libsolidity/Token.h>
|
||||
|
||||
namespace dev
|
||||
@ -120,14 +120,14 @@ public:
|
||||
return m_currentToken.token;
|
||||
}
|
||||
|
||||
Location getCurrentLocation() const { return m_currentToken.location; }
|
||||
SourceLocation getCurrentLocation() const { return m_currentToken.location; }
|
||||
std::string const& getCurrentLiteral() const { return m_currentToken.literal; }
|
||||
///@}
|
||||
|
||||
///@{
|
||||
///@name Information about the current comment token
|
||||
|
||||
Location getCurrentCommentLocation() const { return m_skippedComment.location; }
|
||||
SourceLocation getCurrentCommentLocation() const { return m_skippedComment.location; }
|
||||
std::string const& getCurrentCommentLiteral() const { return m_skippedComment.literal; }
|
||||
/// Called by the parser during FunctionDefinition parsing to clear the current comment
|
||||
void clearCurrentCommentLiteral() { m_skippedComment.literal.clear(); }
|
||||
@ -139,7 +139,7 @@ public:
|
||||
|
||||
/// Returns the next token without advancing input.
|
||||
Token::Value peekNextToken() const { return m_nextToken.token; }
|
||||
Location peekLocation() const { return m_nextToken.location; }
|
||||
SourceLocation peekLocation() const { return m_nextToken.location; }
|
||||
std::string const& peekLiteral() const { return m_nextToken.literal; }
|
||||
///@}
|
||||
|
||||
@ -158,7 +158,7 @@ private:
|
||||
struct TokenDesc
|
||||
{
|
||||
Token::Value token;
|
||||
Location location;
|
||||
SourceLocation location;
|
||||
std::string literal;
|
||||
};
|
||||
|
||||
|
@ -33,7 +33,7 @@ namespace solidity
|
||||
{
|
||||
|
||||
void SourceReferenceFormatter::printSourceLocation(ostream& _stream,
|
||||
Location const& _location,
|
||||
SourceLocation const& _location,
|
||||
Scanner const& _scanner)
|
||||
{
|
||||
int startLine;
|
||||
@ -63,7 +63,7 @@ void SourceReferenceFormatter::printExceptionInformation(ostream& _stream,
|
||||
string const& _name,
|
||||
CompilerStack const& _compiler)
|
||||
{
|
||||
Location const* location = boost::get_error_info<errinfo_sourceLocation>(_exception);
|
||||
SourceLocation const* location = boost::get_error_info<errinfo_sourceLocation>(_exception);
|
||||
Scanner const* scanner;
|
||||
|
||||
if (location)
|
||||
|
@ -23,7 +23,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <ostream>
|
||||
#include <libsolidity/BaseTypes.h>
|
||||
#include <libdevcore/SourceLocation.h>
|
||||
|
||||
namespace dev
|
||||
{
|
||||
@ -39,7 +39,7 @@ class CompilerStack; // forward
|
||||
struct SourceReferenceFormatter
|
||||
{
|
||||
public:
|
||||
static void printSourceLocation(std::ostream& _stream, Location const& _location, Scanner const& _scanner);
|
||||
static void printSourceLocation(std::ostream& _stream, SourceLocation const& _location, Scanner const& _scanner);
|
||||
static void printExceptionInformation(std::ostream& _stream, Exception const& _exception,
|
||||
std::string const& _name, CompilerStack const& _compiler);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user