aboutsummaryrefslogtreecommitdiffstats
path: root/eval.cc
diff options
context:
space:
mode:
Diffstat (limited to 'eval.cc')
-rw-r--r--eval.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.cc b/eval.cc
index 46b2736..0da8712 100644
--- a/eval.cc
+++ b/eval.cc
@@ -132,6 +132,7 @@ void Evaluator::EvalIf(const IfAST* ast) {
asts = &ast->false_asts;
}
for (AST* a : *asts) {
+ LOG("%s", a->DebugString().c_str());
a->Eval(this);
}
}