Change ... to ..= where applicable

This commit is contained in:
Aaron Kutch
2019-06-14 12:24:38 -05:00
parent fc550d4295
commit 363940bbe1
9 changed files with 45 additions and 45 deletions

View File

@@ -234,7 +234,7 @@ pub const PREC_RESET: i8 = -100;
pub const PREC_CLOSURE: i8 = -40;
pub const PREC_JUMP: i8 = -30;
pub const PREC_RANGE: i8 = -10;
// The range 2 ... 14 is reserved for AssocOp binary operator precedences.
// The range 2..=14 is reserved for AssocOp binary operator precedences.
pub const PREC_PREFIX: i8 = 50;
pub const PREC_POSTFIX: i8 = 60;
pub const PREC_PAREN: i8 = 99;