diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-04-13 18:20:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 06:20:05 -0400 |
commit | ec1fce58d93de61462ddf0c9e9c58e6e844d2230 (patch) | |
tree | 420f2acf3636206f2d68d4af2e221d66b5cac56a /core/runtime.rs | |
parent | 36f147364a6990dc7c57542243021a54f2f0a606 (diff) |
fix(core): remove wasm-test-streaming flag (#10158)
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index e974bdbb2..1f87fef9a 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -156,7 +156,6 @@ fn v8_init(v8_platform: Option<v8::UniquePtr<v8::Platform>>) { v8::V8::initialize(); let flags = concat!( - "--wasm-test-streaming", // 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. |