@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
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="94" height="20" role="img" aria-label="duckdb: v1.2.0"><title>duckdb: v1.2.0</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="94" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="49" height="20" fill="#555"/><rect x="49" width="45" height="20" fill="#007ec6"/><rect width="94" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="255" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="390">duckdb</text><text x="255" y="140" transform="scale(.1)" fill="#fff" textLength="390">duckdb</text><text aria-hidden="true" x="705" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="350">v1.2.0</text><text x="705" y="140" transform="scale(.1)" fill="#fff" textLength="350">v1.2.0</text></g></svg>
|
package/dist/shell.cjs
CHANGED
|
@@ -43,7 +43,7 @@ module.exports = __toCommonJS(src_exports);
|
|
|
43
43
|
// package.json
|
|
44
44
|
var package_default = {
|
|
45
45
|
name: "@duckdb/duckdb-wasm-shell",
|
|
46
|
-
version: "1.29.1-
|
|
46
|
+
version: "1.29.1-dev68.0",
|
|
47
47
|
description: "",
|
|
48
48
|
author: "Andre Kohn <kohn.a@outlook.com>",
|
|
49
49
|
license: "MIT",
|
|
@@ -67,7 +67,7 @@ var package_default = {
|
|
|
67
67
|
"csv"
|
|
68
68
|
],
|
|
69
69
|
dependencies: {
|
|
70
|
-
"@duckdb/duckdb-wasm": "^1.29.1-
|
|
70
|
+
"@duckdb/duckdb-wasm": "^1.29.1-dev68.0",
|
|
71
71
|
xterm: "^5.3.0",
|
|
72
72
|
"xterm-addon-fit": "^0.8.0",
|
|
73
73
|
"xterm-addon-web-links": "^0.9.0",
|
|
@@ -319,32 +319,6 @@ function __wbg_adapter_22(arg0, arg1, arg2) {
|
|
|
319
319
|
function __wbg_adapter_25(arg0, arg1, arg2) {
|
|
320
320
|
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h355634d0f2bf5e5e(arg0, arg1, addHeapObject(arg2));
|
|
321
321
|
}
|
|
322
|
-
var cachedUint32Memory0 = null;
|
|
323
|
-
function getUint32Memory0() {
|
|
324
|
-
if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
|
|
325
|
-
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
|
326
|
-
}
|
|
327
|
-
return cachedUint32Memory0;
|
|
328
|
-
}
|
|
329
|
-
function passArray32ToWasm0(arg, malloc) {
|
|
330
|
-
const ptr = malloc(arg.length * 4, 4) >>> 0;
|
|
331
|
-
getUint32Memory0().set(arg, ptr / 4);
|
|
332
|
-
WASM_VECTOR_LEN = arg.length;
|
|
333
|
-
return ptr;
|
|
334
|
-
}
|
|
335
|
-
function passArray8ToWasm0(arg, malloc) {
|
|
336
|
-
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
337
|
-
getUint8Memory0().set(arg, ptr / 1);
|
|
338
|
-
WASM_VECTOR_LEN = arg.length;
|
|
339
|
-
return ptr;
|
|
340
|
-
}
|
|
341
|
-
function handleError(f, args) {
|
|
342
|
-
try {
|
|
343
|
-
return f.apply(this, args);
|
|
344
|
-
} catch (e) {
|
|
345
|
-
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
322
|
function embed(elem, runtime, options) {
|
|
349
323
|
try {
|
|
350
324
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
@@ -393,7 +367,33 @@ function configureDatabase(db) {
|
|
|
393
367
|
const ret = wasm.configureDatabase(addHeapObject(db));
|
|
394
368
|
return takeObject(ret);
|
|
395
369
|
}
|
|
396
|
-
|
|
370
|
+
var cachedUint32Memory0 = null;
|
|
371
|
+
function getUint32Memory0() {
|
|
372
|
+
if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
|
|
373
|
+
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
|
374
|
+
}
|
|
375
|
+
return cachedUint32Memory0;
|
|
376
|
+
}
|
|
377
|
+
function passArray32ToWasm0(arg, malloc) {
|
|
378
|
+
const ptr = malloc(arg.length * 4, 4) >>> 0;
|
|
379
|
+
getUint32Memory0().set(arg, ptr / 4);
|
|
380
|
+
WASM_VECTOR_LEN = arg.length;
|
|
381
|
+
return ptr;
|
|
382
|
+
}
|
|
383
|
+
function passArray8ToWasm0(arg, malloc) {
|
|
384
|
+
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
385
|
+
getUint8Memory0().set(arg, ptr / 1);
|
|
386
|
+
WASM_VECTOR_LEN = arg.length;
|
|
387
|
+
return ptr;
|
|
388
|
+
}
|
|
389
|
+
function handleError(f, args) {
|
|
390
|
+
try {
|
|
391
|
+
return f.apply(this, args);
|
|
392
|
+
} catch (e) {
|
|
393
|
+
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
function __wbg_adapter_213(arg0, arg1, arg2, arg3) {
|
|
397
397
|
wasm.wasm_bindgen__convert__closures__invoke2_mut__h01f06911cee68199(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
398
398
|
}
|
|
399
399
|
var ShellInputContext = Object.freeze({ FileInput: 0, "0": "FileInput" });
|
|
@@ -490,6 +490,12 @@ function __wbg_get_imports() {
|
|
|
490
490
|
return addHeapObject(ret);
|
|
491
491
|
}, arguments);
|
|
492
492
|
};
|
|
493
|
+
imports.wbg.__wbg_registerOPFSFileName_8efb2b5d0df8d9a7 = function() {
|
|
494
|
+
return handleError(function(arg0, arg1, arg2) {
|
|
495
|
+
const ret = getObject(arg0).registerOPFSFileName(getStringFromWasm0(arg1, arg2));
|
|
496
|
+
return addHeapObject(ret);
|
|
497
|
+
}, arguments);
|
|
498
|
+
};
|
|
493
499
|
imports.wbg.__wbg_exportFileStatistics_6b72eb40ca2eb4d5 = function() {
|
|
494
500
|
return handleError(function(arg0, arg1, arg2) {
|
|
495
501
|
const ret = getObject(arg0).exportFileStatistics(getStringFromWasm0(arg1, arg2));
|
|
@@ -654,52 +660,57 @@ function __wbg_get_imports() {
|
|
|
654
660
|
imports.wbg.__wbg_fit_cdd1076e3e5970b7 = function(arg0) {
|
|
655
661
|
getObject(arg0).fit();
|
|
656
662
|
};
|
|
657
|
-
imports.wbg.
|
|
658
|
-
|
|
659
|
-
|
|
663
|
+
imports.wbg.__wbg_disconnect_d9855433758f0afc = function() {
|
|
664
|
+
return handleError(function(arg0, arg1) {
|
|
665
|
+
const ret = getObject(arg0).disconnect(arg1 >>> 0);
|
|
666
|
+
return addHeapObject(ret);
|
|
667
|
+
}, arguments);
|
|
660
668
|
};
|
|
661
|
-
imports.wbg.
|
|
662
|
-
const
|
|
663
|
-
|
|
669
|
+
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
670
|
+
const obj = takeObject(arg0).original;
|
|
671
|
+
if (obj.cnt-- == 1) {
|
|
672
|
+
obj.a = 0;
|
|
673
|
+
return true;
|
|
674
|
+
}
|
|
675
|
+
const ret = false;
|
|
676
|
+
return ret;
|
|
664
677
|
};
|
|
665
|
-
imports.wbg.
|
|
666
|
-
|
|
667
|
-
return addHeapObject(ret);
|
|
678
|
+
imports.wbg.__wbg_setrows_6b947e6079c486dc = function(arg0, arg1) {
|
|
679
|
+
getObject(arg0).rows = arg1 >>> 0;
|
|
668
680
|
};
|
|
669
|
-
imports.wbg.
|
|
670
|
-
|
|
671
|
-
return addHeapObject(ret);
|
|
681
|
+
imports.wbg.__wbg_setcursorBlink_8a3f7244eb29b1f6 = function(arg0, arg1) {
|
|
682
|
+
getObject(arg0).cursorBlink = arg1 !== 0;
|
|
672
683
|
};
|
|
673
|
-
imports.wbg.
|
|
674
|
-
|
|
675
|
-
return addHeapObject(ret);
|
|
684
|
+
imports.wbg.__wbg_setcursorWidth_55abde268dea1312 = function(arg0, arg1) {
|
|
685
|
+
getObject(arg0).cursorWidth = arg1 >>> 0;
|
|
676
686
|
};
|
|
677
|
-
imports.wbg.
|
|
678
|
-
const ret = getObject(
|
|
679
|
-
|
|
687
|
+
imports.wbg.__wbg_fontFamily_204223b3338f8381 = function(arg0, arg1) {
|
|
688
|
+
const ret = getObject(arg1).fontFamily;
|
|
689
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
690
|
+
const len1 = WASM_VECTOR_LEN;
|
|
691
|
+
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
692
|
+
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
680
693
|
};
|
|
681
|
-
imports.wbg.
|
|
682
|
-
|
|
683
|
-
return addHeapObject(ret);
|
|
694
|
+
imports.wbg.__wbg_setfontFamily_a0645fa4f7aaaf21 = function(arg0, arg1, arg2) {
|
|
695
|
+
getObject(arg0).fontFamily = getStringFromWasm0(arg1, arg2);
|
|
684
696
|
};
|
|
685
|
-
imports.wbg.
|
|
686
|
-
|
|
687
|
-
return addHeapObject(ret);
|
|
697
|
+
imports.wbg.__wbg_setfontSize_11962e753390bde1 = function(arg0, arg1) {
|
|
698
|
+
getObject(arg0).fontSize = arg1 >>> 0;
|
|
688
699
|
};
|
|
689
|
-
imports.wbg.
|
|
690
|
-
|
|
691
|
-
const ret = getObject(arg0).disconnect(arg1 >>> 0);
|
|
692
|
-
return addHeapObject(ret);
|
|
693
|
-
}, arguments);
|
|
700
|
+
imports.wbg.__wbg_setdrawBoldTextInBrightColors_4f711243dff6df11 = function(arg0, arg1) {
|
|
701
|
+
getObject(arg0).drawBoldTextInBrightColors = arg1 !== 0;
|
|
694
702
|
};
|
|
695
|
-
imports.wbg.
|
|
696
|
-
|
|
703
|
+
imports.wbg.__wbg_setrightClickSelectsWord_ede48f0595cd3fed = function(arg0, arg1) {
|
|
704
|
+
getObject(arg0).rightClickSelectsWord = arg1 !== 0;
|
|
697
705
|
};
|
|
698
|
-
imports.wbg.
|
|
699
|
-
|
|
706
|
+
imports.wbg.__wbg_setallowProposedApi_0147ac2b5a9906b3 = function(arg0, arg1) {
|
|
707
|
+
getObject(arg0).allowProposedApi = arg1 !== 0;
|
|
700
708
|
};
|
|
701
|
-
imports.wbg.
|
|
702
|
-
|
|
709
|
+
imports.wbg.__wbg_setbrightYellow_deb3fbc58aa44642 = function(arg0, arg1, arg2) {
|
|
710
|
+
getObject(arg0).brightYellow = getStringFromWasm0(arg1, arg2);
|
|
711
|
+
};
|
|
712
|
+
imports.wbg.__wbg_setforeground_87dc40b78955df05 = function(arg0, arg1, arg2) {
|
|
713
|
+
getObject(arg0).foreground = getStringFromWasm0(arg1, arg2);
|
|
703
714
|
};
|
|
704
715
|
imports.wbg.__wbg_backgroundColor_17a9784f0207d5b0 = function(arg0, arg1) {
|
|
705
716
|
const ret = getObject(arg1).backgroundColor;
|
|
@@ -708,12 +719,18 @@ function __wbg_get_imports() {
|
|
|
708
719
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
709
720
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
710
721
|
};
|
|
711
|
-
imports.wbg.
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
722
|
+
imports.wbg.__wbg_setbackground_550386b829ec5c24 = function(arg0, arg1, arg2) {
|
|
723
|
+
getObject(arg0).background = getStringFromWasm0(arg1, arg2);
|
|
724
|
+
};
|
|
725
|
+
imports.wbg.__wbg_settheme_4e67878b7d6cc0fc = function(arg0, arg1) {
|
|
726
|
+
getObject(arg0).theme = getObject(arg1);
|
|
727
|
+
};
|
|
728
|
+
imports.wbg.__wbg_open_7d3a0690ea9e5a45 = function(arg0, arg1) {
|
|
729
|
+
getObject(arg0).open(takeObject(arg1));
|
|
730
|
+
};
|
|
731
|
+
imports.wbg.__wbg_new_70821bf9dbd17152 = function(arg0) {
|
|
732
|
+
const ret = new import_xterm_addon_webgl.WebglAddon(arg0 === 16777215 ? void 0 : arg0 !== 0);
|
|
733
|
+
return addHeapObject(ret);
|
|
717
734
|
};
|
|
718
735
|
imports.wbg.__wbg_instanceof_WebglAddon_c39f68697a31af73 = function(arg0) {
|
|
719
736
|
let result;
|
|
@@ -725,6 +742,13 @@ function __wbg_get_imports() {
|
|
|
725
742
|
const ret = result;
|
|
726
743
|
return ret;
|
|
727
744
|
};
|
|
745
|
+
imports.wbg.__wbg_loadAddon_1bfe744e6f456990 = function(arg0, arg1) {
|
|
746
|
+
getObject(arg0).loadAddon(takeObject(arg1));
|
|
747
|
+
};
|
|
748
|
+
imports.wbg.__wbg_new_92aa50f448dac851 = function(arg0, arg1, arg2) {
|
|
749
|
+
const ret = new import_xterm_addon_web_links.WebLinksAddon(getObject(arg0), getObject(arg1), arg2 === 16777215 ? void 0 : arg2 !== 0);
|
|
750
|
+
return addHeapObject(ret);
|
|
751
|
+
};
|
|
728
752
|
imports.wbg.__wbg_instanceof_WebLinksAddon_fbcf4efb54881c53 = function(arg0) {
|
|
729
753
|
let result;
|
|
730
754
|
try {
|
|
@@ -743,15 +767,24 @@ function __wbg_get_imports() {
|
|
|
743
767
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
744
768
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
745
769
|
};
|
|
746
|
-
imports.wbg.
|
|
747
|
-
|
|
770
|
+
imports.wbg.__wbg_log_8bb2c010ce15af48 = function(arg0, arg1) {
|
|
771
|
+
console.log(getStringFromWasm0(arg0, arg1));
|
|
772
|
+
};
|
|
773
|
+
imports.wbg.__wbg_error_a84695ce32854879 = function(arg0, arg1) {
|
|
774
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
775
|
+
};
|
|
776
|
+
imports.wbg.__wbg_warn_d85b304f0e70f5ac = function(arg0, arg1) {
|
|
777
|
+
console.warn(getStringFromWasm0(arg0, arg1));
|
|
778
|
+
};
|
|
779
|
+
imports.wbg.__wbg_static_accessor_PACKAGE_NAME_0af717684e189e55 = function(arg0) {
|
|
780
|
+
const ret = import_duckdb_wasm.PACKAGE_NAME;
|
|
748
781
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
749
782
|
const len1 = WASM_VECTOR_LEN;
|
|
750
783
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
751
784
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
752
785
|
};
|
|
753
|
-
imports.wbg.
|
|
754
|
-
const ret = import_duckdb_wasm.
|
|
786
|
+
imports.wbg.__wbg_static_accessor_PACKAGE_VERSION_549ba11794cf5003 = function(arg0) {
|
|
787
|
+
const ret = import_duckdb_wasm.PACKAGE_VERSION;
|
|
755
788
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
756
789
|
const len1 = WASM_VECTOR_LEN;
|
|
757
790
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
@@ -761,63 +794,36 @@ function __wbg_get_imports() {
|
|
|
761
794
|
const ret = new import_xterm_addon_fit.FitAddon();
|
|
762
795
|
return addHeapObject(ret);
|
|
763
796
|
};
|
|
764
|
-
imports.wbg.
|
|
765
|
-
const
|
|
766
|
-
|
|
767
|
-
obj.a = 0;
|
|
768
|
-
return true;
|
|
769
|
-
}
|
|
770
|
-
const ret = false;
|
|
771
|
-
return ret;
|
|
772
|
-
};
|
|
773
|
-
imports.wbg.__wbg_setallowProposedApi_0147ac2b5a9906b3 = function(arg0, arg1) {
|
|
774
|
-
getObject(arg0).allowProposedApi = arg1 !== 0;
|
|
775
|
-
};
|
|
776
|
-
imports.wbg.__wbg_setcursorBlink_8a3f7244eb29b1f6 = function(arg0, arg1) {
|
|
777
|
-
getObject(arg0).cursorBlink = arg1 !== 0;
|
|
778
|
-
};
|
|
779
|
-
imports.wbg.__wbg_setcursorWidth_55abde268dea1312 = function(arg0, arg1) {
|
|
780
|
-
getObject(arg0).cursorWidth = arg1 >>> 0;
|
|
781
|
-
};
|
|
782
|
-
imports.wbg.__wbg_setdrawBoldTextInBrightColors_4f711243dff6df11 = function(arg0, arg1) {
|
|
783
|
-
getObject(arg0).drawBoldTextInBrightColors = arg1 !== 0;
|
|
784
|
-
};
|
|
785
|
-
imports.wbg.__wbg_setfontSize_11962e753390bde1 = function(arg0, arg1) {
|
|
786
|
-
getObject(arg0).fontSize = arg1 >>> 0;
|
|
787
|
-
};
|
|
788
|
-
imports.wbg.__wbg_setfontFamily_a0645fa4f7aaaf21 = function(arg0, arg1, arg2) {
|
|
789
|
-
getObject(arg0).fontFamily = getStringFromWasm0(arg1, arg2);
|
|
790
|
-
};
|
|
791
|
-
imports.wbg.__wbg_setrightClickSelectsWord_ede48f0595cd3fed = function(arg0, arg1) {
|
|
792
|
-
getObject(arg0).rightClickSelectsWord = arg1 !== 0;
|
|
793
|
-
};
|
|
794
|
-
imports.wbg.__wbg_setrows_6b947e6079c486dc = function(arg0, arg1) {
|
|
795
|
-
getObject(arg0).rows = arg1 >>> 0;
|
|
796
|
-
};
|
|
797
|
-
imports.wbg.__wbg_settheme_4e67878b7d6cc0fc = function(arg0, arg1) {
|
|
798
|
-
getObject(arg0).theme = getObject(arg1);
|
|
797
|
+
imports.wbg.__wbg_blockStats_14f17a14c4573f3d = function(arg0) {
|
|
798
|
+
const ret = getObject(arg0).blockStats;
|
|
799
|
+
return addHeapObject(ret);
|
|
799
800
|
};
|
|
800
|
-
imports.wbg.
|
|
801
|
-
getObject(arg0).
|
|
801
|
+
imports.wbg.__wbg_totalFileWrites_1b38029d29f47d43 = function(arg0) {
|
|
802
|
+
const ret = getObject(arg0).totalFileWrites;
|
|
803
|
+
return addHeapObject(ret);
|
|
802
804
|
};
|
|
803
|
-
imports.wbg.
|
|
804
|
-
getObject(arg0).
|
|
805
|
+
imports.wbg.__wbg_totalFileReadsAhead_02c25545b2f63323 = function(arg0) {
|
|
806
|
+
const ret = getObject(arg0).totalFileReadsAhead;
|
|
807
|
+
return addHeapObject(ret);
|
|
805
808
|
};
|
|
806
|
-
imports.wbg.
|
|
807
|
-
getObject(arg0).
|
|
809
|
+
imports.wbg.__wbg_totalFileReadsCold_304476ed0c49e111 = function(arg0) {
|
|
810
|
+
const ret = getObject(arg0).totalFileReadsCold;
|
|
811
|
+
return addHeapObject(ret);
|
|
808
812
|
};
|
|
809
|
-
imports.wbg.
|
|
810
|
-
getObject(arg0).
|
|
813
|
+
imports.wbg.__wbg_totalFileReadsCached_2e8edfe7dbf14351 = function(arg0) {
|
|
814
|
+
const ret = getObject(arg0).totalFileReadsCached;
|
|
815
|
+
return addHeapObject(ret);
|
|
811
816
|
};
|
|
812
|
-
imports.wbg.
|
|
813
|
-
getObject(arg0).
|
|
817
|
+
imports.wbg.__wbg_totalPageAccesses_2f654448ea273878 = function(arg0) {
|
|
818
|
+
const ret = getObject(arg0).totalPageAccesses;
|
|
819
|
+
return addHeapObject(ret);
|
|
814
820
|
};
|
|
815
|
-
imports.wbg.
|
|
816
|
-
const ret =
|
|
821
|
+
imports.wbg.__wbg_totalPageLoads_1ce10deb8828d935 = function(arg0) {
|
|
822
|
+
const ret = getObject(arg0).totalPageLoads;
|
|
817
823
|
return addHeapObject(ret);
|
|
818
824
|
};
|
|
819
|
-
imports.wbg.
|
|
820
|
-
const ret =
|
|
825
|
+
imports.wbg.__wbg_blockSize_77bc4e968a2e845a = function(arg0) {
|
|
826
|
+
const ret = getObject(arg0).blockSize;
|
|
821
827
|
return addHeapObject(ret);
|
|
822
828
|
};
|
|
823
829
|
imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
|
|
@@ -957,7 +963,7 @@ function __wbg_get_imports() {
|
|
|
957
963
|
const a = state0.a;
|
|
958
964
|
state0.a = 0;
|
|
959
965
|
try {
|
|
960
|
-
return
|
|
966
|
+
return __wbg_adapter_213(a, state0.b, arg02, arg12);
|
|
961
967
|
} finally {
|
|
962
968
|
state0.a = a;
|
|
963
969
|
}
|
|
@@ -1009,12 +1015,12 @@ function __wbg_get_imports() {
|
|
|
1009
1015
|
const ret = wasm.memory;
|
|
1010
1016
|
return addHeapObject(ret);
|
|
1011
1017
|
};
|
|
1012
|
-
imports.wbg.
|
|
1013
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1018
|
+
imports.wbg.__wbindgen_closure_wrapper479 = function(arg0, arg1, arg2) {
|
|
1019
|
+
const ret = makeMutClosure(arg0, arg1, 144, __wbg_adapter_22);
|
|
1014
1020
|
return addHeapObject(ret);
|
|
1015
1021
|
};
|
|
1016
|
-
imports.wbg.
|
|
1017
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1022
|
+
imports.wbg.__wbindgen_closure_wrapper935 = function(arg0, arg1, arg2) {
|
|
1023
|
+
const ret = makeMutClosure(arg0, arg1, 196, __wbg_adapter_25);
|
|
1018
1024
|
return addHeapObject(ret);
|
|
1019
1025
|
};
|
|
1020
1026
|
return imports;
|