From 36ff7bdf575e0547fabd8957ee778cc4224d5956 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 11 Jan 2021 12:22:15 -0500 Subject: chore: Move comment to correct place (#9086) --- core/runtime.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/runtime.rs b/core/runtime.rs index 7b703e3d4..c9ecca9aa 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -149,13 +149,13 @@ pub unsafe fn v8_init() { let platform = v8::new_default_platform().unwrap(); v8::V8::initialize_platform(platform); v8::V8::initialize(); - // TODO(ry) This makes WASM compile synchronously. Eventually we should - // remove this to make it work asynchronously too. But that requires getting - // PumpMessageLoop and RunMicrotasks setup correctly. - // See https://github.com/denoland/deno/issues/2544 let argv = vec![ "".to_string(), "--wasm-test-streaming".to_string(), + // TODO(ry) This makes WASM compile synchronously. Eventually we should + // remove this to make it work asynchronously too. But that requires getting + // PumpMessageLoop and RunMicrotasks setup correctly. + // See https://github.com/denoland/deno/issues/2544 "--no-wasm-async-compilation".to_string(), "--harmony-top-level-await".to_string(), "--no-validate-asm".to_string(), -- cgit v1.2.3