aboutsummaryrefslogtreecommitdiffstats
path: root/ASTPrinter.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-14 00:22:53 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-14 06:16:14 +0800
commit52808f67fa608b62d6d9ee81b266edb183e13d48 (patch)
treee03287f416a94d956a1f0d99cafe0f32c92075b0 /ASTPrinter.cpp
parentb1b6b63d6be34156729aa12e55e6bed0827967be (diff)
downloaddexon-solidity-52808f67fa608b62d6d9ee81b266edb183e13d48.tar
dexon-solidity-52808f67fa608b62d6d9ee81b266edb183e13d48.tar.gz
dexon-solidity-52808f67fa608b62d6d9ee81b266edb183e13d48.tar.bz2
dexon-solidity-52808f67fa608b62d6d9ee81b266edb183e13d48.tar.lz
dexon-solidity-52808f67fa608b62d6d9ee81b266edb183e13d48.tar.xz
dexon-solidity-52808f67fa608b62d6d9ee81b266edb183e13d48.tar.zst
dexon-solidity-52808f67fa608b62d6d9ee81b266edb183e13d48.zip
EnumDeclaration -> EnumValue
Diffstat (limited to 'ASTPrinter.cpp')
-rw-r--r--ASTPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ASTPrinter.cpp b/ASTPrinter.cpp
index b655d309..dd66bf0d 100644
--- a/ASTPrinter.cpp
+++ b/ASTPrinter.cpp
@@ -77,7 +77,7 @@ bool ASTPrinter::visit(EnumDefinition const& _node)
return goDeeper();
}
-bool ASTPrinter::visit(EnumDeclaration const& _node)
+bool ASTPrinter::visit(EnumvValue const& _node)
{
writeLine("EnumValue \"" + _node.getName() + "\"");
return goDeeper();
@@ -364,7 +364,7 @@ void ASTPrinter::endVisit(EnumDefinition const&)
m_indentation--;
}
-void ASTPrinter::endVisit(EnumDeclaration const&)
+void ASTPrinter::endVisit(EnumvValue const&)
{
m_indentation--;
}