diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-01-11 12:22:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 18:22:15 +0100 |
commit | 36ff7bdf575e0547fabd8957ee778cc4224d5956 (patch) | |
tree | 576b663be5127780f79c8b18cd1ba6046480b61e | |
parent | d8fd71afdf0c5d62b7ae2b9eb7b877ca74f3c2e7 (diff) |
chore: Move comment to correct place (#9086)
-rw-r--r-- | core/runtime.rs | 8 |
1 files 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(), |