diff options
author | Christian <c@ethdev.com> | 2014-10-23 02:35:35 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-10-25 01:38:48 +0800 |
commit | 9141725cf238c028dd00f4a7f814878031ef48a0 (patch) | |
tree | 4f8c399497f3871b6272a6d42abbc786b019542f /ASTPrinter.cpp | |
parent | b2f12991dbb30193386e6d3ff16e2fc46fa2289a (diff) | |
download | dexon-solidity-9141725cf238c028dd00f4a7f814878031ef48a0.tar dexon-solidity-9141725cf238c028dd00f4a7f814878031ef48a0.tar.gz dexon-solidity-9141725cf238c028dd00f4a7f814878031ef48a0.tar.bz2 dexon-solidity-9141725cf238c028dd00f4a7f814878031ef48a0.tar.lz dexon-solidity-9141725cf238c028dd00f4a7f814878031ef48a0.tar.xz dexon-solidity-9141725cf238c028dd00f4a7f814878031ef48a0.tar.zst dexon-solidity-9141725cf238c028dd00f4a7f814878031ef48a0.zip |
Documentation for AST, Parser, Scanner and other classes.
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 44245ed4..b933e7ca 100644 --- a/ASTPrinter.cpp +++ b/ASTPrinter.cpp @@ -87,7 +87,7 @@ bool ASTPrinter::visit(TypeName& _node) bool ASTPrinter::visit(ElementaryTypeName& _node) { - writeLine(std::string("ElementaryTypeName ") + Token::toString(_node.getType())); + writeLine(std::string("ElementaryTypeName ") + Token::toString(_node.getTypeName())); printSourcePart(_node); return goDeeper(); } |