mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-05 03:41:05 +00:00
20 lines
413 B
JavaScript
20 lines
413 B
JavaScript
|
import * as wasm from './reference_test_bg.wasm';
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
export function foo() {
|
||
|
wasm.foo();
|
||
|
}
|
||
|
|
||
|
export const __wbindgen_init_anyref_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);
|
||
|
;
|
||
|
};
|
||
|
|