Skip to content

Commit

Permalink
Set precedence of ...^ … …^
Browse files Browse the repository at this point in the history
These appeared to not have been set before.
  • Loading branch information
lizmat committed Apr 1, 2020
1 parent bd4e119 commit d0e427d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core.c/precedence.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,9 @@ BEGIN {
trait_mod:<is>(&infix:<Z>, :prec($list_infix));
trait_mod:<is>(&infix:<X>, :prec($list_infix));
trait_mod:<is>(&infix:<...>, :prec($list_infix));
trait_mod:<is>(&infix:<...^>, :prec($list_infix));
trait_mod:<is>(&infix:<>, :prec($list_infix));
trait_mod:<is>(&infix:<…^>, :prec($list_infix));
trait_mod:<is>(&infix:<minmax>, :prec($list_infix));

trait_mod:<is>(&infix:<=>, :prec($list_prefix));
Expand Down

0 comments on commit d0e427d

Please sign in to comment.