Skip to content

Commit

Permalink
Make Junction ops diffy
Browse files Browse the repository at this point in the history
Don't allow = metaop with them.
  • Loading branch information
vrurg committed Sep 15, 2019
1 parent fb7c2bc commit d708535
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Perl6/Grammar.nqp
Expand Up @@ -4055,14 +4055,14 @@ grammar Perl6::Grammar is HLL::Grammar does STD {
token infix:sym<> { <sym> <O(|%concatenation)> }
token infix:sym<o> { <sym> <O(|%concatenation)> }
token infix:sym<&> { <sym> <O(|%junctive_and, :iffy(1))> }
token infix:sym<&> { <sym> <O(|%junctive_and, :iffy(1), :diffy(1))> }
token infix:sym<(&)> { <sym> <O(|%junctive_and)> }
token infix:sym«» { <sym> <O(|%junctive_and)> }
token infix:sym<(.)> { <sym> <O(|%junctive_and)> }
token infix:sym«» { <sym> <O(|%junctive_and)> }
token infix:sym<|> { <sym> <O(|%junctive_or, :iffy(1))> }
token infix:sym<^> { <sym> <O(|%junctive_or, :iffy(1))> }
token infix:sym<|> { <sym> <O(|%junctive_or, :iffy(1), :diffy(1))> }
token infix:sym<^> { <sym> <O(|%junctive_or, :iffy(1), :diffy(1))> }
token infix:sym<(|)> { <sym> <O(|%junctive_or)> }
token infix:sym«» { <sym> <O(|%junctive_or)> }
token infix:sym<(^)> { <sym> <O(|%junctive_or)> }
Expand Down

0 comments on commit d708535

Please sign in to comment.