aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/static/teleterm_web.js
diff options
context:
space:
mode:
Diffstat (limited to 'teleterm/static/teleterm_web.js')
-rw-r--r--teleterm/static/teleterm_web.js316
1 files changed, 164 insertions, 152 deletions
diff --git a/teleterm/static/teleterm_web.js b/teleterm/static/teleterm_web.js
index 82cd6a4..e863f35 100644
--- a/teleterm/static/teleterm_web.js
+++ b/teleterm/static/teleterm_web.js
@@ -18,31 +18,31 @@ function addHeapObject(obj) {
return idx;
}
function __wbg_elem_binding0(arg0, arg1, arg2) {
- wasm.__wbg_function_table.get(2)(arg0, arg1, addHeapObject(arg2));
+ wasm.__wbg_function_table.get(62)(arg0, arg1, addHeapObject(arg2));
}
function __wbg_elem_binding1(arg0, arg1, arg2) {
- wasm.__wbg_function_table.get(6)(arg0, arg1, arg2);
+ wasm.__wbg_function_table.get(62)(arg0, arg1, addHeapObject(arg2));
}
-function __wbg_elem_binding2(arg0, arg1) {
- wasm.__wbg_function_table.get(38)(arg0, arg1);
+function __wbg_elem_binding2(arg0, arg1, arg2) {
+ wasm.__wbg_function_table.get(61)(arg0, arg1, arg2);
}
function __wbg_elem_binding3(arg0, arg1, arg2) {
- wasm.__wbg_function_table.get(2)(arg0, arg1, addHeapObject(arg2));
+ wasm.__wbg_function_table.get(62)(arg0, arg1, addHeapObject(arg2));
}
function __wbg_elem_binding4(arg0, arg1, arg2) {
- wasm.__wbg_function_table.get(2)(arg0, arg1, addHeapObject(arg2));
+ wasm.__wbg_function_table.get(62)(arg0, arg1, addHeapObject(arg2));
}
function __wbg_elem_binding5(arg0, arg1, arg2) {
- wasm.__wbg_function_table.get(2)(arg0, arg1, addHeapObject(arg2));
+ wasm.__wbg_function_table.get(62)(arg0, arg1, addHeapObject(arg2));
}
-function __wbg_elem_binding6(arg0, arg1, arg2) {
- wasm.__wbg_function_table.get(2)(arg0, arg1, addHeapObject(arg2));
+function __wbg_elem_binding6(arg0, arg1) {
+ wasm.__wbg_function_table.get(31)(arg0, arg1);
}
function __wbg_elem_binding7(arg0, arg1, arg2, arg3, arg4) {
- wasm.__wbg_function_table.get(22)(arg0, arg1, addHeapObject(arg2), arg3, addHeapObject(arg4));
+ wasm.__wbg_function_table.get(17)(arg0, arg1, addHeapObject(arg2), arg3, addHeapObject(arg4));
}
function __wbg_elem_binding8(arg0, arg1, arg2, arg3) {
- wasm.__wbg_function_table.get(26)(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
+ wasm.__wbg_function_table.get(21)(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
}
/**
*/
@@ -64,6 +64,8 @@ function takeObject(idx) {
return ret;
}
+function notDefined(what) { return () => { throw new Error(`${what} is not defined`); }; }
+
function isLikeNone(x) {
return x === undefined || x === null;
}
@@ -216,8 +218,6 @@ function debugString(val) {
return className;
}
-function notDefined(what) { return () => { throw new Error(`${what} is not defined`); }; }
-
function init(module) {
if (typeof module === 'undefined') {
module = import.meta.url.replace(/\.js$/, '_bg.wasm');
@@ -225,6 +225,9 @@ function init(module) {
let result;
const imports = {};
imports.wbg = {};
+ imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
+ takeObject(arg0);
+ };
imports.wbg.__wbindgen_cb_drop = function(arg0) {
const obj = takeObject(arg0).original;
if (obj.cnt-- == 1) {
@@ -234,89 +237,56 @@ function init(module) {
const ret = false;
return ret;
};
- imports.wbg.__widl_f_target_Event = function(arg0) {
- const ret = getObject(arg0).target;
+ imports.wbg.__wbg_clearTimeout_42a8676f07d366c5 = typeof clearTimeout == 'function' ? clearTimeout : notDefined('clearTimeout');
+ imports.wbg.__widl_f_first_child_Node = function(arg0) {
+ const ret = getObject(arg0).firstChild;
return isLikeNone(ret) ? 0 : addHeapObject(ret);
};
- imports.wbg.__widl_instanceof_Element = function(arg0) {
- const ret = getObject(arg0) instanceof Element;
- return ret;
- };
- imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
- takeObject(arg0);
+ imports.wbg.__widl_f_next_sibling_Node = function(arg0) {
+ const ret = getObject(arg0).nextSibling;
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
};
- imports.wbg.__widl_f_closest_Element = function(arg0, arg1, arg2) {
+ imports.wbg.__widl_f_remove_child_Node = function(arg0, arg1) {
try {
- const ret = getObject(arg0).closest(getStringFromWasm(arg1, arg2));
- return isLikeNone(ret) ? 0 : addHeapObject(ret);
+ const ret = getObject(arg0).removeChild(getObject(arg1));
+ return addHeapObject(ret);
} catch (e) {
handleError(e)
}
};
- imports.wbg.__widl_f_tag_name_Element = function(arg0, arg1) {
- const ret = getObject(arg1).tagName;
- const ret0 = passStringToWasm(ret);
- const ret1 = WASM_VECTOR_LEN;
- getInt32Memory()[arg0 / 4 + 0] = ret0;
- getInt32Memory()[arg0 / 4 + 1] = ret1;
- };
- imports.wbg.__widl_f_get_attribute_Element = function(arg0, arg1, arg2, arg3) {
- const ret = getObject(arg1).getAttribute(getStringFromWasm(arg2, arg3));
- const ptr0 = isLikeNone(ret) ? 0 : passStringToWasm(ret);
- const len0 = WASM_VECTOR_LEN;
- const ret0 = ptr0;
- const ret1 = len0;
- getInt32Memory()[arg0 / 4 + 0] = ret0;
- getInt32Memory()[arg0 / 4 + 1] = ret1;
- };
- imports.wbg.__widl_f_prevent_default_Event = function(arg0) {
- getObject(arg0).preventDefault();
- };
- imports.wbg.__wbindgen_json_parse = function(arg0, arg1) {
- const ret = JSON.parse(getStringFromWasm(arg0, arg1));
+ imports.wbg.__widl_f_create_text_node_Document = function(arg0, arg1, arg2) {
+ const ret = getObject(arg0).createTextNode(getStringFromWasm(arg1, arg2));
return addHeapObject(ret);
};
- imports.wbg.__widl_f_history_Window = function(arg0) {
- try {
- const ret = getObject(arg0).history;
- return addHeapObject(ret);
- } catch (e) {
- handleError(e)
- }
+ imports.wbg.__widl_instanceof_Node = function(arg0) {
+ const ret = getObject(arg0) instanceof Node;
+ return ret;
};
- imports.wbg.__widl_f_push_state_with_url_History = function(arg0, arg1, arg2, arg3, arg4, arg5) {
+ imports.wbg.__widl_f_replace_child_Node = function(arg0, arg1, arg2) {
try {
- getObject(arg0).pushState(getObject(arg1), getStringFromWasm(arg2, arg3), arg4 === 0 ? undefined : getStringFromWasm(arg4, arg5));
+ const ret = getObject(arg0).replaceChild(getObject(arg1), getObject(arg2));
+ return addHeapObject(ret);
} catch (e) {
handleError(e)
}
};
- imports.wbg.__widl_instanceof_PopStateEvent = function(arg0) {
- const ret = getObject(arg0) instanceof PopStateEvent;
- return ret;
+ imports.wbg.__widl_f_set_text_content_Node = function(arg0, arg1, arg2) {
+ getObject(arg0).textContent = arg1 === 0 ? undefined : getStringFromWasm(arg1, arg2);
};
- imports.wbg.__widl_f_state_PopStateEvent = function(arg0) {
- const ret = getObject(arg0).state;
+ imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
+ const ret = getObject(arg0);
return addHeapObject(ret);
};
- imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
- const obj = getObject(arg0);
- if (typeof(obj) !== 'string') return 0;
- const ptr = passStringToWasm(obj);
- getUint32Memory()[arg1 / 4] = WASM_VECTOR_LEN;
- const ret = ptr;
- return ret;
- };
- imports.wbg.__widl_instanceof_HashChangeEvent = function(arg0) {
- const ret = getObject(arg0) instanceof HashChangeEvent;
+ imports.wbg.__widl_instanceof_Element = function(arg0) {
+ const ret = getObject(arg0) instanceof Element;
return ret;
};
- imports.wbg.__widl_f_new_url_HashChangeEvent = function(arg0, arg1) {
- const ret = getObject(arg1).newURL;
- const ret0 = passStringToWasm(ret);
- const ret1 = WASM_VECTOR_LEN;
- getInt32Memory()[arg0 / 4 + 0] = ret0;
- getInt32Memory()[arg0 / 4 + 1] = ret1;
+ imports.wbg.__widl_f_remove_attribute_Element = function(arg0, arg1, arg2) {
+ try {
+ getObject(arg0).removeAttribute(getStringFromWasm(arg1, arg2));
+ } catch (e) {
+ handleError(e)
+ }
};
imports.wbg.__widl_f_status_text_Response = function(arg0, arg1) {
const ret = getObject(arg1).statusText;
@@ -329,9 +299,13 @@ function init(module) {
const ret = getObject(arg0).status;
return ret;
};
- imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
- const ret = getObject(arg0);
- return addHeapObject(ret);
+ imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
+ const obj = getObject(arg0);
+ if (typeof(obj) !== 'string') return 0;
+ const ptr = passStringToWasm(obj);
+ getUint32Memory()[arg1 / 4] = WASM_VECTOR_LEN;
+ const ret = ptr;
+ return ret;
};
imports.wbg.__wbg_new_59cb74e423758ede = function() {
const ret = new Error();
@@ -408,13 +382,6 @@ function init(module) {
const ret = getObject(arg0).nodeType;
return ret;
};
- imports.wbg.__widl_f_remove_attribute_Element = function(arg0, arg1, arg2) {
- try {
- getObject(arg0).removeAttribute(getStringFromWasm(arg1, arg2));
- } catch (e) {
- handleError(e)
- }
- };
imports.wbg.__widl_f_append_child_Node = function(arg0, arg1) {
try {
const ret = getObject(arg0).appendChild(getObject(arg1));
@@ -536,7 +503,6 @@ function init(module) {
imports.wbg.__widl_f_set_checked_HTMLMenuItemElement = function(arg0, arg1) {
getObject(arg0).checked = arg1 !== 0;
};
- imports.wbg.__wbg_clearTimeout_42a8676f07d366c5 = typeof clearTimeout == 'function' ? clearTimeout : notDefined('clearTimeout');
imports.wbg.__widl_f_abort_AbortController = function(arg0) {
getObject(arg0).abort();
};
@@ -598,14 +564,6 @@ function init(module) {
handleError(e)
}
};
- imports.wbg.__widl_f_create_text_node_Document = function(arg0, arg1, arg2) {
- const ret = getObject(arg0).createTextNode(getStringFromWasm(arg1, arg2));
- return addHeapObject(ret);
- };
- imports.wbg.__widl_instanceof_Node = function(arg0) {
- const ret = getObject(arg0) instanceof Node;
- return ret;
- };
imports.wbg.__widl_instanceof_HTMLElement = function(arg0) {
const ret = getObject(arg0) instanceof HTMLElement;
return ret;
@@ -617,52 +575,106 @@ function init(module) {
handleError(e)
}
};
- imports.wbg.__widl_f_first_child_Node = function(arg0) {
- const ret = getObject(arg0).firstChild;
- return isLikeNone(ret) ? 0 : addHeapObject(ret);
+ imports.wbg.__widl_f_add_event_listener_with_callback_EventTarget = function(arg0, arg1, arg2, arg3) {
+ try {
+ getObject(arg0).addEventListener(getStringFromWasm(arg1, arg2), getObject(arg3));
+ } catch (e) {
+ handleError(e)
+ }
};
- imports.wbg.__widl_f_next_sibling_Node = function(arg0) {
- const ret = getObject(arg0).nextSibling;
- return isLikeNone(ret) ? 0 : addHeapObject(ret);
+ imports.wbg.__wbg_resolve_04ca3cb0d333a4f0 = function(arg0) {
+ const ret = Promise.resolve(getObject(arg0));
+ return addHeapObject(ret);
};
- imports.wbg.__widl_f_remove_child_Node = function(arg0, arg1) {
+ imports.wbg.__widl_f_request_animation_frame_Window = function(arg0, arg1) {
try {
- const ret = getObject(arg0).removeChild(getObject(arg1));
- return addHeapObject(ret);
+ const ret = getObject(arg0).requestAnimationFrame(getObject(arg1));
+ return ret;
} catch (e) {
handleError(e)
}
};
- imports.wbg.__widl_f_replace_child_Node = function(arg0, arg1, arg2) {
+ imports.wbg.__wbg_static_accessor_TELETERM_CONFIG_82484f76e33c0b8c = function() {
+ const ret = TELETERM_CONFIG;
+ return addHeapObject(ret);
+ };
+ imports.wbg.__wbindgen_json_serialize = function(arg0, arg1) {
+ const obj = getObject(arg1);
+ const ret = JSON.stringify(obj === undefined ? null : obj);
+ const ret0 = passStringToWasm(ret);
+ const ret1 = WASM_VECTOR_LEN;
+ getInt32Memory()[arg0 / 4 + 0] = ret0;
+ getInt32Memory()[arg0 / 4 + 1] = ret1;
+ };
+ imports.wbg.__widl_f_target_Event = function(arg0) {
+ const ret = getObject(arg0).target;
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
+ };
+ imports.wbg.__widl_f_closest_Element = function(arg0, arg1, arg2) {
try {
- const ret = getObject(arg0).replaceChild(getObject(arg1), getObject(arg2));
- return addHeapObject(ret);
+ const ret = getObject(arg0).closest(getStringFromWasm(arg1, arg2));
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
} catch (e) {
handleError(e)
}
};
- imports.wbg.__widl_f_set_text_content_Node = function(arg0, arg1, arg2) {
- getObject(arg0).textContent = arg1 === 0 ? undefined : getStringFromWasm(arg1, arg2);
+ imports.wbg.__widl_f_tag_name_Element = function(arg0, arg1) {
+ const ret = getObject(arg1).tagName;
+ const ret0 = passStringToWasm(ret);
+ const ret1 = WASM_VECTOR_LEN;
+ getInt32Memory()[arg0 / 4 + 0] = ret0;
+ getInt32Memory()[arg0 / 4 + 1] = ret1;
};
- imports.wbg.__wbg_resolve_04ca3cb0d333a4f0 = function(arg0) {
- const ret = Promise.resolve(getObject(arg0));
+ imports.wbg.__widl_f_get_attribute_Element = function(arg0, arg1, arg2, arg3) {
+ const ret = getObject(arg1).getAttribute(getStringFromWasm(arg2, arg3));
+ const ptr0 = isLikeNone(ret) ? 0 : passStringToWasm(ret);
+ const len0 = WASM_VECTOR_LEN;
+ const ret0 = ptr0;
+ const ret1 = len0;
+ getInt32Memory()[arg0 / 4 + 0] = ret0;
+ getInt32Memory()[arg0 / 4 + 1] = ret1;
+ };
+ imports.wbg.__widl_f_prevent_default_Event = function(arg0) {
+ getObject(arg0).preventDefault();
+ };
+ imports.wbg.__wbindgen_json_parse = function(arg0, arg1) {
+ const ret = JSON.parse(getStringFromWasm(arg0, arg1));
return addHeapObject(ret);
};
- imports.wbg.__widl_f_add_event_listener_with_callback_EventTarget = function(arg0, arg1, arg2, arg3) {
+ imports.wbg.__widl_f_history_Window = function(arg0) {
try {
- getObject(arg0).addEventListener(getStringFromWasm(arg1, arg2), getObject(arg3));
+ const ret = getObject(arg0).history;
+ return addHeapObject(ret);
} catch (e) {
handleError(e)
}
};
- imports.wbg.__widl_f_request_animation_frame_Window = function(arg0, arg1) {
+ imports.wbg.__widl_f_push_state_with_url_History = function(arg0, arg1, arg2, arg3, arg4, arg5) {
try {
- const ret = getObject(arg0).requestAnimationFrame(getObject(arg1));
- return ret;
+ getObject(arg0).pushState(getObject(arg1), getStringFromWasm(arg2, arg3), arg4 === 0 ? undefined : getStringFromWasm(arg4, arg5));
} catch (e) {
handleError(e)
}
};
+ imports.wbg.__widl_instanceof_PopStateEvent = function(arg0) {
+ const ret = getObject(arg0) instanceof PopStateEvent;
+ return ret;
+ };
+ imports.wbg.__widl_f_state_PopStateEvent = function(arg0) {
+ const ret = getObject(arg0).state;
+ return addHeapObject(ret);
+ };
+ imports.wbg.__widl_instanceof_HashChangeEvent = function(arg0) {
+ const ret = getObject(arg0) instanceof HashChangeEvent;
+ return ret;
+ };
+ imports.wbg.__widl_f_new_url_HashChangeEvent = function(arg0, arg1) {
+ const ret = getObject(arg1).newURL;
+ const ret0 = passStringToWasm(ret);
+ const ret1 = WASM_VECTOR_LEN;
+ getInt32Memory()[arg0 / 4 + 0] = ret0;
+ getInt32Memory()[arg0 / 4 + 1] = ret1;
+ };
imports.wbg.__widl_f_get_attribute_names_Element = function(arg0) {
const ret = getObject(arg0).getAttributeNames();
return addHeapObject(ret);
@@ -714,21 +726,6 @@ function init(module) {
getInt32Memory()[arg0 / 4 + 0] = ret0;
getInt32Memory()[arg0 / 4 + 1] = ret1;
};
- imports.wbg.__widl_f_error_1_ = function(arg0) {
- console.error(getObject(arg0));
- };
- imports.wbg.__widl_f_query_selector_Document = function(arg0, arg1, arg2) {
- try {
- const ret = getObject(arg0).querySelector(getStringFromWasm(arg1, arg2));
- return isLikeNone(ret) ? 0 : addHeapObject(ret);
- } catch (e) {
- handleError(e)
- }
- };
- imports.wbg.__widl_f_get_element_by_id_Document = function(arg0, arg1, arg2) {
- const ret = getObject(arg0).getElementById(getStringFromWasm(arg1, arg2));
- return isLikeNone(ret) ? 0 : addHeapObject(ret);
- };
imports.wbg.__wbg_new_de17f04ab3be4063 = function() {
const ret = new Object();
return addHeapObject(ret);
@@ -776,6 +773,9 @@ function init(module) {
handleError(e)
}
};
+ imports.wbg.__widl_f_error_1_ = function(arg0) {
+ console.error(getObject(arg0));
+ };
imports.wbg.__widl_f_remove_event_listener_with_callback_EventTarget = function(arg0, arg1, arg2, arg3) {
try {
getObject(arg0).removeEventListener(getStringFromWasm(arg1, arg2), getObject(arg3));
@@ -783,6 +783,18 @@ function init(module) {
handleError(e)
}
};
+ imports.wbg.__widl_f_query_selector_Document = function(arg0, arg1, arg2) {
+ try {
+ const ret = getObject(arg0).querySelector(getStringFromWasm(arg1, arg2));
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
+ } catch (e) {
+ handleError(e)
+ }
+ };
+ imports.wbg.__widl_f_get_element_by_id_Document = function(arg0, arg1, arg2) {
+ const ret = getObject(arg0).getElementById(getStringFromWasm(arg1, arg2));
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
+ };
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
throw new Error(getStringFromWasm(arg0, arg1));
};
@@ -884,16 +896,16 @@ function init(module) {
imports.wbg.__widl_f_warn_1_ = function(arg0) {
console.warn(getObject(arg0));
};
- imports.wbg.__wbindgen_closure_wrapper126 = function(arg0, arg1, arg2) {
+ imports.wbg.__wbindgen_closure_wrapper673 = function(arg0, arg1, arg2) {
const state = { a: arg0, b: arg1, cnt: 1 };
const real = (arg0) => {
state.cnt++;
const a = state.a;
state.a = 0;
try {
- return __wbg_elem_binding3(a, state.b, arg0);
+ return __wbg_elem_binding2(a, state.b, arg0);
} finally {
- if (--state.cnt === 0) wasm.__wbg_function_table.get(3)(a, state.b);
+ if (--state.cnt === 0) wasm.__wbg_function_table.get(32)(a, state.b);
else state.a = a;
}
}
@@ -902,16 +914,16 @@ function init(module) {
const ret = real;
return addHeapObject(ret);
};
- imports.wbg.__wbindgen_closure_wrapper133 = function(arg0, arg1, arg2) {
+ imports.wbg.__wbindgen_closure_wrapper604 = function(arg0, arg1, arg2) {
const state = { a: arg0, b: arg1, cnt: 1 };
const real = (arg0) => {
state.cnt++;
const a = state.a;
state.a = 0;
try {
- return __wbg_elem_binding5(a, state.b, arg0);
+ return __wbg_elem_binding4(a, state.b, arg0);
} finally {
- if (--state.cnt === 0) wasm.__wbg_function_table.get(3)(a, state.b);
+ if (--state.cnt === 0) wasm.__wbg_function_table.get(32)(a, state.b);
else state.a = a;
}
}
@@ -920,16 +932,16 @@ function init(module) {
const ret = real;
return addHeapObject(ret);
};
- imports.wbg.__wbindgen_closure_wrapper525 = function(arg0, arg1, arg2) {
+ imports.wbg.__wbindgen_closure_wrapper605 = function(arg0, arg1, arg2) {
const state = { a: arg0, b: arg1, cnt: 1 };
- const real = () => {
+ const real = (arg0) => {
state.cnt++;
const a = state.a;
state.a = 0;
try {
- return __wbg_elem_binding2(a, state.b, );
+ return __wbg_elem_binding0(a, state.b, arg0);
} finally {
- if (--state.cnt === 0) wasm.__wbg_function_table.get(3)(a, state.b);
+ if (--state.cnt === 0) wasm.__wbg_function_table.get(32)(a, state.b);
else state.a = a;
}
}
@@ -938,16 +950,16 @@ function init(module) {
const ret = real;
return addHeapObject(ret);
};
- imports.wbg.__wbindgen_closure_wrapper789 = function(arg0, arg1, arg2) {
+ imports.wbg.__wbindgen_closure_wrapper506 = function(arg0, arg1, arg2) {
const state = { a: arg0, b: arg1, cnt: 1 };
- const real = (arg0) => {
+ const real = () => {
state.cnt++;
const a = state.a;
state.a = 0;
try {
- return __wbg_elem_binding4(a, state.b, arg0);
+ return __wbg_elem_binding6(a, state.b, );
} finally {
- if (--state.cnt === 0) wasm.__wbg_function_table.get(3)(a, state.b);
+ if (--state.cnt === 0) wasm.__wbg_function_table.get(32)(a, state.b);
else state.a = a;
}
}
@@ -956,16 +968,16 @@ function init(module) {
const ret = real;
return addHeapObject(ret);
};
- imports.wbg.__wbindgen_closure_wrapper128 = function(arg0, arg1, arg2) {
+ imports.wbg.__wbindgen_closure_wrapper603 = function(arg0, arg1, arg2) {
const state = { a: arg0, b: arg1, cnt: 1 };
const real = (arg0) => {
state.cnt++;
const a = state.a;
state.a = 0;
try {
- return __wbg_elem_binding6(a, state.b, arg0);
+ return __wbg_elem_binding3(a, state.b, arg0);
} finally {
- if (--state.cnt === 0) wasm.__wbg_function_table.get(3)(a, state.b);
+ if (--state.cnt === 0) wasm.__wbg_function_table.get(32)(a, state.b);
else state.a = a;
}
}
@@ -974,16 +986,16 @@ function init(module) {
const ret = real;
return addHeapObject(ret);
};
- imports.wbg.__wbindgen_closure_wrapper130 = function(arg0, arg1, arg2) {
+ imports.wbg.__wbindgen_closure_wrapper665 = function(arg0, arg1, arg2) {
const state = { a: arg0, b: arg1, cnt: 1 };
const real = (arg0) => {
state.cnt++;
const a = state.a;
state.a = 0;
try {
- return __wbg_elem_binding0(a, state.b, arg0);
+ return __wbg_elem_binding5(a, state.b, arg0);
} finally {
- if (--state.cnt === 0) wasm.__wbg_function_table.get(3)(a, state.b);
+ if (--state.cnt === 0) wasm.__wbg_function_table.get(32)(a, state.b);
else state.a = a;
}
}
@@ -992,7 +1004,7 @@ function init(module) {
const ret = real;
return addHeapObject(ret);
};
- imports.wbg.__wbindgen_closure_wrapper131 = function(arg0, arg1, arg2) {
+ imports.wbg.__wbindgen_closure_wrapper794 = function(arg0, arg1, arg2) {
const state = { a: arg0, b: arg1, cnt: 1 };
const real = (arg0) => {
state.cnt++;
@@ -1001,7 +1013,7 @@ function init(module) {
try {
return __wbg_elem_binding1(a, state.b, arg0);
} finally {
- if (--state.cnt === 0) wasm.__wbg_function_table.get(3)(a, state.b);
+ if (--state.cnt === 0) wasm.__wbg_function_table.get(32)(a, state.b);
else state.a = a;
}
}