@duckdb/duckdb-wasm-shell 1.29.1-dev20.0 → 1.29.1-dev23.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/shell.cjs +139 -133
- package/dist/shell.cjs.map +2 -2
- package/dist/shell.js +139 -133
- package/dist/shell.js.map +2 -2
- package/dist/shell.mjs +140 -134
- package/dist/shell.mjs.map +2 -2
- package/dist/shell_bg.wasm +0 -0
- package/package.json +2 -2
package/dist/shell.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// package.json
|
|
2
2
|
var package_default = {
|
|
3
3
|
name: "@duckdb/duckdb-wasm-shell",
|
|
4
|
-
version: "1.29.1-
|
|
4
|
+
version: "1.29.1-dev23.0",
|
|
5
5
|
description: "",
|
|
6
6
|
author: "Andre Kohn <kohn.a@outlook.com>",
|
|
7
7
|
license: "MIT",
|
|
@@ -25,7 +25,7 @@ var package_default = {
|
|
|
25
25
|
"csv"
|
|
26
26
|
],
|
|
27
27
|
dependencies: {
|
|
28
|
-
"@duckdb/duckdb-wasm": "^1.29.1-
|
|
28
|
+
"@duckdb/duckdb-wasm": "^1.29.1-dev23.0",
|
|
29
29
|
xterm: "^5.3.0",
|
|
30
30
|
"xterm-addon-fit": "^0.8.0",
|
|
31
31
|
"xterm-addon-web-links": "^0.9.0",
|
|
@@ -86,7 +86,7 @@ var PACKAGE_VERSION_PATCH = VERSION_PARTS[2];
|
|
|
86
86
|
import * as duckdb2 from "@duckdb/duckdb-wasm";
|
|
87
87
|
|
|
88
88
|
// crate/pkg/shell.js
|
|
89
|
-
import {
|
|
89
|
+
import { PACKAGE_NAME as PACKAGE_NAME2, PACKAGE_VERSION as PACKAGE_VERSION2, getPlatformFeatures } from "@duckdb/duckdb-wasm";
|
|
90
90
|
import { Terminal } from "xterm";
|
|
91
91
|
import { FitAddon } from "xterm-addon-fit";
|
|
92
92
|
import { WebLinksAddon } from "xterm-addon-web-links";
|
|
@@ -276,25 +276,6 @@ function __wbg_adapter_22(arg0, arg1, arg2) {
|
|
|
276
276
|
function __wbg_adapter_25(arg0, arg1, arg2) {
|
|
277
277
|
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h21e86434f3007437(arg0, arg1, addHeapObject(arg2));
|
|
278
278
|
}
|
|
279
|
-
var cachedUint32Memory0 = null;
|
|
280
|
-
function getUint32Memory0() {
|
|
281
|
-
if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
|
|
282
|
-
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
|
283
|
-
}
|
|
284
|
-
return cachedUint32Memory0;
|
|
285
|
-
}
|
|
286
|
-
function passArray32ToWasm0(arg, malloc) {
|
|
287
|
-
const ptr = malloc(arg.length * 4, 4) >>> 0;
|
|
288
|
-
getUint32Memory0().set(arg, ptr / 4);
|
|
289
|
-
WASM_VECTOR_LEN = arg.length;
|
|
290
|
-
return ptr;
|
|
291
|
-
}
|
|
292
|
-
function passArray8ToWasm0(arg, malloc) {
|
|
293
|
-
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
294
|
-
getUint8Memory0().set(arg, ptr / 1);
|
|
295
|
-
WASM_VECTOR_LEN = arg.length;
|
|
296
|
-
return ptr;
|
|
297
|
-
}
|
|
298
279
|
function embed(elem, runtime, options) {
|
|
299
280
|
try {
|
|
300
281
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
@@ -350,7 +331,26 @@ function handleError(f, args) {
|
|
|
350
331
|
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
351
332
|
}
|
|
352
333
|
}
|
|
353
|
-
|
|
334
|
+
var cachedUint32Memory0 = null;
|
|
335
|
+
function getUint32Memory0() {
|
|
336
|
+
if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
|
|
337
|
+
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
|
338
|
+
}
|
|
339
|
+
return cachedUint32Memory0;
|
|
340
|
+
}
|
|
341
|
+
function passArray32ToWasm0(arg, malloc) {
|
|
342
|
+
const ptr = malloc(arg.length * 4, 4) >>> 0;
|
|
343
|
+
getUint32Memory0().set(arg, ptr / 4);
|
|
344
|
+
WASM_VECTOR_LEN = arg.length;
|
|
345
|
+
return ptr;
|
|
346
|
+
}
|
|
347
|
+
function passArray8ToWasm0(arg, malloc) {
|
|
348
|
+
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
349
|
+
getUint8Memory0().set(arg, ptr / 1);
|
|
350
|
+
WASM_VECTOR_LEN = arg.length;
|
|
351
|
+
return ptr;
|
|
352
|
+
}
|
|
353
|
+
function __wbg_adapter_213(arg0, arg1, arg2, arg3) {
|
|
354
354
|
wasm.wasm_bindgen__convert__closures__invoke2_mut__h6ec9b37957db5671(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
355
355
|
}
|
|
356
356
|
var ShellInputContext = Object.freeze({ FileInput: 0, "0": "FileInput" });
|
|
@@ -447,6 +447,12 @@ function __wbg_get_imports() {
|
|
|
447
447
|
return addHeapObject(ret);
|
|
448
448
|
}, arguments);
|
|
449
449
|
};
|
|
450
|
+
imports.wbg.__wbg_registerOPFSFileName_8efb2b5d0df8d9a7 = function() {
|
|
451
|
+
return handleError(function(arg0, arg1, arg2) {
|
|
452
|
+
const ret = getObject(arg0).registerOPFSFileName(getStringFromWasm0(arg1, arg2));
|
|
453
|
+
return addHeapObject(ret);
|
|
454
|
+
}, arguments);
|
|
455
|
+
};
|
|
450
456
|
imports.wbg.__wbg_exportFileStatistics_6b72eb40ca2eb4d5 = function() {
|
|
451
457
|
return handleError(function(arg0, arg1, arg2) {
|
|
452
458
|
const ret = getObject(arg0).exportFileStatistics(getStringFromWasm0(arg1, arg2));
|
|
@@ -611,66 +617,17 @@ function __wbg_get_imports() {
|
|
|
611
617
|
imports.wbg.__wbg_fit_cdd1076e3e5970b7 = function(arg0) {
|
|
612
618
|
getObject(arg0).fit();
|
|
613
619
|
};
|
|
614
|
-
imports.wbg.
|
|
615
|
-
const
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
const ret = getObject(arg0).totalFileWrites;
|
|
620
|
-
return addHeapObject(ret);
|
|
621
|
-
};
|
|
622
|
-
imports.wbg.__wbg_totalFileReadsAhead_02c25545b2f63323 = function(arg0) {
|
|
623
|
-
const ret = getObject(arg0).totalFileReadsAhead;
|
|
624
|
-
return addHeapObject(ret);
|
|
625
|
-
};
|
|
626
|
-
imports.wbg.__wbg_totalFileReadsCold_304476ed0c49e111 = function(arg0) {
|
|
627
|
-
const ret = getObject(arg0).totalFileReadsCold;
|
|
628
|
-
return addHeapObject(ret);
|
|
629
|
-
};
|
|
630
|
-
imports.wbg.__wbg_totalFileReadsCached_2e8edfe7dbf14351 = function(arg0) {
|
|
631
|
-
const ret = getObject(arg0).totalFileReadsCached;
|
|
632
|
-
return addHeapObject(ret);
|
|
633
|
-
};
|
|
634
|
-
imports.wbg.__wbg_totalPageAccesses_2f654448ea273878 = function(arg0) {
|
|
635
|
-
const ret = getObject(arg0).totalPageAccesses;
|
|
636
|
-
return addHeapObject(ret);
|
|
637
|
-
};
|
|
638
|
-
imports.wbg.__wbg_totalPageLoads_1ce10deb8828d935 = function(arg0) {
|
|
639
|
-
const ret = getObject(arg0).totalPageLoads;
|
|
640
|
-
return addHeapObject(ret);
|
|
641
|
-
};
|
|
642
|
-
imports.wbg.__wbg_blockSize_77bc4e968a2e845a = function(arg0) {
|
|
643
|
-
const ret = getObject(arg0).blockSize;
|
|
644
|
-
return addHeapObject(ret);
|
|
645
|
-
};
|
|
646
|
-
imports.wbg.__wbg_disconnect_d9855433758f0afc = function() {
|
|
647
|
-
return handleError(function(arg0, arg1) {
|
|
648
|
-
const ret = getObject(arg0).disconnect(arg1 >>> 0);
|
|
649
|
-
return addHeapObject(ret);
|
|
650
|
-
}, arguments);
|
|
651
|
-
};
|
|
652
|
-
imports.wbg.__wbg_instanceof_WebLinksAddon_fbcf4efb54881c53 = function(arg0) {
|
|
653
|
-
let result;
|
|
654
|
-
try {
|
|
655
|
-
result = getObject(arg0) instanceof WebLinksAddon;
|
|
656
|
-
} catch (e) {
|
|
657
|
-
result = false;
|
|
658
|
-
}
|
|
659
|
-
const ret = result;
|
|
660
|
-
return ret;
|
|
661
|
-
};
|
|
662
|
-
imports.wbg.__wbg_instanceof_WebglAddon_c39f68697a31af73 = function(arg0) {
|
|
663
|
-
let result;
|
|
664
|
-
try {
|
|
665
|
-
result = getObject(arg0) instanceof WebglAddon;
|
|
666
|
-
} catch (e) {
|
|
667
|
-
result = false;
|
|
620
|
+
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
621
|
+
const obj = takeObject(arg0).original;
|
|
622
|
+
if (obj.cnt-- == 1) {
|
|
623
|
+
obj.a = 0;
|
|
624
|
+
return true;
|
|
668
625
|
}
|
|
669
|
-
const ret =
|
|
626
|
+
const ret = false;
|
|
670
627
|
return ret;
|
|
671
628
|
};
|
|
672
|
-
imports.wbg.
|
|
673
|
-
getObject(arg0).
|
|
629
|
+
imports.wbg.__wbg_setrows_6b947e6079c486dc = function(arg0, arg1) {
|
|
630
|
+
getObject(arg0).rows = arg1 >>> 0;
|
|
674
631
|
};
|
|
675
632
|
imports.wbg.__wbg_setcursorBlink_8a3f7244eb29b1f6 = function(arg0, arg1) {
|
|
676
633
|
getObject(arg0).cursorBlink = arg1 !== 0;
|
|
@@ -678,33 +635,34 @@ function __wbg_get_imports() {
|
|
|
678
635
|
imports.wbg.__wbg_setcursorWidth_55abde268dea1312 = function(arg0, arg1) {
|
|
679
636
|
getObject(arg0).cursorWidth = arg1 >>> 0;
|
|
680
637
|
};
|
|
681
|
-
imports.wbg.
|
|
682
|
-
getObject(
|
|
638
|
+
imports.wbg.__wbg_fontFamily_204223b3338f8381 = function(arg0, arg1) {
|
|
639
|
+
const ret = getObject(arg1).fontFamily;
|
|
640
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
641
|
+
const len1 = WASM_VECTOR_LEN;
|
|
642
|
+
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
643
|
+
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
644
|
+
};
|
|
645
|
+
imports.wbg.__wbg_setfontFamily_a0645fa4f7aaaf21 = function(arg0, arg1, arg2) {
|
|
646
|
+
getObject(arg0).fontFamily = getStringFromWasm0(arg1, arg2);
|
|
683
647
|
};
|
|
684
648
|
imports.wbg.__wbg_setfontSize_11962e753390bde1 = function(arg0, arg1) {
|
|
685
649
|
getObject(arg0).fontSize = arg1 >>> 0;
|
|
686
650
|
};
|
|
687
|
-
imports.wbg.
|
|
688
|
-
getObject(arg0).
|
|
651
|
+
imports.wbg.__wbg_setdrawBoldTextInBrightColors_4f711243dff6df11 = function(arg0, arg1) {
|
|
652
|
+
getObject(arg0).drawBoldTextInBrightColors = arg1 !== 0;
|
|
689
653
|
};
|
|
690
654
|
imports.wbg.__wbg_setrightClickSelectsWord_ede48f0595cd3fed = function(arg0, arg1) {
|
|
691
655
|
getObject(arg0).rightClickSelectsWord = arg1 !== 0;
|
|
692
656
|
};
|
|
693
|
-
imports.wbg.
|
|
694
|
-
getObject(arg0).
|
|
657
|
+
imports.wbg.__wbg_setallowProposedApi_0147ac2b5a9906b3 = function(arg0, arg1) {
|
|
658
|
+
getObject(arg0).allowProposedApi = arg1 !== 0;
|
|
695
659
|
};
|
|
696
|
-
imports.wbg.
|
|
697
|
-
getObject(arg0).
|
|
660
|
+
imports.wbg.__wbg_setbrightYellow_deb3fbc58aa44642 = function(arg0, arg1, arg2) {
|
|
661
|
+
getObject(arg0).brightYellow = getStringFromWasm0(arg1, arg2);
|
|
698
662
|
};
|
|
699
663
|
imports.wbg.__wbg_setforeground_87dc40b78955df05 = function(arg0, arg1, arg2) {
|
|
700
664
|
getObject(arg0).foreground = getStringFromWasm0(arg1, arg2);
|
|
701
665
|
};
|
|
702
|
-
imports.wbg.__wbg_setbackground_550386b829ec5c24 = function(arg0, arg1, arg2) {
|
|
703
|
-
getObject(arg0).background = getStringFromWasm0(arg1, arg2);
|
|
704
|
-
};
|
|
705
|
-
imports.wbg.__wbg_setbrightYellow_deb3fbc58aa44642 = function(arg0, arg1, arg2) {
|
|
706
|
-
getObject(arg0).brightYellow = getStringFromWasm0(arg1, arg2);
|
|
707
|
-
};
|
|
708
666
|
imports.wbg.__wbg_backgroundColor_17a9784f0207d5b0 = function(arg0, arg1) {
|
|
709
667
|
const ret = getObject(arg1).backgroundColor;
|
|
710
668
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -712,71 +670,119 @@ function __wbg_get_imports() {
|
|
|
712
670
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
713
671
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
714
672
|
};
|
|
715
|
-
imports.wbg.
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
673
|
+
imports.wbg.__wbg_setbackground_550386b829ec5c24 = function(arg0, arg1, arg2) {
|
|
674
|
+
getObject(arg0).background = getStringFromWasm0(arg1, arg2);
|
|
675
|
+
};
|
|
676
|
+
imports.wbg.__wbg_settheme_4e67878b7d6cc0fc = function(arg0, arg1) {
|
|
677
|
+
getObject(arg0).theme = getObject(arg1);
|
|
721
678
|
};
|
|
722
679
|
imports.wbg.__wbg_open_7d3a0690ea9e5a45 = function(arg0, arg1) {
|
|
723
680
|
getObject(arg0).open(takeObject(arg1));
|
|
724
681
|
};
|
|
725
|
-
imports.wbg.__wbg_loadAddon_1bfe744e6f456990 = function(arg0, arg1) {
|
|
726
|
-
getObject(arg0).loadAddon(takeObject(arg1));
|
|
727
|
-
};
|
|
728
|
-
imports.wbg.__wbg_new_92aa50f448dac851 = function(arg0, arg1, arg2) {
|
|
729
|
-
const ret = new WebLinksAddon(getObject(arg0), getObject(arg1), arg2 === 16777215 ? void 0 : arg2 !== 0);
|
|
730
|
-
return addHeapObject(ret);
|
|
731
|
-
};
|
|
732
682
|
imports.wbg.__wbg_new_70821bf9dbd17152 = function(arg0) {
|
|
733
683
|
const ret = new WebglAddon(arg0 === 16777215 ? void 0 : arg0 !== 0);
|
|
734
684
|
return addHeapObject(ret);
|
|
735
685
|
};
|
|
736
|
-
imports.wbg.
|
|
737
|
-
|
|
686
|
+
imports.wbg.__wbg_instanceof_WebglAddon_c39f68697a31af73 = function(arg0) {
|
|
687
|
+
let result;
|
|
688
|
+
try {
|
|
689
|
+
result = getObject(arg0) instanceof WebglAddon;
|
|
690
|
+
} catch (e) {
|
|
691
|
+
result = false;
|
|
692
|
+
}
|
|
693
|
+
const ret = result;
|
|
694
|
+
return ret;
|
|
738
695
|
};
|
|
739
|
-
imports.wbg.
|
|
740
|
-
|
|
696
|
+
imports.wbg.__wbg_loadAddon_1bfe744e6f456990 = function(arg0, arg1) {
|
|
697
|
+
getObject(arg0).loadAddon(takeObject(arg1));
|
|
741
698
|
};
|
|
742
|
-
imports.wbg.
|
|
743
|
-
|
|
699
|
+
imports.wbg.__wbg_new_92aa50f448dac851 = function(arg0, arg1, arg2) {
|
|
700
|
+
const ret = new WebLinksAddon(getObject(arg0), getObject(arg1), arg2 === 16777215 ? void 0 : arg2 !== 0);
|
|
701
|
+
return addHeapObject(ret);
|
|
744
702
|
};
|
|
745
|
-
imports.wbg.
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
703
|
+
imports.wbg.__wbg_instanceof_WebLinksAddon_fbcf4efb54881c53 = function(arg0) {
|
|
704
|
+
let result;
|
|
705
|
+
try {
|
|
706
|
+
result = getObject(arg0) instanceof WebLinksAddon;
|
|
707
|
+
} catch (e) {
|
|
708
|
+
result = false;
|
|
750
709
|
}
|
|
751
|
-
const ret =
|
|
710
|
+
const ret = result;
|
|
752
711
|
return ret;
|
|
753
712
|
};
|
|
754
|
-
imports.wbg.
|
|
755
|
-
|
|
756
|
-
|
|
713
|
+
imports.wbg.__wbg_disconnect_d9855433758f0afc = function() {
|
|
714
|
+
return handleError(function(arg0, arg1) {
|
|
715
|
+
const ret = getObject(arg0).disconnect(arg1 >>> 0);
|
|
716
|
+
return addHeapObject(ret);
|
|
717
|
+
}, arguments);
|
|
757
718
|
};
|
|
758
|
-
imports.wbg.
|
|
759
|
-
const
|
|
719
|
+
imports.wbg.__wbindgen_json_serialize = function(arg0, arg1) {
|
|
720
|
+
const obj = getObject(arg1);
|
|
721
|
+
const ret = JSON.stringify(obj === void 0 ? null : obj);
|
|
760
722
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
761
723
|
const len1 = WASM_VECTOR_LEN;
|
|
762
724
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
763
725
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
764
726
|
};
|
|
765
|
-
imports.wbg.
|
|
766
|
-
const ret =
|
|
727
|
+
imports.wbg.__wbg_static_accessor_PACKAGE_NAME_0af717684e189e55 = function(arg0) {
|
|
728
|
+
const ret = PACKAGE_NAME2;
|
|
767
729
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
768
730
|
const len1 = WASM_VECTOR_LEN;
|
|
769
731
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
770
732
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
771
733
|
};
|
|
772
|
-
imports.wbg.
|
|
773
|
-
const
|
|
774
|
-
const ret = JSON.stringify(obj === void 0 ? null : obj);
|
|
734
|
+
imports.wbg.__wbg_static_accessor_PACKAGE_VERSION_549ba11794cf5003 = function(arg0) {
|
|
735
|
+
const ret = PACKAGE_VERSION2;
|
|
775
736
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
776
737
|
const len1 = WASM_VECTOR_LEN;
|
|
777
738
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
778
739
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
779
740
|
};
|
|
741
|
+
imports.wbg.__wbg_new_79cc836771d68198 = function() {
|
|
742
|
+
const ret = new FitAddon();
|
|
743
|
+
return addHeapObject(ret);
|
|
744
|
+
};
|
|
745
|
+
imports.wbg.__wbg_blockStats_14f17a14c4573f3d = function(arg0) {
|
|
746
|
+
const ret = getObject(arg0).blockStats;
|
|
747
|
+
return addHeapObject(ret);
|
|
748
|
+
};
|
|
749
|
+
imports.wbg.__wbg_totalFileWrites_1b38029d29f47d43 = function(arg0) {
|
|
750
|
+
const ret = getObject(arg0).totalFileWrites;
|
|
751
|
+
return addHeapObject(ret);
|
|
752
|
+
};
|
|
753
|
+
imports.wbg.__wbg_totalFileReadsAhead_02c25545b2f63323 = function(arg0) {
|
|
754
|
+
const ret = getObject(arg0).totalFileReadsAhead;
|
|
755
|
+
return addHeapObject(ret);
|
|
756
|
+
};
|
|
757
|
+
imports.wbg.__wbg_totalFileReadsCold_304476ed0c49e111 = function(arg0) {
|
|
758
|
+
const ret = getObject(arg0).totalFileReadsCold;
|
|
759
|
+
return addHeapObject(ret);
|
|
760
|
+
};
|
|
761
|
+
imports.wbg.__wbg_totalFileReadsCached_2e8edfe7dbf14351 = function(arg0) {
|
|
762
|
+
const ret = getObject(arg0).totalFileReadsCached;
|
|
763
|
+
return addHeapObject(ret);
|
|
764
|
+
};
|
|
765
|
+
imports.wbg.__wbg_totalPageAccesses_2f654448ea273878 = function(arg0) {
|
|
766
|
+
const ret = getObject(arg0).totalPageAccesses;
|
|
767
|
+
return addHeapObject(ret);
|
|
768
|
+
};
|
|
769
|
+
imports.wbg.__wbg_totalPageLoads_1ce10deb8828d935 = function(arg0) {
|
|
770
|
+
const ret = getObject(arg0).totalPageLoads;
|
|
771
|
+
return addHeapObject(ret);
|
|
772
|
+
};
|
|
773
|
+
imports.wbg.__wbg_blockSize_77bc4e968a2e845a = function(arg0) {
|
|
774
|
+
const ret = getObject(arg0).blockSize;
|
|
775
|
+
return addHeapObject(ret);
|
|
776
|
+
};
|
|
777
|
+
imports.wbg.__wbg_log_8bb2c010ce15af48 = function(arg0, arg1) {
|
|
778
|
+
console.log(getStringFromWasm0(arg0, arg1));
|
|
779
|
+
};
|
|
780
|
+
imports.wbg.__wbg_error_a84695ce32854879 = function(arg0, arg1) {
|
|
781
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
782
|
+
};
|
|
783
|
+
imports.wbg.__wbg_warn_d85b304f0e70f5ac = function(arg0, arg1) {
|
|
784
|
+
console.warn(getStringFromWasm0(arg0, arg1));
|
|
785
|
+
};
|
|
780
786
|
imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
|
|
781
787
|
const ret = new Error();
|
|
782
788
|
return addHeapObject(ret);
|
|
@@ -914,7 +920,7 @@ function __wbg_get_imports() {
|
|
|
914
920
|
const a = state0.a;
|
|
915
921
|
state0.a = 0;
|
|
916
922
|
try {
|
|
917
|
-
return
|
|
923
|
+
return __wbg_adapter_213(a, state0.b, arg02, arg12);
|
|
918
924
|
} finally {
|
|
919
925
|
state0.a = a;
|
|
920
926
|
}
|
|
@@ -966,12 +972,12 @@ function __wbg_get_imports() {
|
|
|
966
972
|
const ret = wasm.memory;
|
|
967
973
|
return addHeapObject(ret);
|
|
968
974
|
};
|
|
969
|
-
imports.wbg.
|
|
970
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
975
|
+
imports.wbg.__wbindgen_closure_wrapper450 = function(arg0, arg1, arg2) {
|
|
976
|
+
const ret = makeMutClosure(arg0, arg1, 135, __wbg_adapter_22);
|
|
971
977
|
return addHeapObject(ret);
|
|
972
978
|
};
|
|
973
|
-
imports.wbg.
|
|
974
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
979
|
+
imports.wbg.__wbindgen_closure_wrapper916 = function(arg0, arg1, arg2) {
|
|
980
|
+
const ret = makeMutClosure(arg0, arg1, 188, __wbg_adapter_25);
|
|
975
981
|
return addHeapObject(ret);
|
|
976
982
|
};
|
|
977
983
|
return imports;
|