Unify the precedence level for PREC_POSTFIX and PREC_PAREN
This commit is contained in:
parent
bcf94dec5b
commit
8cfd4b180b
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ pub const PREC_RANGE: i8 = -10;
|
|||
// 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;
|
||||
pub const PREC_PAREN: i8 = 60;
|
||||
pub const PREC_FORCE_PAREN: i8 = 100;
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue