mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add ast json converter for ArrayTypeName
This commit is contained in:
@@ -218,6 +218,12 @@ bool ASTJsonConverter::visit(Mapping const& _node)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ASTJsonConverter::visit(ArrayTypeName const& _node)
|
||||
{
|
||||
addJsonNode(_node, "ArrayTypeName", {}, true);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ASTJsonConverter::visit(InlineAssembly const& _node)
|
||||
{
|
||||
addJsonNode(_node, "InlineAssembly", {}, true);
|
||||
@@ -459,6 +465,11 @@ void ASTJsonConverter::endVisit(Mapping const&)
|
||||
goUp();
|
||||
}
|
||||
|
||||
void ASTJsonConverter::endVisit(ArrayTypeName const&)
|
||||
{
|
||||
goUp();
|
||||
}
|
||||
|
||||
void ASTJsonConverter::endVisit(InlineAssembly const&)
|
||||
{
|
||||
goUp();
|
||||
|
||||
Reference in New Issue
Block a user