mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Provide types for VariableDeclaration.
This commit is contained in:
@@ -124,7 +124,10 @@ bool ASTJsonConverter::visit(FunctionDefinition const& _node)
|
||||
|
||||
bool ASTJsonConverter::visit(VariableDeclaration const& _node)
|
||||
{
|
||||
addJsonNode("VariableDeclaration", { make_pair("name", _node.name()) }, true);
|
||||
addJsonNode("VariableDeclaration", {
|
||||
make_pair("name", _node.name()),
|
||||
make_pair("name", _node.name()),
|
||||
}, true);
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -444,5 +447,10 @@ string ASTJsonConverter::type(Expression const& _expression)
|
||||
return _expression.annotation().type ? _expression.annotation().type->toString() : "Unknown";
|
||||
}
|
||||
|
||||
string ASTJsonConverter::type(VariableDeclaration const& _varDecl)
|
||||
{
|
||||
return _varDecl.annotation().type ? _varDecl.annotation().type->toString() : "Unknown";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user