diff options
Diffstat (limited to 'ops/optimizer_tests/issue16934_fast.out')
-rw-r--r-- | ops/optimizer_tests/issue16934_fast.out | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ops/optimizer_tests/issue16934_fast.out b/ops/optimizer_tests/issue16934_fast.out index 615bc6b3b..8ff9bad4f 100644 --- a/ops/optimizer_tests/issue16934_fast.out +++ b/ops/optimizer_tests/issue16934_fast.out @@ -41,6 +41,7 @@ impl send_stdin { as *const deno_core::_ops::OpCtx) }; let op_id = ctx.id; + let realm_idx = ctx.realm_idx; let promise_id = args.get(0); let promise_id = deno_core::v8::Local::< deno_core::v8::Integer, @@ -83,7 +84,12 @@ impl send_stdin { arg_0, ) .await; - (promise_id, op_id, deno_core::_ops::to_op_result(get_class, result)) + ( + realm_idx, + promise_id, + op_id, + deno_core::_ops::to_op_result(get_class, result), + ) }, ); } |