@next/swc-wasm-nodejs 15.0.2-canary.0 → 15.0.2-canary.10
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/package.json +1 -1
- package/wasm.js +38 -38
- package/wasm_bg.wasm +0 -0
package/package.json
CHANGED
package/wasm.js
CHANGED
|
@@ -640,19 +640,23 @@ module.exports.__wbg_instanceof_ArrayBuffer_9221fa854ffb71b5 = function(arg0) {
|
|
|
640
640
|
return ret;
|
|
641
641
|
};
|
|
642
642
|
|
|
643
|
-
module.exports.
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
643
|
+
module.exports.__wbg_new_70828a4353259d4b = function(arg0, arg1) {
|
|
644
|
+
try {
|
|
645
|
+
var state0 = {a: arg0, b: arg1};
|
|
646
|
+
var cb0 = (arg0, arg1) => {
|
|
647
|
+
const a = state0.a;
|
|
648
|
+
state0.a = 0;
|
|
649
|
+
try {
|
|
650
|
+
return __wbg_adapter_109(a, state0.b, arg0, arg1);
|
|
651
|
+
} finally {
|
|
652
|
+
state0.a = a;
|
|
653
|
+
}
|
|
654
|
+
};
|
|
655
|
+
const ret = new Promise(cb0);
|
|
656
|
+
return addHeapObject(ret);
|
|
657
|
+
} finally {
|
|
658
|
+
state0.a = state0.b = 0;
|
|
659
|
+
}
|
|
656
660
|
};
|
|
657
661
|
|
|
658
662
|
module.exports.__wbg_next_b2d3366343a208b3 = function() { return handleError(function (arg0) {
|
|
@@ -670,11 +674,31 @@ module.exports.__wbg_value_3158be908c80a75e = function(arg0) {
|
|
|
670
674
|
return addHeapObject(ret);
|
|
671
675
|
};
|
|
672
676
|
|
|
677
|
+
module.exports.__wbg_get_0ee8ea3c7c984c45 = function(arg0, arg1) {
|
|
678
|
+
const ret = getObject(arg0)[arg1 >>> 0];
|
|
679
|
+
return addHeapObject(ret);
|
|
680
|
+
};
|
|
681
|
+
|
|
682
|
+
module.exports.__wbg_entries_488960b196cfb6a5 = function(arg0) {
|
|
683
|
+
const ret = Object.entries(getObject(arg0));
|
|
684
|
+
return addHeapObject(ret);
|
|
685
|
+
};
|
|
686
|
+
|
|
687
|
+
module.exports.__wbg_length_161c0d89c6535c1d = function(arg0) {
|
|
688
|
+
const ret = getObject(arg0).length;
|
|
689
|
+
return ret;
|
|
690
|
+
};
|
|
691
|
+
|
|
673
692
|
module.exports.__wbindgen_is_bigint = function(arg0) {
|
|
674
693
|
const ret = typeof(getObject(arg0)) === 'bigint';
|
|
675
694
|
return ret;
|
|
676
695
|
};
|
|
677
696
|
|
|
697
|
+
module.exports.__wbg_isArray_e783c41d0dd19b44 = function(arg0) {
|
|
698
|
+
const ret = Array.isArray(getObject(arg0));
|
|
699
|
+
return ret;
|
|
700
|
+
};
|
|
701
|
+
|
|
678
702
|
module.exports.__wbg_isSafeInteger_a23a66ee7c41b273 = function(arg0) {
|
|
679
703
|
const ret = Number.isSafeInteger(getObject(arg0));
|
|
680
704
|
return ret;
|
|
@@ -707,11 +731,6 @@ module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
|
707
731
|
return addHeapObject(ret);
|
|
708
732
|
};
|
|
709
733
|
|
|
710
|
-
module.exports.__wbg_entries_488960b196cfb6a5 = function(arg0) {
|
|
711
|
-
const ret = Object.entries(getObject(arg0));
|
|
712
|
-
return addHeapObject(ret);
|
|
713
|
-
};
|
|
714
|
-
|
|
715
734
|
module.exports.__wbg_getwithrefkey_15c62c2b8546208d = function(arg0, arg1) {
|
|
716
735
|
const ret = getObject(arg0)[getObject(arg1)];
|
|
717
736
|
return addHeapObject(ret);
|
|
@@ -726,25 +745,6 @@ module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
|
|
|
726
745
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
727
746
|
};
|
|
728
747
|
|
|
729
|
-
module.exports.__wbg_new_70828a4353259d4b = function(arg0, arg1) {
|
|
730
|
-
try {
|
|
731
|
-
var state0 = {a: arg0, b: arg1};
|
|
732
|
-
var cb0 = (arg0, arg1) => {
|
|
733
|
-
const a = state0.a;
|
|
734
|
-
state0.a = 0;
|
|
735
|
-
try {
|
|
736
|
-
return __wbg_adapter_109(a, state0.b, arg0, arg1);
|
|
737
|
-
} finally {
|
|
738
|
-
state0.a = a;
|
|
739
|
-
}
|
|
740
|
-
};
|
|
741
|
-
const ret = new Promise(cb0);
|
|
742
|
-
return addHeapObject(ret);
|
|
743
|
-
} finally {
|
|
744
|
-
state0.a = state0.b = 0;
|
|
745
|
-
}
|
|
746
|
-
};
|
|
747
|
-
|
|
748
748
|
module.exports.__wbindgen_debug_string = function(arg0, arg1) {
|
|
749
749
|
const ret = debugString(getObject(arg1));
|
|
750
750
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -786,7 +786,7 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
|
|
|
786
786
|
return ret;
|
|
787
787
|
};
|
|
788
788
|
|
|
789
|
-
module.exports.
|
|
789
|
+
module.exports.__wbindgen_closure_wrapper24365 = function(arg0, arg1, arg2) {
|
|
790
790
|
const ret = makeMutClosure(arg0, arg1, 1811, __wbg_adapter_48);
|
|
791
791
|
return addHeapObject(ret);
|
|
792
792
|
};
|
package/wasm_bg.wasm
CHANGED
|
Binary file
|