Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
more dump output for Regex nodes.
  • Loading branch information
timo committed Nov 20, 2013
1 parent 29a6eb5 commit 0de4547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QAST/Regex.nqp
Expand Up @@ -25,7 +25,7 @@ class QAST::Regex is QAST::Node {
method max(*@value) { $!max := @value[0] if @value; $!max }

method dump_extra_node_info() {
":rxtype($!rxtype)" ~ (!nqp::isnull_s($!subtype) ?? " :subtype($!subtype)" !! "")
":rxtype($!rxtype)" ~ (!nqp::isnull_s($!subtype) ?? " :subtype($!subtype)" !! "") ~ ($!negate ?? ' (negated)' !! '') ~ (nqp::defined($!name) ?? " :name($!name)" !! '')
}
}

0 comments on commit 0de4547

Please sign in to comment.