mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Style changes.
This commit is contained in:
parent
d854e56789
commit
96db6cf905
3
AST.h
3
AST.h
@ -280,7 +280,8 @@ class FunctionDefinition: public Declaration
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
FunctionDefinition(Location const& _location, ASTPointer<ASTString> const& _name,
|
FunctionDefinition(Location const& _location, ASTPointer<ASTString> const& _name,
|
||||||
bool _isPublic, bool _isConstructor,
|
bool _isPublic,
|
||||||
|
bool _isConstructor,
|
||||||
ASTPointer<ASTString> const& _documentation,
|
ASTPointer<ASTString> const& _documentation,
|
||||||
ASTPointer<ParameterList> const& _parameters,
|
ASTPointer<ParameterList> const& _parameters,
|
||||||
bool _isDeclaredConst,
|
bool _isDeclaredConst,
|
||||||
|
@ -58,7 +58,7 @@ bool CallGraph::visit(Identifier const& _identifier)
|
|||||||
{
|
{
|
||||||
if (m_overrideResolver)
|
if (m_overrideResolver)
|
||||||
fun = (*m_overrideResolver)(fun->getName());
|
fun = (*m_overrideResolver)(fun->getName());
|
||||||
solAssert(fun, "");
|
solAssert(fun, "Error finding override for function " + fun->getName());
|
||||||
addFunction(*fun);
|
addFunction(*fun);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -112,9 +112,9 @@ ASTPointer<ImportDirective> Parser::parseImportDirective()
|
|||||||
ASTPointer<ContractDefinition> Parser::parseContractDefinition()
|
ASTPointer<ContractDefinition> Parser::parseContractDefinition()
|
||||||
{
|
{
|
||||||
ASTNodeFactory nodeFactory(*this);
|
ASTNodeFactory nodeFactory(*this);
|
||||||
ASTPointer<ASTString> docstring;
|
ASTPointer<ASTString> docString;
|
||||||
if (m_scanner->getCurrentCommentLiteral() != "")
|
if (m_scanner->getCurrentCommentLiteral() != "")
|
||||||
docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
|
docString = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
|
||||||
expectToken(Token::CONTRACT);
|
expectToken(Token::CONTRACT);
|
||||||
ASTPointer<ASTString> name = expectIdentifierToken();
|
ASTPointer<ASTString> name = expectIdentifierToken();
|
||||||
vector<ASTPointer<InheritanceSpecifier>> baseContracts;
|
vector<ASTPointer<InheritanceSpecifier>> baseContracts;
|
||||||
@ -157,7 +157,7 @@ ASTPointer<ContractDefinition> Parser::parseContractDefinition()
|
|||||||
}
|
}
|
||||||
nodeFactory.markEndPosition();
|
nodeFactory.markEndPosition();
|
||||||
expectToken(Token::RBRACE);
|
expectToken(Token::RBRACE);
|
||||||
return nodeFactory.createNode<ContractDefinition>(name, docstring, baseContracts, structs,
|
return nodeFactory.createNode<ContractDefinition>(name, docString, baseContracts, structs,
|
||||||
stateVariables, functions);
|
stateVariables, functions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user