From 65835a89ccbcb9c0a0297b4f7c6adbfd768dca84 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 7 Mar 2012 05:21:40 -0600 Subject: Dump IDENT referral values in op_t::dump --- src/op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/op.cc') diff --git a/src/op.cc b/src/op.cc index 1889f2aa..b8893bc9 100644 --- a/src/op.cc +++ b/src/op.cc @@ -818,7 +818,7 @@ void expr_t::op_t::dump(std::ostream& out, const int depth) const // An identifier is a special non-terminal, in that its left() can // hold the compiled definition of the identifier. - if (kind > TERMINALS || is_scope()) { + if (kind > TERMINALS || is_scope() || is_ident()) { if (left()) { left()->dump(out, depth + 1); if (kind > UNARY_OPERATORS && has_right()) -- cgit v1.2.3