File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
crates/deno_task_shell/src/shell Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments