Skip to content

Commit

Permalink
[test] fix CI, things turn normal
Browse files Browse the repository at this point in the history
Signed-off-by: Anqur <anqurvanillapy@gmail.com>
  • Loading branch information
anqurvanillapy committed Mar 1, 2024
1 parent 10b5d2b commit 1f80d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rura-grammar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,14 @@ fn return_statement(i: &mut Input) -> PResult<AST> {

fn value_expression(i: &mut Input) -> PResult<AST> {
alt((
unary(value_expression),
binary(primary_value_expression, value_expression),
closure,
indexing,
call,
if_then_else,
matching,
access,
unary(value_expression),
binary(primary_value_expression, value_expression),
primary_value_expression,
))
.context(expect("value expression"))
Expand Down

0 comments on commit 1f80d3c

Please sign in to comment.