diff --git a/crates/deno_task_shell/src/grammar.pest b/crates/deno_task_shell/src/grammar.pest index 892acf3..1a6d9a7 100644 --- a/crates/deno_task_shell/src/grammar.pest +++ b/crates/deno_task_shell/src/grammar.pest @@ -215,7 +215,6 @@ unary_post_arithmetic_expr = !{ (parentheses_expr | VARIABLE | NUMBER) ~ post_arithmetic_op } - pre_arithmetic_op= _{ unary_plus | unary_minus | logical_not | bitwise_not } diff --git a/crates/tests/src/lib.rs b/crates/tests/src/lib.rs index afde640..8c638bf 100644 --- a/crates/tests/src/lib.rs +++ b/crates/tests/src/lib.rs @@ -892,7 +892,6 @@ async fn arithmetic() { .assert_stdout("0\n") .run() .await; - } #[tokio::test]