1061 lines
36 KiB
JavaScript
1061 lines
36 KiB
JavaScript
import { Interpreter } from './snippets/dioxus-interpreter-js-459fb15b86d869f7/src/interpreter.js';
|
|
|
|
let wasm;
|
|
|
|
const heap = new Array(32).fill(undefined);
|
|
|
|
heap.push(undefined, null, true, false);
|
|
|
|
function getObject(idx) { return heap[idx]; }
|
|
|
|
let heap_next = heap.length;
|
|
|
|
function dropObject(idx) {
|
|
if (idx < 36) return;
|
|
heap[idx] = heap_next;
|
|
heap_next = idx;
|
|
}
|
|
|
|
function takeObject(idx) {
|
|
const ret = getObject(idx);
|
|
dropObject(idx);
|
|
return ret;
|
|
}
|
|
|
|
function addHeapObject(obj) {
|
|
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
const idx = heap_next;
|
|
heap_next = heap[idx];
|
|
|
|
heap[idx] = obj;
|
|
return idx;
|
|
}
|
|
|
|
const cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
|
|
cachedTextDecoder.decode();
|
|
|
|
let cachedUint8Memory0 = new Uint8Array();
|
|
|
|
function getUint8Memory0() {
|
|
if (cachedUint8Memory0.byteLength === 0) {
|
|
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
|
}
|
|
return cachedUint8Memory0;
|
|
}
|
|
|
|
function getStringFromWasm0(ptr, len) {
|
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
|
}
|
|
|
|
function debugString(val) {
|
|
// primitive types
|
|
const type = typeof val;
|
|
if (type == 'number' || type == 'boolean' || val == null) {
|
|
return `${val}`;
|
|
}
|
|
if (type == 'string') {
|
|
return `"${val}"`;
|
|
}
|
|
if (type == 'symbol') {
|
|
const description = val.description;
|
|
if (description == null) {
|
|
return 'Symbol';
|
|
} else {
|
|
return `Symbol(${description})`;
|
|
}
|
|
}
|
|
if (type == 'function') {
|
|
const name = val.name;
|
|
if (typeof name == 'string' && name.length > 0) {
|
|
return `Function(${name})`;
|
|
} else {
|
|
return 'Function';
|
|
}
|
|
}
|
|
// objects
|
|
if (Array.isArray(val)) {
|
|
const length = val.length;
|
|
let debug = '[';
|
|
if (length > 0) {
|
|
debug += debugString(val[0]);
|
|
}
|
|
for(let i = 1; i < length; i++) {
|
|
debug += ', ' + debugString(val[i]);
|
|
}
|
|
debug += ']';
|
|
return debug;
|
|
}
|
|
// Test for built-in
|
|
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
let className;
|
|
if (builtInMatches.length > 1) {
|
|
className = builtInMatches[1];
|
|
} else {
|
|
// Failed to match the standard '[object ClassName]'
|
|
return toString.call(val);
|
|
}
|
|
if (className == 'Object') {
|
|
// we're a user defined class or Object
|
|
// JSON.stringify avoids problems with cycles, and is generally much
|
|
// easier than looping through ownProperties of `val`.
|
|
try {
|
|
return 'Object(' + JSON.stringify(val) + ')';
|
|
} catch (_) {
|
|
return 'Object';
|
|
}
|
|
}
|
|
// errors
|
|
if (val instanceof Error) {
|
|
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
}
|
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
return className;
|
|
}
|
|
|
|
let WASM_VECTOR_LEN = 0;
|
|
|
|
const cachedTextEncoder = new TextEncoder('utf-8');
|
|
|
|
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
|
? function (arg, view) {
|
|
return cachedTextEncoder.encodeInto(arg, view);
|
|
}
|
|
: function (arg, view) {
|
|
const buf = cachedTextEncoder.encode(arg);
|
|
view.set(buf);
|
|
return {
|
|
read: arg.length,
|
|
written: buf.length
|
|
};
|
|
});
|
|
|
|
function passStringToWasm0(arg, malloc, realloc) {
|
|
|
|
if (realloc === undefined) {
|
|
const buf = cachedTextEncoder.encode(arg);
|
|
const ptr = malloc(buf.length);
|
|
getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
WASM_VECTOR_LEN = buf.length;
|
|
return ptr;
|
|
}
|
|
|
|
let len = arg.length;
|
|
let ptr = malloc(len);
|
|
|
|
const mem = getUint8Memory0();
|
|
|
|
let offset = 0;
|
|
|
|
for (; offset < len; offset++) {
|
|
const code = arg.charCodeAt(offset);
|
|
if (code > 0x7F) break;
|
|
mem[ptr + offset] = code;
|
|
}
|
|
|
|
if (offset !== len) {
|
|
if (offset !== 0) {
|
|
arg = arg.slice(offset);
|
|
}
|
|
ptr = realloc(ptr, len, len = offset + arg.length * 3);
|
|
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
|
const ret = encodeString(arg, view);
|
|
|
|
offset += ret.written;
|
|
}
|
|
|
|
WASM_VECTOR_LEN = offset;
|
|
return ptr;
|
|
}
|
|
|
|
let cachedInt32Memory0 = new Int32Array();
|
|
|
|
function getInt32Memory0() {
|
|
if (cachedInt32Memory0.byteLength === 0) {
|
|
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
|
|
}
|
|
return cachedInt32Memory0;
|
|
}
|
|
|
|
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
const real = (...args) => {
|
|
// First up with a closure we increment the internal reference
|
|
// count. This ensures that the Rust closure environment won't
|
|
// be deallocated while we're invoking it.
|
|
state.cnt++;
|
|
const a = state.a;
|
|
state.a = 0;
|
|
try {
|
|
return f(a, state.b, ...args);
|
|
} finally {
|
|
if (--state.cnt === 0) {
|
|
wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
|
|
|
|
} else {
|
|
state.a = a;
|
|
}
|
|
}
|
|
};
|
|
real.original = state;
|
|
|
|
return real;
|
|
}
|
|
|
|
let stack_pointer = 32;
|
|
|
|
function addBorrowedObject(obj) {
|
|
if (stack_pointer == 1) throw new Error('out of js stack');
|
|
heap[--stack_pointer] = obj;
|
|
return stack_pointer;
|
|
}
|
|
function __wbg_adapter_18(arg0, arg1, arg2) {
|
|
try {
|
|
wasm.__wbindgen_export_3(arg0, arg1, addBorrowedObject(arg2));
|
|
} finally {
|
|
heap[stack_pointer++] = undefined;
|
|
}
|
|
}
|
|
|
|
function makeClosure(arg0, arg1, dtor, f) {
|
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
const real = (...args) => {
|
|
// First up with a closure we increment the internal reference
|
|
// count. This ensures that the Rust closure environment won't
|
|
// be deallocated while we're invoking it.
|
|
state.cnt++;
|
|
try {
|
|
return f(state.a, state.b, ...args);
|
|
} finally {
|
|
if (--state.cnt === 0) {
|
|
wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b);
|
|
state.a = 0;
|
|
|
|
}
|
|
}
|
|
};
|
|
real.original = state;
|
|
|
|
return real;
|
|
}
|
|
function __wbg_adapter_23(arg0, arg1, arg2) {
|
|
wasm.__wbindgen_export_4(arg0, arg1, addHeapObject(arg2));
|
|
}
|
|
|
|
function __wbg_adapter_26(arg0, arg1) {
|
|
wasm.__wbindgen_export_5(arg0, arg1);
|
|
}
|
|
|
|
function __wbg_adapter_29(arg0, arg1, arg2) {
|
|
wasm.__wbindgen_export_6(arg0, arg1, addHeapObject(arg2));
|
|
}
|
|
|
|
function getCachedStringFromWasm0(ptr, len) {
|
|
if (ptr === 0) {
|
|
return getObject(len);
|
|
} else {
|
|
return getStringFromWasm0(ptr, len);
|
|
}
|
|
}
|
|
|
|
function handleError(f, args) {
|
|
try {
|
|
return f.apply(this, args);
|
|
} catch (e) {
|
|
wasm.__wbindgen_export_8(addHeapObject(e));
|
|
}
|
|
}
|
|
|
|
function notDefined(what) { return () => { throw new Error(`${what} is not defined`); }; }
|
|
|
|
function isLikeNone(x) {
|
|
return x === undefined || x === null;
|
|
}
|
|
|
|
async function load(module, imports) {
|
|
if (typeof Response === 'function' && module instanceof Response) {
|
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
try {
|
|
return await WebAssembly.instantiateStreaming(module, imports);
|
|
|
|
} catch (e) {
|
|
if (module.headers.get('Content-Type') != 'application/wasm') {
|
|
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
|
|
const bytes = await module.arrayBuffer();
|
|
return await WebAssembly.instantiate(bytes, imports);
|
|
|
|
} else {
|
|
const instance = await WebAssembly.instantiate(module, imports);
|
|
|
|
if (instance instanceof WebAssembly.Instance) {
|
|
return { instance, module };
|
|
|
|
} else {
|
|
return instance;
|
|
}
|
|
}
|
|
}
|
|
|
|
function getImports() {
|
|
const imports = {};
|
|
imports.wbg = {};
|
|
imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
|
|
const ret = new Error();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_stack_658279fe44541cf6 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).stack;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_error_f851667af71bcfc6 = function(arg0, arg1) {
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
|
if (arg0 !== 0) { wasm.__wbindgen_export_7(arg0, arg1); }
|
|
console.error(v0);
|
|
};
|
|
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
takeObject(arg0);
|
|
};
|
|
imports.wbg.__wbg_history_2a104346a1208269 = function() { return handleError(function (arg0) {
|
|
const ret = getObject(arg0).history;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_addEventListener_1fc744729ac6dc27 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
getObject(arg0).addEventListener(v0, getObject(arg3), getObject(arg4));
|
|
}, arguments) };
|
|
imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
|
|
const ret = getObject(arg0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
|
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_pushState_38917fb88b4add30 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
var v0 = getCachedStringFromWasm0(arg2, arg3);
|
|
var v1 = getCachedStringFromWasm0(arg4, arg5);
|
|
getObject(arg0).pushState(getObject(arg1), v0, v1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_replaceState_b6d5ce07beb296ed = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
var v0 = getCachedStringFromWasm0(arg2, arg3);
|
|
var v1 = getCachedStringFromWasm0(arg4, arg5);
|
|
getObject(arg0).replaceState(getObject(arg1), v0, v1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_location_8cc8ccf27e342c0a = function(arg0) {
|
|
const ret = getObject(arg0).location;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_href_bbb11e0e61ea410e = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg1).href;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_document_3ead31dbcad65886 = function(arg0) {
|
|
const ret = getObject(arg0).document;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_title_74f9ffa27e9c750f = function(arg0, arg1) {
|
|
const ret = getObject(arg1).title;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_new_0b9bfdd97583284e = function() {
|
|
const ret = new Object();
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_set_bf3f89b92d5a34bf = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeEventListener_b10f1a66647f3aa0 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
getObject(arg0).removeEventListener(v0, getObject(arg3), arg4 !== 0);
|
|
}, arguments) };
|
|
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
const obj = takeObject(arg0).original;
|
|
if (obj.cnt-- == 1) {
|
|
obj.a = 0;
|
|
return true;
|
|
}
|
|
const ret = false;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_clearTimeout_5b4145302d77e5f3 = typeof clearTimeout == 'function' ? clearTimeout : notDefined('clearTimeout');
|
|
imports.wbg.__wbg_target_bf704b7db7ad1387 = function(arg0) {
|
|
const ret = getObject(arg0).target;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_instanceof_Element_33bd126d58f2021b = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Element;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_type_a86a71d052709b75 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).type;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_parentElement_0cffb3ceb0f107bd = function(arg0) {
|
|
const ret = getObject(arg0).parentElement;
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_instanceof_HtmlElement_eff00d16af7bd6e7 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof HTMLElement;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_preventDefault_3209279b490de583 = function(arg0) {
|
|
getObject(arg0).preventDefault();
|
|
};
|
|
imports.wbg.__wbg_instanceof_HtmlInputElement_970e4026de0fccff = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof HTMLInputElement;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_HtmlFormElement_1c489ff7e99e43d3 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof HTMLFormElement;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_elements_e459ba1be1bb71da = function(arg0) {
|
|
const ret = getObject(arg0).elements;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_length_e015bc7ac630e55b = function(arg0) {
|
|
const ret = getObject(arg0).length;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_item_37cbb972da31ad43 = function(arg0, arg1) {
|
|
const ret = getObject(arg0).item(arg1 >>> 0);
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_instanceof_CompositionEvent_c099782c181693d1 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof CompositionEvent;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_data_8bd9c72cda1424e9 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).data;
|
|
var ptr0 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
var len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_altKey_6dbe46bf3ae42d67 = function(arg0) {
|
|
const ret = getObject(arg0).altKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_charCode_b0f31612a52c2bff = function(arg0) {
|
|
const ret = getObject(arg0).charCode;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_key_ad4fc49423a94efa = function(arg0, arg1) {
|
|
const ret = getObject(arg1).key;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_keyCode_72faed4278f77f2c = function(arg0) {
|
|
const ret = getObject(arg0).keyCode;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_ctrlKey_fd79f035994d9387 = function(arg0) {
|
|
const ret = getObject(arg0).ctrlKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_location_af9a9961ca66ef22 = function(arg0) {
|
|
const ret = getObject(arg0).location;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_metaKey_cdd15bf44efb510e = function(arg0) {
|
|
const ret = getObject(arg0).metaKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_repeat_edc4d7c555e257a3 = function(arg0) {
|
|
const ret = getObject(arg0).repeat;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_shiftKey_908ae224b8722a41 = function(arg0) {
|
|
const ret = getObject(arg0).shiftKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_which_16f59d07cee1a753 = function(arg0) {
|
|
const ret = getObject(arg0).which;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_checked_f0b666100ef39e44 = function(arg0) {
|
|
const ret = getObject(arg0).checked;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_HtmlTextAreaElement_a091a90ac155d1ab = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof HTMLTextAreaElement;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_HtmlSelectElement_e8421685c2eaa299 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof HTMLSelectElement;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_altKey_2b8d6d80ead4bad7 = function(arg0) {
|
|
const ret = getObject(arg0).altKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_button_2bb5dc0116d6b89b = function(arg0) {
|
|
const ret = getObject(arg0).button;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_buttons_047716c1296e3d1c = function(arg0) {
|
|
const ret = getObject(arg0).buttons;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_clientX_e39206f946859108 = function(arg0) {
|
|
const ret = getObject(arg0).clientX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_clientY_e376bb2d8f470c88 = function(arg0) {
|
|
const ret = getObject(arg0).clientY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_ctrlKey_4795fb55a59f026c = function(arg0) {
|
|
const ret = getObject(arg0).ctrlKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_metaKey_49e49046d8402fb7 = function(arg0) {
|
|
const ret = getObject(arg0).metaKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_screenX_bda1387744fb6677 = function(arg0) {
|
|
const ret = getObject(arg0).screenX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_screenY_fa513a5b7d68c34f = function(arg0) {
|
|
const ret = getObject(arg0).screenY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_shiftKey_81014521a7612e6a = function(arg0) {
|
|
const ret = getObject(arg0).shiftKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_pageX_829fdc137b743208 = function(arg0) {
|
|
const ret = getObject(arg0).pageX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_pageY_d67aef101099fd37 = function(arg0) {
|
|
const ret = getObject(arg0).pageY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_pointerId_18be034781db46f3 = function(arg0) {
|
|
const ret = getObject(arg0).pointerId;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_width_4fed142776de682f = function(arg0) {
|
|
const ret = getObject(arg0).width;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_height_fb6382c90e010142 = function(arg0) {
|
|
const ret = getObject(arg0).height;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_pressure_c3ba152bf8a3491d = function(arg0) {
|
|
const ret = getObject(arg0).pressure;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_tangentialPressure_f6bd99bd6df8e15c = function(arg0) {
|
|
const ret = getObject(arg0).tangentialPressure;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_tiltX_fe39b58f39622392 = function(arg0) {
|
|
const ret = getObject(arg0).tiltX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_tiltY_6e725ba5a979ae65 = function(arg0) {
|
|
const ret = getObject(arg0).tiltY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_twist_29056239dbb46cce = function(arg0) {
|
|
const ret = getObject(arg0).twist;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_pointerType_bf6b13edfec8614b = function(arg0, arg1) {
|
|
const ret = getObject(arg1).pointerType;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_isPrimary_8a1c3caca08ecc33 = function(arg0) {
|
|
const ret = getObject(arg0).isPrimary;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_altKey_8643110400698556 = function(arg0) {
|
|
const ret = getObject(arg0).altKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_ctrlKey_f05ebfd7290f66a9 = function(arg0) {
|
|
const ret = getObject(arg0).ctrlKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_metaKey_f0f73554e84cdfb6 = function(arg0) {
|
|
const ret = getObject(arg0).metaKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_shiftKey_dbede4ad30972b26 = function(arg0) {
|
|
const ret = getObject(arg0).shiftKey;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_deltaX_6b627fd6f4c19e51 = function(arg0) {
|
|
const ret = getObject(arg0).deltaX;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_deltaY_a5393ec7ac0f7bb4 = function(arg0) {
|
|
const ret = getObject(arg0).deltaY;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_deltaZ_8d9e7a1ac88162b3 = function(arg0) {
|
|
const ret = getObject(arg0).deltaZ;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_deltaMode_a90be314f5c676f1 = function(arg0) {
|
|
const ret = getObject(arg0).deltaMode;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_elapsedTime_a5dcd61ea72b5e93 = function(arg0) {
|
|
const ret = getObject(arg0).elapsedTime;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_animationName_52b570bbde323225 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).animationName;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_pseudoElement_434c37ac9cf98e15 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).pseudoElement;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_elapsedTime_f71097509836b2f2 = function(arg0) {
|
|
const ret = getObject(arg0).elapsedTime;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_propertyName_6261bc64663a261b = function(arg0, arg1) {
|
|
const ret = getObject(arg1).propertyName;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_pseudoElement_5c39e80f916267a2 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).pseudoElement;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_PushRoot_d77bf2f07d78ee04 = function(arg0, arg1) {
|
|
getObject(arg0).PushRoot(BigInt.asUintN(64, arg1));
|
|
};
|
|
imports.wbg.__wbg_AppendChildren_6d62bb4fe693e279 = function(arg0, arg1) {
|
|
getObject(arg0).AppendChildren(arg1 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_ReplaceWith_8ebcac8be1fb1ca8 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).ReplaceWith(BigInt.asUintN(64, arg1), arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_InsertAfter_f22ec9a3aadcd11d = function(arg0, arg1, arg2) {
|
|
getObject(arg0).InsertAfter(BigInt.asUintN(64, arg1), arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_InsertBefore_c5a8dca846bdfe92 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).InsertBefore(BigInt.asUintN(64, arg1), arg2 >>> 0);
|
|
};
|
|
imports.wbg.__wbg_Remove_49f795846a239f69 = function(arg0, arg1) {
|
|
getObject(arg0).Remove(BigInt.asUintN(64, arg1));
|
|
};
|
|
imports.wbg.__wbg_CreateTextNode_96506678bbad22ec = function(arg0, arg1, arg2) {
|
|
getObject(arg0).CreateTextNode(takeObject(arg1), BigInt.asUintN(64, arg2));
|
|
};
|
|
imports.wbg.__wbg_CreateElement_3def0fedd162d196 = function(arg0, arg1, arg2, arg3) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
getObject(arg0).CreateElement(v0, BigInt.asUintN(64, arg3));
|
|
};
|
|
imports.wbg.__wbg_CreateElementNs_8bf15ccda6dbcc6d = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
var v1 = getCachedStringFromWasm0(arg4, arg5);
|
|
getObject(arg0).CreateElementNs(v0, BigInt.asUintN(64, arg3), v1);
|
|
};
|
|
imports.wbg.__wbg_CreatePlaceholder_0d13c892ea9189a7 = function(arg0, arg1) {
|
|
getObject(arg0).CreatePlaceholder(BigInt.asUintN(64, arg1));
|
|
};
|
|
imports.wbg.__wbg_NewEventListener_1191f0ffe7726998 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
getObject(arg0).NewEventListener(v0, BigInt.asUintN(64, arg3), getObject(arg4));
|
|
};
|
|
imports.wbg.__wbg_RemoveEventListener_b89963320b7e7fec = function(arg0, arg1, arg2, arg3) {
|
|
var v0 = getCachedStringFromWasm0(arg2, arg3);
|
|
getObject(arg0).RemoveEventListener(BigInt.asUintN(64, arg1), v0);
|
|
};
|
|
imports.wbg.__wbg_SetText_805dc255ca48ee91 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).SetText(BigInt.asUintN(64, arg1), takeObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_SetAttribute_eb74ba21b8a1196f = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
var v0 = getCachedStringFromWasm0(arg2, arg3);
|
|
var v1 = getCachedStringFromWasm0(arg5, arg6);
|
|
getObject(arg0).SetAttribute(BigInt.asUintN(64, arg1), v0, takeObject(arg4), v1);
|
|
};
|
|
imports.wbg.__wbg_RemoveAttribute_ff4184d97eafc3f8 = function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
var v0 = getCachedStringFromWasm0(arg2, arg3);
|
|
var v1 = getCachedStringFromWasm0(arg4, arg5);
|
|
getObject(arg0).RemoveAttribute(BigInt.asUintN(64, arg1), v0, v1);
|
|
};
|
|
imports.wbg.__wbg_PopRoot_e5d3ec5dea882a1d = function(arg0) {
|
|
getObject(arg0).PopRoot();
|
|
};
|
|
imports.wbg.__wbg_childNodes_7345d62ab4ea541a = function(arg0) {
|
|
const ret = getObject(arg0).childNodes;
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_get_eff2c5e76f778292 = function(arg0, arg1) {
|
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_SetNode_e348a2373658c0e5 = function(arg0, arg1, arg2) {
|
|
getObject(arg0).SetNode(arg1 >>> 0, takeObject(arg2));
|
|
};
|
|
imports.wbg.__wbg_setAttribute_d8436c14a59ab1af = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
var v1 = getCachedStringFromWasm0(arg3, arg4);
|
|
getObject(arg0).setAttribute(v0, v1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_instanceof_Text_6855016c7825859b = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Text;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_getElementById_3a708b83e4f034d7 = function(arg0, arg1, arg2) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
const ret = getObject(arg0).getElementById(v0);
|
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_createElement_976dbb84fe1661b5 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
const ret = getObject(arg0).createElement(v0);
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_67f219e1431f9bfb = function(arg0) {
|
|
const ret = new Interpreter(takeObject(arg0));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_instanceof_Node_b1195878cdeab85c = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Node;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_settextContent_538ceb17614272d8 = function(arg0, arg1, arg2) {
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
|
getObject(arg0).textContent = v0;
|
|
};
|
|
imports.wbg.__wbg_instanceof_Object_595a1007518cbea3 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Object;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_hasOwnProperty_43f5b0861e010743 = function(arg0, arg1) {
|
|
const ret = getObject(arg0).hasOwnProperty(getObject(arg1));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_newnoargs_b5b063fc6c2f0376 = function(arg0, arg1) {
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
|
const ret = new Function(v0);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_call_97ae9d8645dc388b = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).call(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbindgen_is_function = function(arg0) {
|
|
const ret = typeof(getObject(arg0)) === 'function';
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_requestAnimationFrame_4181656476a7d86c = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).requestAnimationFrame(getObject(arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_requestIdleCallback_a0421b878285ed65 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).requestIdleCallback(getObject(arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setTimeout_02c3975efb677088 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = setTimeout(getObject(arg0), arg1);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_instanceof_IdleDeadline_4a82da4e4c7002fc = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof IdleDeadline;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_timeRemaining_5c5c26712f275485 = function(arg0) {
|
|
const ret = getObject(arg0).timeRemaining();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_self_6d479506f72c6a71 = function() { return handleError(function () {
|
|
const ret = self.self;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_window_f2557cc78490aceb = function() { return handleError(function () {
|
|
const ret = window.window;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_globalThis_7f206bda628d5286 = function() { return handleError(function () {
|
|
const ret = globalThis.globalThis;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_global_ba75c50d1cf384f4 = function() { return handleError(function () {
|
|
const ret = global.global;
|
|
return addHeapObject(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
|
const ret = getObject(arg0) === undefined;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
const ret = debugString(getObject(arg1));
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_measure_aa7a73f17813f708 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
|
if (arg0 !== 0) { wasm.__wbindgen_export_7(arg0, arg1); }
|
|
var v1 = getCachedStringFromWasm0(arg2, arg3);
|
|
if (arg2 !== 0) { wasm.__wbindgen_export_7(arg2, arg3); }
|
|
performance.measure(v0, v1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_mark_40e050a77cc39fea = function(arg0, arg1) {
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
|
performance.mark(v0);
|
|
};
|
|
imports.wbg.__wbg_log_c9486ca5d8e2cbe8 = function(arg0, arg1) {
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
|
if (arg0 !== 0) { wasm.__wbindgen_export_7(arg0, arg1); }
|
|
console.log(v0);
|
|
};
|
|
imports.wbg.__wbg_log_aba5996d9bde071f = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
|
if (arg0 !== 0) { wasm.__wbindgen_export_7(arg0, arg1); }
|
|
var v1 = getCachedStringFromWasm0(arg2, arg3);
|
|
var v2 = getCachedStringFromWasm0(arg4, arg5);
|
|
var v3 = getCachedStringFromWasm0(arg6, arg7);
|
|
console.log(v0, v1, v2, v3);
|
|
};
|
|
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
};
|
|
imports.wbg.__wbg_resolve_99fe17964f31ffc0 = function(arg0) {
|
|
const ret = Promise.resolve(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_then_11f7a54d67b4bfad = function(arg0, arg1) {
|
|
const ret = getObject(arg0).then(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbg_textContent_77bd294928962f93 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).textContent;
|
|
var ptr0 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
var len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_instanceof_Window_acc97ff9f5d2c7b4 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Window;
|
|
} catch {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_value_ccb32485ee1b3928 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).value;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_getAttribute_3a1f0fb396184372 = function(arg0, arg1, arg2, arg3) {
|
|
var v0 = getCachedStringFromWasm0(arg2, arg3);
|
|
const ret = getObject(arg1).getAttribute(v0);
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
};
|
|
imports.wbg.__wbg_type_6ce8af5475dcc48f = function(arg0, arg1) {
|
|
const ret = getObject(arg1).type;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_value_b2a620d34c663701 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).value;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbg_value_2527a85fd5ada680 = function(arg0, arg1) {
|
|
const ret = getObject(arg1).value;
|
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper435 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 18, __wbg_adapter_18);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper575 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 18, __wbg_adapter_18);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper576 = function(arg0, arg1, arg2) {
|
|
const ret = makeClosure(arg0, arg1, 18, __wbg_adapter_23);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper577 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 18, __wbg_adapter_26);
|
|
return addHeapObject(ret);
|
|
};
|
|
imports.wbg.__wbindgen_closure_wrapper1708 = function(arg0, arg1, arg2) {
|
|
const ret = makeMutClosure(arg0, arg1, 18, __wbg_adapter_29);
|
|
return addHeapObject(ret);
|
|
};
|
|
|
|
return imports;
|
|
}
|
|
|
|
function initMemory(imports, maybe_memory) {
|
|
|
|
}
|
|
|
|
function finalizeInit(instance, module) {
|
|
wasm = instance.exports;
|
|
init.__wbindgen_wasm_module = module;
|
|
cachedInt32Memory0 = new Int32Array();
|
|
cachedUint8Memory0 = new Uint8Array();
|
|
|
|
|
|
return wasm;
|
|
}
|
|
|
|
function initSync(module) {
|
|
const imports = getImports();
|
|
|
|
initMemory(imports);
|
|
|
|
if (!(module instanceof WebAssembly.Module)) {
|
|
module = new WebAssembly.Module(module);
|
|
}
|
|
|
|
const instance = new WebAssembly.Instance(module, imports);
|
|
|
|
return finalizeInit(instance, module);
|
|
}
|
|
|
|
async function init(input) {
|
|
if (typeof input === 'undefined') {
|
|
input = new URL('r-dashboard-5519b63f005514a8_bg.wasm', import.meta.url);
|
|
}
|
|
const imports = getImports();
|
|
|
|
if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) {
|
|
input = fetch(input);
|
|
}
|
|
|
|
initMemory(imports);
|
|
|
|
const { instance, module } = await load(await input, imports);
|
|
|
|
return finalizeInit(instance, module);
|
|
}
|
|
|
|
export { initSync }
|
|
export default init;
|