Skip to content

Commit

Permalink
feat: equal binary operator
Browse files Browse the repository at this point in the history
  • Loading branch information
fcoury committed Sep 18, 2024
1 parent c8170c9 commit d06e975
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ impl<'a> Parser<'a> {
Some(Token::Percent) => Some(BinaryOperator::Modulo),
Some(Token::And) => Some(BinaryOperator::And),
Some(Token::Or) => Some(BinaryOperator::Or),
Some(Token::Equal) => Some(BinaryOperator::Equal),
Some(Token::Less) => Some(BinaryOperator::LessThan),
Some(Token::LessEqual) => Some(BinaryOperator::LessThanEqual),
Some(Token::Greater) => Some(BinaryOperator::GreaterThan),
Expand Down

0 comments on commit d06e975

Please sign in to comment.