Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
parse ff, ff^ etc. infix operators
  • Loading branch information
moritz committed Feb 20, 2011
1 parent 880a0a7 commit 050ce79
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Perl6/Grammar.pm
Expand Up @@ -1960,6 +1960,10 @@ token infix:sym<...^> { <sym> <O('%list_infix')> }

token infix:sym<?> { <sym> {} <!before '?'> <?before <-[;]>*?':'> <.obs('?: for the conditional operator', '??!!')> <O('%conditional')> }

token infix:sym<ff> { <sym> <.panic('Flip flip operators are not yet implemented')> }
token infix:sym<^ff> { <sym> <.panic('Flip flip operators are not yet implemented')> }
token infix:sym<ff^> { <sym> <.panic('Flip flip operators are not yet implemented')> }
token infix:sym<^ff^> { <sym> <.panic('Flip flip operators are not yet implemented')> }

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

0 comments on commit 050ce79

Please sign in to comment.