We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2f3776 commit 45d46a9Copy full SHA for 45d46a9
src/QAST/Block.nqp
@@ -95,7 +95,7 @@ class QAST::Block is QAST::Node does QAST::Children {
95
method dump_extra_node_info() {
96
my @extra;
97
@extra.push(":cuid($!cuid)") unless nqp::isnull_s($!cuid);
98
- @extra.push(":blocktype($!blocktype)") unless nqp::chars(self.blocktype);
+ @extra.push(":blocktype($!blocktype)") if nqp::chars(self.blocktype);
99
nqp::join(' ', @extra);
100
}
101
0 commit comments