package js.lib.webassembly

..
CompileError

A WebAssembly CompileError object indicates an error during WebAssembly decoding or validation.

Global

A WebAssembly Global object represents a global variable instance, accessible from both JavaScript and importable/exportable across one or more WebAssembly Module instances. This allows dynamic linking of multiple modules.

GlobalDescriptor

ImportExportKind

Instance

A WebAssembly Instance object is a stateful, executable instance of a WebAssembly Module. Instance objects contain all the Exported WebAssembly functions that allow calling into WebAssembly code from JavaScript.

LinkError

A WebAssembly LinkError object indicates an error during module instantiation (besides traps from the start function).

Memory

A new WebAssembly Memory object which is a resizable ArrayBuffer that holds the raw bytes of memory accessed by a WebAssembly WebAssembly Instance.

MemoryDescriptor

Module

A WebAssembly Module object contains stateless WebAssembly code that has already been compiled by the browser and can be efficiently shared with Workers, and instantiated multiple times. To instantiate the module, call the secondary overload of WebAssembly.instantiate().

ModuleExportDescriptor

ModuleImportDescriptor

RuntimeError

A WebAssembly RuntimeError object is thrown whenever WebAssembly specifies a trap.

Table

A Table object of the given size and element type.

TableDescriptor

TableKind

ValueType