mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 10:51:09 +00:00
66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
|
import * as wasm from './reference_test_bg.wasm';
|
||
|
|
||
|
const lTextDecoder = typeof TextDecoder === 'undefined' ? require('util').TextDecoder : TextDecoder;
|
||
|
|
||
|
let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
||
|
|
||
|
cachedTextDecoder.decode();
|
||
|
|
||
|
let cachegetUint8Memory0 = null;
|
||
|
function getUint8Memory0() {
|
||
|
if (cachegetUint8Memory0 === null || cachegetUint8Memory0.buffer !== wasm.memory.buffer) {
|
||
|
cachegetUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
||
|
}
|
||
|
return cachegetUint8Memory0;
|
||
|
}
|
||
|
|
||
|
function getStringFromWasm0(ptr, len) {
|
||
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
||
|
}
|
||
|
|
||
|
function addToAnyrefTable0(obj) {
|
||
|
const idx = wasm.__anyref_table_alloc();
|
||
|
wasm.__wbindgen_export_0.set(idx, obj);
|
||
|
return idx;
|
||
|
}
|
||
|
|
||
|
function handleError(e) {
|
||
|
const idx = addToAnyrefTable0(e);
|
||
|
wasm.__wbindgen_exn_store(idx);
|
||
|
}
|
||
|
/**
|
||
|
*/
|
||
|
export function exported() {
|
||
|
wasm.exported();
|
||
|
}
|
||
|
|
||
|
export const __wbg_foo_8d66ddef0ff279d6 = function() {
|
||
|
try {
|
||
|
foo();
|
||
|
} catch (e) {
|
||
|
handleError(e)
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export const __wbindgen_throw = function(arg0, arg1) {
|
||
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
||
|
};
|
||
|
|
||
|
export const __wbindgen_rethrow = function(arg0) {
|
||
|
throw arg0;
|
||
|
};
|
||
|
|
||
|
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);
|
||
|
;
|
||
|
};
|
||
|
|
||
|
wasm.__wbindgen_start();
|
||
|
|