summaryrefslogtreecommitdiff
path: root/ops/op2/test_cases/sync/add.out
diff options
context:
space:
mode:
Diffstat (limited to 'ops/op2/test_cases/sync/add.out')
-rw-r--r--ops/op2/test_cases/sync/add.out4
1 files changed, 3 insertions, 1 deletions
diff --git a/ops/op2/test_cases/sync/add.out b/ops/op2/test_cases/sync/add.out
index c8f77ab92..a73f032aa 100644
--- a/ops/op2/test_cases/sync/add.out
+++ b/ops/op2/test_cases/sync/add.out
@@ -52,7 +52,9 @@ impl op_add {
arg0: u32,
arg1: u32,
) -> u32 {
- let result = Self::call(arg0 as _, arg1 as _);
+ let arg0 = arg0 as _;
+ let arg1 = arg1 as _;
+ let result = Self::call(arg0, arg1);
result
}
extern "C" fn v8_fn_ptr(info: *const deno_core::v8::FunctionCallbackInfo) {