Fix order of operators
This commit is contained in:
parent
395c029ca9
commit
04e2d61583
@ -288,16 +288,6 @@ where
|
|||||||
multispace0,
|
multispace0,
|
||||||
alt
|
alt
|
||||||
((
|
((
|
||||||
map
|
|
||||||
(
|
|
||||||
tag(">"),
|
|
||||||
|_| crate::ComparisonOperator::Greater,
|
|
||||||
),
|
|
||||||
map
|
|
||||||
(
|
|
||||||
tag("<"),
|
|
||||||
|_| crate::ComparisonOperator::Less,
|
|
||||||
),
|
|
||||||
map
|
map
|
||||||
(
|
(
|
||||||
tag("<="),
|
tag("<="),
|
||||||
@ -309,6 +299,16 @@ where
|
|||||||
|_| crate::ComparisonOperator::GreaterOrEqual,
|
|_| crate::ComparisonOperator::GreaterOrEqual,
|
||||||
),
|
),
|
||||||
map
|
map
|
||||||
|
(
|
||||||
|
tag(">"),
|
||||||
|
|_| crate::ComparisonOperator::Greater,
|
||||||
|
),
|
||||||
|
map
|
||||||
|
(
|
||||||
|
tag("<"),
|
||||||
|
|_| crate::ComparisonOperator::Less,
|
||||||
|
),
|
||||||
|
map
|
||||||
(
|
(
|
||||||
tag("!="),
|
tag("!="),
|
||||||
|_| crate::ComparisonOperator::NotEqual,
|
|_| crate::ComparisonOperator::NotEqual,
|
||||||
|
Loading…
Reference in New Issue
Block a user