Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove a couple of unrequied lookaheads, saving almost 40,000 calls t…
…o before while parsing CORE.setting.
  • Loading branch information
jnthn committed May 26, 2012
1 parent 053013e commit e22f54f
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<?> { <!before '???'> <sym> <O('%symbolic_unary')> }
token prefix:sym<!> { <!before '!!!'> <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> <O('%symbolic_unary')> }
Expand Down

0 comments on commit e22f54f

Please sign in to comment.