Skip to content

Commit

Permalink
Add precedence info for infix < > <= >=
Browse files Browse the repository at this point in the history
They appeared to be absent.  This is purely for introspection purposes.
  • Loading branch information
lizmat committed Mar 4, 2021
1 parent 22ea9d9 commit ceac521
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/core.c/precedence.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ BEGIN {
trait_mod:<is>(&infix:<(-)>, :prec($junctive_or));
trait_mod:<is>(&infix:<(^)>, :prec($junctive_or));

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

0 comments on commit ceac521

Please sign in to comment.