compileStreaming method

Future<Module> compileStreaming(
  1. Object source
)

The WebAssembly.compileStreaming() function compiles a WebAssembly.Module directly from a streamed underlying source. This function is useful if it is necessary to a compile a module before it can be instantiated (otherwise, the WebAssembly.instantiateStreaming() function should be used).

MDN

Implementation

_i2.Future<_i3.Module> compileStreaming(_i2.Object source) =>
    _i6.promiseToFuture(_i6.callMethod(
      this,
      'compileStreaming',
      [source],
    ));