Skip to content

Commit

Permalink
remove workaround; latest version of nqp-rx handles this as expected.
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Nov 28, 2009
1 parent 3eddba2 commit aaf5b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PmTcl/Actions.pm
Expand Up @@ -143,7 +143,7 @@ method variable($/) {
}
method term:sym<variable>($/) { make $<variable>.ast; }
method term:sym<integer>($/) { make PAST::Val.new( :value($<integer>), :returns('Integer') ); }
method term:sym<integer>($/) { make $<integer>.ast; }
method term:sym<[ ]>($/) { make $<script>.ast; }
method term:sym<" ">($/) { make concat_atoms($<quoted_atom>); }
Expand Down

0 comments on commit aaf5b44

Please sign in to comment.