Parsing for inline assembly.

This commit is contained in:
chriseth
2016-03-30 02:37:00 +02:00
parent 8236732e9a
commit 949b00ed59
19 changed files with 630 additions and 16 deletions
+10
View File
@@ -157,6 +157,12 @@ bool ASTJsonConverter::visit(Mapping const&)
return true;
}
bool ASTJsonConverter::visit(InlineAssembly const&)
{
addJsonNode("InlineAssembly", {}, true);
return true;
}
bool ASTJsonConverter::visit(Block const&)
{
addJsonNode("Block", {}, true);
@@ -355,6 +361,10 @@ void ASTJsonConverter::endVisit(Mapping const&)
{
}
void ASTJsonConverter::endVisit(InlineAssembly const&)
{
}
void ASTJsonConverter::endVisit(Block const&)
{
goUp();