comparison ops

This commit is contained in:
Aleksey Kladov 2018-08-07 14:28:07 +03:00
parent 8908e51aea
commit a6ba736a50

View file

@ -73,7 +73,7 @@ fn current_op(p: &Parser) -> (u8, Op) {
let bp = match p.current() { let bp = match p.current() {
EQ => 1, EQ => 1,
DOTDOT => 2, DOTDOT => 2,
EQEQ | NEQ => 5, EQEQ | NEQ | L_ANGLE | R_ANGLE => 5,
PIPE => 6, PIPE => 6,
CARET => 7, CARET => 7,
AMP => 8, AMP => 8,