cl-parser: Fix precedence of comparison operators
This commit is contained in:
parent
99a00875a8
commit
0f8b0824ac
@ -247,9 +247,9 @@ fn structor_body(p: &mut Parser, to: Path) -> PResult<Structor> {
|
|||||||
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
||||||
pub enum Precedence {
|
pub enum Precedence {
|
||||||
Assign,
|
Assign,
|
||||||
|
Logic,
|
||||||
Compare,
|
Compare,
|
||||||
Range,
|
Range,
|
||||||
Logic,
|
|
||||||
Bitwise,
|
Bitwise,
|
||||||
Shift,
|
Shift,
|
||||||
Factor,
|
Factor,
|
||||||
|
Loading…
Reference in New Issue
Block a user