Refs #35999.
Refs nodejs/node#42701.
Node.js added support for WebAssembly.compileStreaming and WebAssembly.instantiateStreaming but they don't work within Electron at the moment.
This is happening because Node.js' logic for enabling them here is called via node::SetIsolateUpForNode, which by necessity can only be called on an existing isolate. However, the switch to enable it here is called by gin during its own isolate initialization, which means that it ends up being undefined. Look into a good way to fix this.
Refs #35999.
Refs nodejs/node#42701.
Node.js added support for
WebAssembly.compileStreamingandWebAssembly.instantiateStreamingbut they don't work within Electron at the moment.This is happening because Node.js' logic for enabling them here is called via
node::SetIsolateUpForNode, which by necessity can only be called on an existing isolate. However, the switch to enable it here is called by gin during its own isolate initialization, which means that it ends up being undefined. Look into a good way to fix this.