|
| 1 | +let wasm; |
| 2 | +export function __wbg_set_wasm(val) { |
| 3 | + wasm = val; |
| 4 | +} |
| 5 | + |
| 6 | + |
| 7 | +const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder; |
| 8 | + |
| 9 | +let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true }); |
| 10 | + |
| 11 | +cachedTextDecoder.decode(); |
| 12 | + |
| 13 | +let cachedUint8ArrayMemory0 = null; |
| 14 | + |
| 15 | +function getUint8ArrayMemory0() { |
| 16 | + if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) { |
| 17 | + cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer); |
| 18 | + } |
| 19 | + return cachedUint8ArrayMemory0; |
| 20 | +} |
| 21 | + |
| 22 | +function getStringFromWasm0(ptr, len) { |
| 23 | + ptr = ptr >>> 0; |
| 24 | + return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len)); |
| 25 | +} |
| 26 | + |
| 27 | +export function exported() { |
| 28 | + wasm.exported(); |
| 29 | +} |
| 30 | + |
| 31 | +export function _function() { |
| 32 | + wasm._function(); |
| 33 | +} |
| 34 | + |
| 35 | +export function _var() { |
| 36 | + wasm._var(); |
| 37 | +} |
| 38 | + |
| 39 | +/** |
| 40 | + * @param {number} _new |
| 41 | + * @param {number} _var |
| 42 | + * @param {number} _switch |
| 43 | + * @param {number} _default |
| 44 | + * @param {number} _arguments |
| 45 | + */ |
| 46 | +export function weird_arguments(_new, _var, _switch, _default, _arguments) { |
| 47 | + wasm.weird_arguments(_new, _var, _switch, _default, _arguments); |
| 48 | +} |
| 49 | + |
| 50 | +export function __wbg_await_e0a0e75be8b6fef6() { |
| 51 | + await(); |
| 52 | +}; |
| 53 | + |
| 54 | +export function __wbg_let_8d461e9e0592bd8c(arg0) { |
| 55 | + arg0.let(); |
| 56 | +}; |
| 57 | + |
| 58 | +export function __wbg_new_4b026aaf1c1e4438() { |
| 59 | + const ret = A.new(); |
| 60 | + return ret; |
| 61 | +}; |
| 62 | + |
| 63 | +export function __wbg_new_d4bfd9add722b492() { |
| 64 | + const ret = window.__TAURI__.menu.Menu.new(); |
| 65 | + return ret; |
| 66 | +}; |
| 67 | + |
| 68 | +export function __wbg_new_e17dd7c5a1cd57d8() { |
| 69 | + B.new(); |
| 70 | +}; |
| 71 | + |
| 72 | +export function __wbg_static_accessor_TRUE_c6b68bf8545d99a3() { |
| 73 | + const ret = true; |
| 74 | + return ret; |
| 75 | +}; |
| 76 | + |
| 77 | +export function __wbindgen_init_externref_table() { |
| 78 | + const table = wasm.__wbindgen_export_0; |
| 79 | + const offset = table.grow(4); |
| 80 | + table.set(0, undefined); |
| 81 | + table.set(offset + 0, undefined); |
| 82 | + table.set(offset + 1, null); |
| 83 | + table.set(offset + 2, true); |
| 84 | + table.set(offset + 3, false); |
| 85 | + ; |
| 86 | +}; |
| 87 | + |
| 88 | +export function __wbindgen_throw(arg0, arg1) { |
| 89 | + throw new Error(getStringFromWasm0(arg0, arg1)); |
| 90 | +}; |
| 91 | + |
0 commit comments