Dump IDENT referral values in op_t::dump
This commit is contained in:
parent
76f97a63da
commit
65835a89cc
1 changed files with 1 additions and 1 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue