summaryrefslogtreecommitdiff
path: root/src/astnode.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-27 00:32:12 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-27 00:32:12 -0700
commit40e08192a08f55b5090d5ef28f48c74613e2e5a0 (patch)
tree352817365ce93d8d022cc1e04f5a411ce0df2b01 /src/astnode.cpp
parentf33fdd93ef93fdbb0e6b3a8e2ecb80b78f1b2816 (diff)
downloadstage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.tar.gz
stage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.tar.bz2
stage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.tar.xz
stage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.zip
Wow, a whole lot of code builds now.
Diffstat (limited to 'src/astnode.cpp')
-rw-r--r--src/astnode.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/astnode.cpp b/src/astnode.cpp
index 2c94ca9..18ce122 100644
--- a/src/astnode.cpp
+++ b/src/astnode.cpp
@@ -29,6 +29,10 @@ Bu::Formatter &operator<<( Bu::Formatter &f, AstNode::Type t )
29 case AstNode::tStore: return f << "tStore"; 29 case AstNode::tStore: return f << "tStore";
30 case AstNode::tAnd: return f << "tAnd"; 30 case AstNode::tAnd: return f << "tAnd";
31 case AstNode::tOr: return f << "tOr"; 31 case AstNode::tOr: return f << "tOr";
32 case AstNode::tPlus: return f << "tPlus";
33 case AstNode::tMinus: return f << "tMinus";
34 case AstNode::tDivide: return f << "tDivide";
35 case AstNode::tMultiply: return f << "tMultiply";
32 36
33 case AstNode::tLeafLiteral: return f << "!tLeafLiteral!"; 37 case AstNode::tLeafLiteral: return f << "!tLeafLiteral!";
34 case AstNode::tVarName: return f << "tVarName"; 38 case AstNode::tVarName: return f << "tVarName";