Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix parse-o spotted by tadzik++. (Really want to figure out how STD a…
…voids needing this, though.)
  • Loading branch information
jnthn committed May 27, 2012
1 parent 9653a4d commit 2ad64fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Perl6/Grammar.pm
Expand Up @@ -2548,8 +2548,8 @@ grammar Perl6::Grammar is HLL::Grammar {
token prefix:sym<+> { <sym> <O('%symbolic_unary')> }
token prefix:sym<~> { <sym> <O('%symbolic_unary')> }
token prefix:sym<-> { <sym> <![>]> <O('%symbolic_unary')> }
token prefix:sym<?> { <sym> <O('%symbolic_unary')> }
token prefix:sym<!> { <sym> <O('%symbolic_unary')> }
token prefix:sym<?> { <sym> <!before '??'> <O('%symbolic_unary')> }
token prefix:sym<!> { <sym> <!before '!!'> <O('%symbolic_unary')> }
token prefix:sym<+^> { <sym> <O('%symbolic_unary')> }
token prefix:sym<~^> { <sym> <O('%symbolic_unary')> }
token prefix:sym<?^> { <sym> <O('%symbolic_unary')> }
Expand Down

0 comments on commit 2ad64fa

Please sign in to comment.