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