Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions document/web-api/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ additional APIs that are implemented by Web user agents but are outside the scop
<pre class="idl">
[Exposed=(Window,Worker)]
partial namespace WebAssembly {
Promise&lt;Module> compileStreaming(Promise&lt;Response> source, optional WebAssemblyCompileOptions options);
Promise&lt;Module> compileStreaming(Promise&lt;Response> source, optional WebAssemblyCompileOptions options = {});
Promise&lt;WebAssemblyInstantiatedSource> instantiateStreaming(
Promise&lt;Response> source, optional object importObject, optional WebAssemblyCompileOptions options);
Promise&lt;Response> source, optional object importObject, optional WebAssemblyCompileOptions options = {});
};
</pre>

Expand Down
Loading