Use paths instead of simple identifiers wherever possible.

This commit is contained in:
chriseth
2015-12-21 18:44:21 +01:00
parent 8fe89455b3
commit 0e2fa39fad
6 changed files with 27 additions and 24 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ bool ASTPrinter::visit(ContractDefinition const& _node)
bool ASTPrinter::visit(InheritanceSpecifier const& _node)
{
writeLine("InheritanceSpecifier \"" + _node.name().name() + "\"");
writeLine("InheritanceSpecifier");
printSourcePart(_node);
return goDeeper();
}