Add ast json converter for ArrayTypeName

This commit is contained in:
Alex Sinyagin
2016-08-18 12:30:00 +00:00
parent bdc2436ae3
commit e9c894c9f8
3 changed files with 26 additions and 0 deletions
+11
View File
@@ -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();