mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-02 18:31:05 +00:00
Updates a mess of dependencies and tracks the most recent version of the reference types specification.
20 lines
416 B
JavaScript
20 lines
416 B
JavaScript
import * as wasm from './reference_test_bg.wasm';
|
|
|
|
/**
|
|
*/
|
|
export function foo() {
|
|
wasm.foo();
|
|
}
|
|
|
|
export const __wbindgen_init_externref_table = function() {
|
|
const table = wasm.__wbindgen_export_0;
|
|
const offset = table.grow(4);
|
|
table.set(0, undefined);
|
|
table.set(offset + 0, undefined);
|
|
table.set(offset + 1, null);
|
|
table.set(offset + 2, true);
|
|
table.set(offset + 3, false);
|
|
;
|
|
};
|
|
|