Description
Add streaming compilation and instantiation APIs to AngleSharp.Wasm, including WebAssembly.compileStreaming(...) and WebAssembly.instantiateStreaming(...).
Background
Streaming APIs are the standard browser path for loading WebAssembly directly from a response stream. They are important for real-world scenarios where modules are fetched over HTTP and should be compiled as data arrives instead of requiring the entire binary to be buffered first.
Specification
WebAssembly JavaScript API: WebAssembly.compileStreaming(source) and WebAssembly.instantiateStreaming(source, importObject)
Description
Add streaming compilation and instantiation APIs to AngleSharp.Wasm, including
WebAssembly.compileStreaming(...)andWebAssembly.instantiateStreaming(...).Background
Streaming APIs are the standard browser path for loading WebAssembly directly from a response stream. They are important for real-world scenarios where modules are fetched over HTTP and should be compiled as data arrives instead of requiring the entire binary to be buffered first.
Specification
WebAssembly JavaScript API:
WebAssembly.compileStreaming(source)andWebAssembly.instantiateStreaming(source, importObject)