set()
prototype method of the
WebAssembly.Table
object mutates a reference stored at a given index to a different value.
table.set(index, value);
The index of the function reference you want to mutate.
Void.
Table.prototype.length
,
RangeError
is thrown.
null
,
TypeError
is thrown.
The following example (see table2.html
source code
and
live version
) creates a new WebAssembly Table instance with an initial size of 2 references. We then print out the table length and contents of the two indexes (retrieved via
Table.prototype.get()
) to show that the length is two, and the indexes currently contain no function references (they currently return
null
).
var tbl = new WebAssembly.Table({initial:2, element:"anyfunc"});
console.log(tbl.length);
console.log(tbl.get(0));
console.log(tbl.get(1));
We then create an import object that contains a reference to the table:
var importObj = {
js: {
tbl:tbl
}
};
Finally, we load and instantiate a wasm module (table2.wasm) using the
WebAssembly.instantiateStreaming()
, log the table length, and invoke the two referenced functions that are now stored in the table (the table2.wasm module (see
text representation
) adds two function references to the table, both of which print out a simple value):
WebAssembly.instantiateStreaming(fetch('table2.wasm'), importObject)
.then(function(obj) {
console.log(tbl.length);
console.log(tbl.get(0)());
console.log(tbl.get(1)());
});
Note how you've got to include a second function invocation operator at the end of the accessor to actually invoke the referenced function and log the value stored inside it (e.g.
get(0)()
而不是
get(0)
).
This example shows that we're creating and accessing the table from JavaScript, but the same table is visible and callable inside the wasm instance too.
| 规范 |
|---|
|
WebAssembly JavaScript 接口
The definition of 'set()' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
set
|
Chrome 57 | Edge 16 |
Firefox
52
|
IE No | Opera 44 | Safari 11 | WebView Android 57 | Chrome Android 57 |
Firefox Android
52
|
Opera Android 43 | Safari iOS 11 | Samsung Internet Android 7.0 | nodejs 8.0.0 |
完整支持
不支持
见实现注意事项。
WebAssembly
WebAssembly.Module
WebAssembly.Global
WebAssembly.Instance
WebAssembly.Memory
WebAssembly.Table
WebAssembly.CompileError
WebAssembly.LinkError
WebAssembly.RuntimeError
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()