Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Missing null check.
  • Loading branch information
jnthn committed Feb 27, 2013
1 parent 7775882 commit 458254f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nqp-src/QASTNodes.nqp
Expand Up @@ -348,7 +348,7 @@ class QAST::Op is QAST::Node {
}

method dump_extra_node_info() {
nqp::chars($!name)
!nqp::isnull_s($!name) && nqp::chars($!name)
?? "$!op $!name"
!! $!op;
}
Expand Down

0 comments on commit 458254f

Please sign in to comment.