Skip to content

Commit 44d8f1e

Browse files
authored
Update execute.rs
1 parent 5ced079 commit 44d8f1e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

crates/deno_task_shell/src/shell/execute.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -618,14 +618,6 @@ async fn evaluate_arithmetic_part(
618618
let rhs = Box::pin(evaluate_arithmetic_part(right, state)).await?;
619619
apply_conditional_binary_op(lhs, operator, rhs)
620620
}
621-
// ArithmeticPart::PostArithmeticExpr { operand, operator } => {
622-
// let val = Box::pin(evaluate_arithmetic_part(operand, state)).await?;
623-
// apply_post_op(state, *operator, val, operand)
624-
// }
625-
// ArithmeticPart::PreArithmeticExpr { operator, operand } => {
626-
// let val = Box::pin(evaluate_arithmetic_part(operand, state)).await?;
627-
// apply_pre_op(state, *operator, val, operand)
628-
// }
629621
ArithmeticPart::UnaryAritheticExpr { operator, operand } => {
630622
let val = Box::pin(evaluate_arithmetic_part(operand, state)).await?;
631623
apply_unary_op(state, *operator, val, operand)

0 commit comments

Comments
 (0)