Skip to content

Commit 45d46a9

Browse files
committed
Fix blocktype display in Block extra node info
1 parent e2f3776 commit 45d46a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QAST/Block.nqp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class QAST::Block is QAST::Node does QAST::Children {
9595
method dump_extra_node_info() {
9696
my @extra;
9797
@extra.push(":cuid($!cuid)") unless nqp::isnull_s($!cuid);
98-
@extra.push(":blocktype($!blocktype)") unless nqp::chars(self.blocktype);
98+
@extra.push(":blocktype($!blocktype)") if nqp::chars(self.blocktype);
9999
nqp::join(' ', @extra);
100100
}
101101
}

0 commit comments

Comments
 (0)