From 50cd9969b6c4697abd2b71fdbaa49a5dd1c26696 Mon Sep 17 00:00:00 2001 From: Nathan Braswell Date: Sat, 14 Mar 2015 02:50:18 -0400 Subject: [PATCH] Ehh, not handleing syntax nodes is to common to make it an error right now --- src/ASTTransformation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ASTTransformation.cpp b/src/ASTTransformation.cpp index e598df2..e840d89 100644 --- a/src/ASTTransformation.cpp +++ b/src/ASTTransformation.cpp @@ -692,7 +692,7 @@ NodeTree* ASTTransformation::transform(NodeTree* from, NodeTree throw "Ambigious parse!"; } else { // Should get rid of this eventually. Right now it handles cases like sign, alpha, a comma, etc - std::cerr << "Unhandled syntax node: " << name << std::endl; + std::cout << "Unhandled syntax node: " << name << std::endl; return new NodeTree(); }