cl-parser: Fix precedence of comparison operators

This commit is contained in:
John 2024-09-18 00:57:44 -05:00
parent 99a00875a8
commit 0f8b0824ac

View File

@ -247,9 +247,9 @@ fn structor_body(p: &mut Parser, to: Path) -> PResult<Structor> {
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum Precedence {
Assign,
Logic,
Compare,
Range,
Logic,
Bitwise,
Shift,
Factor,