Skip to content

Commit

Permalink
RakuAST: fix thinko with ff^ ff^ ^ff& and ^fff^
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Sep 15, 2023
1 parent bc16a7a commit cd32d6a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Raku/Grammar.nqp
Original file line number Diff line number Diff line change
Expand Up @@ -2051,8 +2051,8 @@ grammar Raku::Grammar is HLL::Grammar does Raku::Common {
token prefix:sym<not> { <sym><.end-prefix> }
#-------------------------------------------------------------------------------
# Alpha infixes that need a right word boundary, and which will need special
# handling for non-English versions of the Raku Programming Language
# Alpha infixes that may need a right word boundary, and which will need
# special handling for non-English versions of the Raku Programming Language
proto token infix {*}
token infix:sym<after> { <sym> » }
Expand All @@ -2068,12 +2068,12 @@ grammar Raku::Grammar is HLL::Grammar does Raku::Common {
token infix:sym<eqv> { <sym> » }
token infix:sym<ff> { <sym> » }
token infix:sym<^ff> { <sym> » }
token infix:sym<ff^> { <sym> » }
token infix:sym<^ff^> { <sym> » }
token infix:sym<ff^> { <sym> }
token infix:sym<^ff^> { <sym> }
token infix:sym<fff> { <sym> » }
token infix:sym<^fff> { <sym> » }
token infix:sym<fff^> { <sym> » }
token infix:sym<^fff^> { <sym> » }
token infix:sym<fff^> { <sym> }
token infix:sym<^fff^> { <sym> }
token infix:sym<gcd> { <sym> » }
token infix:sym«ge» { <sym> » }
token infix:sym«gt» { <sym> » }
Expand Down

0 comments on commit cd32d6a

Please sign in to comment.