diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-02-20 19:27:39 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-02-21 05:51:16 +0800 |
commit | 858acaa1937ccc2f6cc13bb3076abc32c43789b0 (patch) | |
tree | 6628fd9080584e7dbae13272a00aee9a2357df1a /ASTPrinter.cpp | |
parent | 1ed86b33bcb07f432209953ec4ed1779d0831452 (diff) | |
download | dexon-solidity-858acaa1937ccc2f6cc13bb3076abc32c43789b0.tar.gz dexon-solidity-858acaa1937ccc2f6cc13bb3076abc32c43789b0.tar.zst dexon-solidity-858acaa1937ccc2f6cc13bb3076abc32c43789b0.zip |
corrected accept for variableDeclaration
changes after code review
Diffstat (limited to 'ASTPrinter.cpp')
-rw-r--r-- | ASTPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ASTPrinter.cpp b/ASTPrinter.cpp index aead6abd..209bb73e 100644 --- a/ASTPrinter.cpp +++ b/ASTPrinter.cpp @@ -227,7 +227,7 @@ bool ASTPrinter::visit(Return const& _node) bool ASTPrinter::visit(VariableDeclarationStatement const& _node) { - writeLine("VariableDefinition"); + writeLine("VariableDeclarationStatement"); printSourcePart(_node); return goDeeper(); } |