Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FCO committed Mar 2, 2017
1 parent eac7181 commit 7cb2f46
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Perl6/Grammar.nqp
Expand Up @@ -4250,9 +4250,8 @@ grammar Perl6::Grammar is HLL::Grammar does STD {
token prefix:sym<-> { <sym> <O(|%symbolic_unary)> }
token prefix:sym<> { <sym> <O(|%symbolic_unary)> }
token prefix:sym<??> { <sym> <.dupprefix('??')> <O(|%symbolic_unary)> }
token prefix:sym<?> { <sym> <!before '⁇' || '??'> <O(|%symbolic_unary)> }
token prefix:sym<> { <sym> <.dupprefix('')> <O(|%symbolic_unary)> }
token prefix:sym<!> { <sym> <!before '‼' || '!!'> <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 7cb2f46

Please sign in to comment.