aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xAST.h3
-rw-r--r--CallGraph.cpp2
-rw-r--r--Parser.cpp6
3 files changed, 6 insertions, 5 deletions
diff --git a/AST.h b/AST.h
index 97ff30cf..754e9254 100755
--- a/AST.h
+++ b/AST.h
@@ -280,7 +280,8 @@ class FunctionDefinition: public Declaration
{
public:
FunctionDefinition(Location const& _location, ASTPointer<ASTString> const& _name,
- bool _isPublic, bool _isConstructor,
+ bool _isPublic,
+ bool _isConstructor,
ASTPointer<ASTString> const& _documentation,
ASTPointer<ParameterList> const& _parameters,
bool _isDeclaredConst,
diff --git a/CallGraph.cpp b/CallGraph.cpp
index 8766114f..a671796b 100644
--- a/CallGraph.cpp
+++ b/CallGraph.cpp
@@ -58,7 +58,7 @@ bool CallGraph::visit(Identifier const& _identifier)
{
if (m_overrideResolver)
fun = (*m_overrideResolver)(fun->getName());
- solAssert(fun, "");
+ solAssert(fun, "Error finding override for function " + fun->getName());
addFunction(*fun);
}
return true;
diff --git a/Parser.cpp b/Parser.cpp
index fb864072..fcabdb29 100644
--- a/Parser.cpp
+++ b/Parser.cpp
@@ -112,9 +112,9 @@ ASTPointer<ImportDirective> Parser::parseImportDirective()
ASTPointer<ContractDefinition> Parser::parseContractDefinition()
{
ASTNodeFactory nodeFactory(*this);
- ASTPointer<ASTString> docstring;
+ ASTPointer<ASTString> docString;
if (m_scanner->getCurrentCommentLiteral() != "")
- docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
+ docString = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
expectToken(Token::CONTRACT);
ASTPointer<ASTString> name = expectIdentifierToken();
vector<ASTPointer<InheritanceSpecifier>> baseContracts;
@@ -157,7 +157,7 @@ ASTPointer<ContractDefinition> Parser::parseContractDefinition()
}
nodeFactory.markEndPosition();
expectToken(Token::RBRACE);
- return nodeFactory.createNode<ContractDefinition>(name, docstring, baseContracts, structs,
+ return nodeFactory.createNode<ContractDefinition>(name, docString, baseContracts, structs,
stateVariables, functions);
}