@duckdb/duckdb-wasm-shell 1.29.1-dev59.0 → 1.29.1-dev68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/img/duckdb_version_badge.svg +1 -1
- package/dist/shell.cjs +134 -128
- package/dist/shell.cjs.map +2 -2
- package/dist/shell.js +134 -128
- package/dist/shell.js.map +2 -2
- package/dist/shell.mjs +134 -128
- package/dist/shell.mjs.map +3 -3
- package/dist/shell_bg.wasm +0 -0
- package/package.json +2 -2
package/dist/shell.js
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
// package.json
|
|
34
34
|
var package_default = {
|
|
35
35
|
name: "@duckdb/duckdb-wasm-shell",
|
|
36
|
-
version: "1.29.1-
|
|
36
|
+
version: "1.29.1-dev68.0",
|
|
37
37
|
description: "",
|
|
38
38
|
author: "Andre Kohn <kohn.a@outlook.com>",
|
|
39
39
|
license: "MIT",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"csv"
|
|
58
58
|
],
|
|
59
59
|
dependencies: {
|
|
60
|
-
"@duckdb/duckdb-wasm": "^1.29.1-
|
|
60
|
+
"@duckdb/duckdb-wasm": "^1.29.1-dev68.0",
|
|
61
61
|
xterm: "^5.3.0",
|
|
62
62
|
"xterm-addon-fit": "^0.8.0",
|
|
63
63
|
"xterm-addon-web-links": "^0.9.0",
|
|
@@ -309,32 +309,6 @@
|
|
|
309
309
|
function __wbg_adapter_25(arg0, arg1, arg2) {
|
|
310
310
|
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h355634d0f2bf5e5e(arg0, arg1, addHeapObject(arg2));
|
|
311
311
|
}
|
|
312
|
-
var cachedUint32Memory0 = null;
|
|
313
|
-
function getUint32Memory0() {
|
|
314
|
-
if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
|
|
315
|
-
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
|
316
|
-
}
|
|
317
|
-
return cachedUint32Memory0;
|
|
318
|
-
}
|
|
319
|
-
function passArray32ToWasm0(arg, malloc) {
|
|
320
|
-
const ptr = malloc(arg.length * 4, 4) >>> 0;
|
|
321
|
-
getUint32Memory0().set(arg, ptr / 4);
|
|
322
|
-
WASM_VECTOR_LEN = arg.length;
|
|
323
|
-
return ptr;
|
|
324
|
-
}
|
|
325
|
-
function passArray8ToWasm0(arg, malloc) {
|
|
326
|
-
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
327
|
-
getUint8Memory0().set(arg, ptr / 1);
|
|
328
|
-
WASM_VECTOR_LEN = arg.length;
|
|
329
|
-
return ptr;
|
|
330
|
-
}
|
|
331
|
-
function handleError(f, args) {
|
|
332
|
-
try {
|
|
333
|
-
return f.apply(this, args);
|
|
334
|
-
} catch (e) {
|
|
335
|
-
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
312
|
function embed(elem, runtime, options) {
|
|
339
313
|
try {
|
|
340
314
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
@@ -383,7 +357,33 @@
|
|
|
383
357
|
const ret = wasm.configureDatabase(addHeapObject(db));
|
|
384
358
|
return takeObject(ret);
|
|
385
359
|
}
|
|
386
|
-
|
|
360
|
+
var cachedUint32Memory0 = null;
|
|
361
|
+
function getUint32Memory0() {
|
|
362
|
+
if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
|
|
363
|
+
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
|
364
|
+
}
|
|
365
|
+
return cachedUint32Memory0;
|
|
366
|
+
}
|
|
367
|
+
function passArray32ToWasm0(arg, malloc) {
|
|
368
|
+
const ptr = malloc(arg.length * 4, 4) >>> 0;
|
|
369
|
+
getUint32Memory0().set(arg, ptr / 4);
|
|
370
|
+
WASM_VECTOR_LEN = arg.length;
|
|
371
|
+
return ptr;
|
|
372
|
+
}
|
|
373
|
+
function passArray8ToWasm0(arg, malloc) {
|
|
374
|
+
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
375
|
+
getUint8Memory0().set(arg, ptr / 1);
|
|
376
|
+
WASM_VECTOR_LEN = arg.length;
|
|
377
|
+
return ptr;
|
|
378
|
+
}
|
|
379
|
+
function handleError(f, args) {
|
|
380
|
+
try {
|
|
381
|
+
return f.apply(this, args);
|
|
382
|
+
} catch (e) {
|
|
383
|
+
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
function __wbg_adapter_213(arg0, arg1, arg2, arg3) {
|
|
387
387
|
wasm.wasm_bindgen__convert__closures__invoke2_mut__h01f06911cee68199(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
388
388
|
}
|
|
389
389
|
var ShellInputContext = Object.freeze({ FileInput: 0, "0": "FileInput" });
|
|
@@ -480,6 +480,12 @@
|
|
|
480
480
|
return addHeapObject(ret);
|
|
481
481
|
}, arguments);
|
|
482
482
|
};
|
|
483
|
+
imports.wbg.__wbg_registerOPFSFileName_8efb2b5d0df8d9a7 = function() {
|
|
484
|
+
return handleError(function(arg0, arg1, arg2) {
|
|
485
|
+
const ret = getObject(arg0).registerOPFSFileName(getStringFromWasm0(arg1, arg2));
|
|
486
|
+
return addHeapObject(ret);
|
|
487
|
+
}, arguments);
|
|
488
|
+
};
|
|
483
489
|
imports.wbg.__wbg_exportFileStatistics_6b72eb40ca2eb4d5 = function() {
|
|
484
490
|
return handleError(function(arg0, arg1, arg2) {
|
|
485
491
|
const ret = getObject(arg0).exportFileStatistics(getStringFromWasm0(arg1, arg2));
|
|
@@ -644,52 +650,57 @@
|
|
|
644
650
|
imports.wbg.__wbg_fit_cdd1076e3e5970b7 = function(arg0) {
|
|
645
651
|
getObject(arg0).fit();
|
|
646
652
|
};
|
|
647
|
-
imports.wbg.
|
|
648
|
-
|
|
649
|
-
|
|
653
|
+
imports.wbg.__wbg_disconnect_d9855433758f0afc = function() {
|
|
654
|
+
return handleError(function(arg0, arg1) {
|
|
655
|
+
const ret = getObject(arg0).disconnect(arg1 >>> 0);
|
|
656
|
+
return addHeapObject(ret);
|
|
657
|
+
}, arguments);
|
|
650
658
|
};
|
|
651
|
-
imports.wbg.
|
|
652
|
-
const
|
|
653
|
-
|
|
659
|
+
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
660
|
+
const obj = takeObject(arg0).original;
|
|
661
|
+
if (obj.cnt-- == 1) {
|
|
662
|
+
obj.a = 0;
|
|
663
|
+
return true;
|
|
664
|
+
}
|
|
665
|
+
const ret = false;
|
|
666
|
+
return ret;
|
|
654
667
|
};
|
|
655
|
-
imports.wbg.
|
|
656
|
-
|
|
657
|
-
return addHeapObject(ret);
|
|
668
|
+
imports.wbg.__wbg_setrows_6b947e6079c486dc = function(arg0, arg1) {
|
|
669
|
+
getObject(arg0).rows = arg1 >>> 0;
|
|
658
670
|
};
|
|
659
|
-
imports.wbg.
|
|
660
|
-
|
|
661
|
-
return addHeapObject(ret);
|
|
671
|
+
imports.wbg.__wbg_setcursorBlink_8a3f7244eb29b1f6 = function(arg0, arg1) {
|
|
672
|
+
getObject(arg0).cursorBlink = arg1 !== 0;
|
|
662
673
|
};
|
|
663
|
-
imports.wbg.
|
|
664
|
-
|
|
665
|
-
return addHeapObject(ret);
|
|
674
|
+
imports.wbg.__wbg_setcursorWidth_55abde268dea1312 = function(arg0, arg1) {
|
|
675
|
+
getObject(arg0).cursorWidth = arg1 >>> 0;
|
|
666
676
|
};
|
|
667
|
-
imports.wbg.
|
|
668
|
-
const ret = getObject(
|
|
669
|
-
|
|
677
|
+
imports.wbg.__wbg_fontFamily_204223b3338f8381 = function(arg0, arg1) {
|
|
678
|
+
const ret = getObject(arg1).fontFamily;
|
|
679
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
680
|
+
const len1 = WASM_VECTOR_LEN;
|
|
681
|
+
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
682
|
+
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
670
683
|
};
|
|
671
|
-
imports.wbg.
|
|
672
|
-
|
|
673
|
-
return addHeapObject(ret);
|
|
684
|
+
imports.wbg.__wbg_setfontFamily_a0645fa4f7aaaf21 = function(arg0, arg1, arg2) {
|
|
685
|
+
getObject(arg0).fontFamily = getStringFromWasm0(arg1, arg2);
|
|
674
686
|
};
|
|
675
|
-
imports.wbg.
|
|
676
|
-
|
|
677
|
-
return addHeapObject(ret);
|
|
687
|
+
imports.wbg.__wbg_setfontSize_11962e753390bde1 = function(arg0, arg1) {
|
|
688
|
+
getObject(arg0).fontSize = arg1 >>> 0;
|
|
678
689
|
};
|
|
679
|
-
imports.wbg.
|
|
680
|
-
|
|
681
|
-
const ret = getObject(arg0).disconnect(arg1 >>> 0);
|
|
682
|
-
return addHeapObject(ret);
|
|
683
|
-
}, arguments);
|
|
690
|
+
imports.wbg.__wbg_setdrawBoldTextInBrightColors_4f711243dff6df11 = function(arg0, arg1) {
|
|
691
|
+
getObject(arg0).drawBoldTextInBrightColors = arg1 !== 0;
|
|
684
692
|
};
|
|
685
|
-
imports.wbg.
|
|
686
|
-
|
|
693
|
+
imports.wbg.__wbg_setrightClickSelectsWord_ede48f0595cd3fed = function(arg0, arg1) {
|
|
694
|
+
getObject(arg0).rightClickSelectsWord = arg1 !== 0;
|
|
687
695
|
};
|
|
688
|
-
imports.wbg.
|
|
689
|
-
|
|
696
|
+
imports.wbg.__wbg_setallowProposedApi_0147ac2b5a9906b3 = function(arg0, arg1) {
|
|
697
|
+
getObject(arg0).allowProposedApi = arg1 !== 0;
|
|
690
698
|
};
|
|
691
|
-
imports.wbg.
|
|
692
|
-
|
|
699
|
+
imports.wbg.__wbg_setbrightYellow_deb3fbc58aa44642 = function(arg0, arg1, arg2) {
|
|
700
|
+
getObject(arg0).brightYellow = getStringFromWasm0(arg1, arg2);
|
|
701
|
+
};
|
|
702
|
+
imports.wbg.__wbg_setforeground_87dc40b78955df05 = function(arg0, arg1, arg2) {
|
|
703
|
+
getObject(arg0).foreground = getStringFromWasm0(arg1, arg2);
|
|
693
704
|
};
|
|
694
705
|
imports.wbg.__wbg_backgroundColor_17a9784f0207d5b0 = function(arg0, arg1) {
|
|
695
706
|
const ret = getObject(arg1).backgroundColor;
|
|
@@ -698,12 +709,18 @@
|
|
|
698
709
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
699
710
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
700
711
|
};
|
|
701
|
-
imports.wbg.
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
712
|
+
imports.wbg.__wbg_setbackground_550386b829ec5c24 = function(arg0, arg1, arg2) {
|
|
713
|
+
getObject(arg0).background = getStringFromWasm0(arg1, arg2);
|
|
714
|
+
};
|
|
715
|
+
imports.wbg.__wbg_settheme_4e67878b7d6cc0fc = function(arg0, arg1) {
|
|
716
|
+
getObject(arg0).theme = getObject(arg1);
|
|
717
|
+
};
|
|
718
|
+
imports.wbg.__wbg_open_7d3a0690ea9e5a45 = function(arg0, arg1) {
|
|
719
|
+
getObject(arg0).open(takeObject(arg1));
|
|
720
|
+
};
|
|
721
|
+
imports.wbg.__wbg_new_70821bf9dbd17152 = function(arg0) {
|
|
722
|
+
const ret = new import_xterm_addon_webgl.WebglAddon(arg0 === 16777215 ? void 0 : arg0 !== 0);
|
|
723
|
+
return addHeapObject(ret);
|
|
707
724
|
};
|
|
708
725
|
imports.wbg.__wbg_instanceof_WebglAddon_c39f68697a31af73 = function(arg0) {
|
|
709
726
|
let result;
|
|
@@ -715,6 +732,13 @@
|
|
|
715
732
|
const ret = result;
|
|
716
733
|
return ret;
|
|
717
734
|
};
|
|
735
|
+
imports.wbg.__wbg_loadAddon_1bfe744e6f456990 = function(arg0, arg1) {
|
|
736
|
+
getObject(arg0).loadAddon(takeObject(arg1));
|
|
737
|
+
};
|
|
738
|
+
imports.wbg.__wbg_new_92aa50f448dac851 = function(arg0, arg1, arg2) {
|
|
739
|
+
const ret = new import_xterm_addon_web_links.WebLinksAddon(getObject(arg0), getObject(arg1), arg2 === 16777215 ? void 0 : arg2 !== 0);
|
|
740
|
+
return addHeapObject(ret);
|
|
741
|
+
};
|
|
718
742
|
imports.wbg.__wbg_instanceof_WebLinksAddon_fbcf4efb54881c53 = function(arg0) {
|
|
719
743
|
let result;
|
|
720
744
|
try {
|
|
@@ -733,15 +757,24 @@
|
|
|
733
757
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
734
758
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
735
759
|
};
|
|
736
|
-
imports.wbg.
|
|
737
|
-
|
|
760
|
+
imports.wbg.__wbg_log_8bb2c010ce15af48 = function(arg0, arg1) {
|
|
761
|
+
console.log(getStringFromWasm0(arg0, arg1));
|
|
762
|
+
};
|
|
763
|
+
imports.wbg.__wbg_error_a84695ce32854879 = function(arg0, arg1) {
|
|
764
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
765
|
+
};
|
|
766
|
+
imports.wbg.__wbg_warn_d85b304f0e70f5ac = function(arg0, arg1) {
|
|
767
|
+
console.warn(getStringFromWasm0(arg0, arg1));
|
|
768
|
+
};
|
|
769
|
+
imports.wbg.__wbg_static_accessor_PACKAGE_NAME_0af717684e189e55 = function(arg0) {
|
|
770
|
+
const ret = import_duckdb_wasm.PACKAGE_NAME;
|
|
738
771
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
739
772
|
const len1 = WASM_VECTOR_LEN;
|
|
740
773
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
741
774
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
742
775
|
};
|
|
743
|
-
imports.wbg.
|
|
744
|
-
const ret = import_duckdb_wasm.
|
|
776
|
+
imports.wbg.__wbg_static_accessor_PACKAGE_VERSION_549ba11794cf5003 = function(arg0) {
|
|
777
|
+
const ret = import_duckdb_wasm.PACKAGE_VERSION;
|
|
745
778
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
746
779
|
const len1 = WASM_VECTOR_LEN;
|
|
747
780
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
@@ -751,63 +784,36 @@
|
|
|
751
784
|
const ret = new import_xterm_addon_fit.FitAddon();
|
|
752
785
|
return addHeapObject(ret);
|
|
753
786
|
};
|
|
754
|
-
imports.wbg.
|
|
755
|
-
const
|
|
756
|
-
|
|
757
|
-
obj.a = 0;
|
|
758
|
-
return true;
|
|
759
|
-
}
|
|
760
|
-
const ret = false;
|
|
761
|
-
return ret;
|
|
762
|
-
};
|
|
763
|
-
imports.wbg.__wbg_setallowProposedApi_0147ac2b5a9906b3 = function(arg0, arg1) {
|
|
764
|
-
getObject(arg0).allowProposedApi = arg1 !== 0;
|
|
765
|
-
};
|
|
766
|
-
imports.wbg.__wbg_setcursorBlink_8a3f7244eb29b1f6 = function(arg0, arg1) {
|
|
767
|
-
getObject(arg0).cursorBlink = arg1 !== 0;
|
|
768
|
-
};
|
|
769
|
-
imports.wbg.__wbg_setcursorWidth_55abde268dea1312 = function(arg0, arg1) {
|
|
770
|
-
getObject(arg0).cursorWidth = arg1 >>> 0;
|
|
771
|
-
};
|
|
772
|
-
imports.wbg.__wbg_setdrawBoldTextInBrightColors_4f711243dff6df11 = function(arg0, arg1) {
|
|
773
|
-
getObject(arg0).drawBoldTextInBrightColors = arg1 !== 0;
|
|
774
|
-
};
|
|
775
|
-
imports.wbg.__wbg_setfontSize_11962e753390bde1 = function(arg0, arg1) {
|
|
776
|
-
getObject(arg0).fontSize = arg1 >>> 0;
|
|
777
|
-
};
|
|
778
|
-
imports.wbg.__wbg_setfontFamily_a0645fa4f7aaaf21 = function(arg0, arg1, arg2) {
|
|
779
|
-
getObject(arg0).fontFamily = getStringFromWasm0(arg1, arg2);
|
|
780
|
-
};
|
|
781
|
-
imports.wbg.__wbg_setrightClickSelectsWord_ede48f0595cd3fed = function(arg0, arg1) {
|
|
782
|
-
getObject(arg0).rightClickSelectsWord = arg1 !== 0;
|
|
783
|
-
};
|
|
784
|
-
imports.wbg.__wbg_setrows_6b947e6079c486dc = function(arg0, arg1) {
|
|
785
|
-
getObject(arg0).rows = arg1 >>> 0;
|
|
786
|
-
};
|
|
787
|
-
imports.wbg.__wbg_settheme_4e67878b7d6cc0fc = function(arg0, arg1) {
|
|
788
|
-
getObject(arg0).theme = getObject(arg1);
|
|
787
|
+
imports.wbg.__wbg_blockStats_14f17a14c4573f3d = function(arg0) {
|
|
788
|
+
const ret = getObject(arg0).blockStats;
|
|
789
|
+
return addHeapObject(ret);
|
|
789
790
|
};
|
|
790
|
-
imports.wbg.
|
|
791
|
-
getObject(arg0).
|
|
791
|
+
imports.wbg.__wbg_totalFileWrites_1b38029d29f47d43 = function(arg0) {
|
|
792
|
+
const ret = getObject(arg0).totalFileWrites;
|
|
793
|
+
return addHeapObject(ret);
|
|
792
794
|
};
|
|
793
|
-
imports.wbg.
|
|
794
|
-
getObject(arg0).
|
|
795
|
+
imports.wbg.__wbg_totalFileReadsAhead_02c25545b2f63323 = function(arg0) {
|
|
796
|
+
const ret = getObject(arg0).totalFileReadsAhead;
|
|
797
|
+
return addHeapObject(ret);
|
|
795
798
|
};
|
|
796
|
-
imports.wbg.
|
|
797
|
-
getObject(arg0).
|
|
799
|
+
imports.wbg.__wbg_totalFileReadsCold_304476ed0c49e111 = function(arg0) {
|
|
800
|
+
const ret = getObject(arg0).totalFileReadsCold;
|
|
801
|
+
return addHeapObject(ret);
|
|
798
802
|
};
|
|
799
|
-
imports.wbg.
|
|
800
|
-
getObject(arg0).
|
|
803
|
+
imports.wbg.__wbg_totalFileReadsCached_2e8edfe7dbf14351 = function(arg0) {
|
|
804
|
+
const ret = getObject(arg0).totalFileReadsCached;
|
|
805
|
+
return addHeapObject(ret);
|
|
801
806
|
};
|
|
802
|
-
imports.wbg.
|
|
803
|
-
getObject(arg0).
|
|
807
|
+
imports.wbg.__wbg_totalPageAccesses_2f654448ea273878 = function(arg0) {
|
|
808
|
+
const ret = getObject(arg0).totalPageAccesses;
|
|
809
|
+
return addHeapObject(ret);
|
|
804
810
|
};
|
|
805
|
-
imports.wbg.
|
|
806
|
-
const ret =
|
|
811
|
+
imports.wbg.__wbg_totalPageLoads_1ce10deb8828d935 = function(arg0) {
|
|
812
|
+
const ret = getObject(arg0).totalPageLoads;
|
|
807
813
|
return addHeapObject(ret);
|
|
808
814
|
};
|
|
809
|
-
imports.wbg.
|
|
810
|
-
const ret =
|
|
815
|
+
imports.wbg.__wbg_blockSize_77bc4e968a2e845a = function(arg0) {
|
|
816
|
+
const ret = getObject(arg0).blockSize;
|
|
811
817
|
return addHeapObject(ret);
|
|
812
818
|
};
|
|
813
819
|
imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
|
|
@@ -947,7 +953,7 @@
|
|
|
947
953
|
const a = state0.a;
|
|
948
954
|
state0.a = 0;
|
|
949
955
|
try {
|
|
950
|
-
return
|
|
956
|
+
return __wbg_adapter_213(a, state0.b, arg02, arg12);
|
|
951
957
|
} finally {
|
|
952
958
|
state0.a = a;
|
|
953
959
|
}
|
|
@@ -999,12 +1005,12 @@
|
|
|
999
1005
|
const ret = wasm.memory;
|
|
1000
1006
|
return addHeapObject(ret);
|
|
1001
1007
|
};
|
|
1002
|
-
imports.wbg.
|
|
1003
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1008
|
+
imports.wbg.__wbindgen_closure_wrapper479 = function(arg0, arg1, arg2) {
|
|
1009
|
+
const ret = makeMutClosure(arg0, arg1, 144, __wbg_adapter_22);
|
|
1004
1010
|
return addHeapObject(ret);
|
|
1005
1011
|
};
|
|
1006
|
-
imports.wbg.
|
|
1007
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1012
|
+
imports.wbg.__wbindgen_closure_wrapper935 = function(arg0, arg1, arg2) {
|
|
1013
|
+
const ret = makeMutClosure(arg0, arg1, 196, __wbg_adapter_25);
|
|
1008
1014
|
return addHeapObject(ret);
|
|
1009
1015
|
};
|
|
1010
1016
|
return imports;
|