Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
show "(NQPMu)" in ast dump because this tends to be bad
  • Loading branch information
FROGGS committed Jan 24, 2014
1 parent 283f8f2 commit 8adf37d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QAST/Node.nqp
Expand Up @@ -120,7 +120,7 @@ class QAST::Node {
else {
nqp::push(@onto, nqp::x(' ', $indent));
nqp::push(@onto, '- ');
nqp::push(@onto, ~$_);
nqp::push(@onto, nqp::istype($_, NQPMu) ?? '(NQPMu)' !! ~$_);
nqp::push(@onto, "\n");
}
}
Expand Down

0 comments on commit 8adf37d

Please sign in to comment.