Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Parse the fff variants of the flip-flop operators (though still NYI).
  • Loading branch information
jnthn committed May 8, 2012
1 parent 81d88d8 commit 5d601c7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Perl6/Grammar.pm
Expand Up @@ -2687,6 +2687,11 @@ grammar Perl6::Grammar is HLL::Grammar {
token infix:sym<^ff> { <sym> <O('%conditional')> }
token infix:sym<ff^> { <sym> <O('%conditional')> }
token infix:sym<^ff^> { <sym> <O('%conditional')> }

token infix:sym<fff> { <sym> <O('%conditional')> }
token infix:sym<^fff> { <sym> <O('%conditional')> }
token infix:sym<fff^> { <sym> <O('%conditional')> }
token infix:sym<^fff^> { <sym> <O('%conditional')> }

token infix:sym<=> {
<sym>
Expand Down

0 comments on commit 5d601c7

Please sign in to comment.