@biomejs/wasm-nodejs 2.3.4 → 2.3.5
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/biome_wasm.d.ts +31 -1
- package/biome_wasm.js +146 -146
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/biome_wasm.d.ts
CHANGED
|
@@ -1609,6 +1609,10 @@ interface Nursery {
|
|
|
1609
1609
|
* Enables the recommended rules for this group
|
|
1610
1610
|
*/
|
|
1611
1611
|
recommended?: boolean;
|
|
1612
|
+
/**
|
|
1613
|
+
* Require Array#sort and Array#toSorted calls to always provide a compareFunction.
|
|
1614
|
+
*/
|
|
1615
|
+
useArraySortCompare?: RuleConfiguration_for_UseArraySortCompareOptions;
|
|
1612
1616
|
/**
|
|
1613
1617
|
* Enforce consistent arrow function bodies.
|
|
1614
1618
|
*/
|
|
@@ -2968,6 +2972,9 @@ type RuleConfiguration_for_NoVueReservedKeysOptions =
|
|
|
2968
2972
|
type RuleConfiguration_for_NoVueReservedPropsOptions =
|
|
2969
2973
|
| RulePlainConfiguration
|
|
2970
2974
|
| RuleWithOptions_for_NoVueReservedPropsOptions;
|
|
2975
|
+
type RuleConfiguration_for_UseArraySortCompareOptions =
|
|
2976
|
+
| RulePlainConfiguration
|
|
2977
|
+
| RuleWithOptions_for_UseArraySortCompareOptions;
|
|
2971
2978
|
type RuleFixConfiguration_for_UseConsistentArrowReturnOptions =
|
|
2972
2979
|
| RulePlainConfiguration
|
|
2973
2980
|
| RuleWithFixOptions_for_UseConsistentArrowReturnOptions;
|
|
@@ -5583,6 +5590,16 @@ interface RuleWithOptions_for_NoVueReservedPropsOptions {
|
|
|
5583
5590
|
*/
|
|
5584
5591
|
options: NoVueReservedPropsOptions;
|
|
5585
5592
|
}
|
|
5593
|
+
interface RuleWithOptions_for_UseArraySortCompareOptions {
|
|
5594
|
+
/**
|
|
5595
|
+
* The severity of the emitted diagnostics by the rule
|
|
5596
|
+
*/
|
|
5597
|
+
level: RulePlainConfiguration;
|
|
5598
|
+
/**
|
|
5599
|
+
* Rule's options
|
|
5600
|
+
*/
|
|
5601
|
+
options: UseArraySortCompareOptions;
|
|
5602
|
+
}
|
|
5586
5603
|
interface RuleWithFixOptions_for_UseConsistentArrowReturnOptions {
|
|
5587
5604
|
/**
|
|
5588
5605
|
* The kind of the code actions emitted by the rule
|
|
@@ -8191,6 +8208,7 @@ interface NoVueDataObjectDeclarationOptions {}
|
|
|
8191
8208
|
interface NoVueDuplicateKeysOptions {}
|
|
8192
8209
|
interface NoVueReservedKeysOptions {}
|
|
8193
8210
|
interface NoVueReservedPropsOptions {}
|
|
8211
|
+
interface UseArraySortCompareOptions {}
|
|
8194
8212
|
interface UseConsistentArrowReturnOptions {
|
|
8195
8213
|
/**
|
|
8196
8214
|
* Determines whether the rule enforces a consistent style when the return value is an object literal.
|
|
@@ -8938,6 +8956,7 @@ type Category =
|
|
|
8938
8956
|
| "lint/nursery/noVueReservedKeys"
|
|
8939
8957
|
| "lint/nursery/noVueReservedProps"
|
|
8940
8958
|
| "lint/nursery/useAnchorHref"
|
|
8959
|
+
| "lint/nursery/useArraySortCompare"
|
|
8941
8960
|
| "lint/nursery/useBiomeSuppressionComment"
|
|
8942
8961
|
| "lint/nursery/useConsistentArrowReturn"
|
|
8943
8962
|
| "lint/nursery/useConsistentObjectDefinition"
|
|
@@ -9370,7 +9389,18 @@ interface HtmlFileSource {
|
|
|
9370
9389
|
interface GritFileSource {
|
|
9371
9390
|
variant: GritVariant;
|
|
9372
9391
|
}
|
|
9373
|
-
type EmbeddingKind =
|
|
9392
|
+
type EmbeddingKind =
|
|
9393
|
+
| "Vue"
|
|
9394
|
+
| "Svelte"
|
|
9395
|
+
| "None"
|
|
9396
|
+
| {
|
|
9397
|
+
Astro: {
|
|
9398
|
+
/**
|
|
9399
|
+
* Whether the script is inside Astro frontmatter
|
|
9400
|
+
*/
|
|
9401
|
+
frontmatter: boolean;
|
|
9402
|
+
};
|
|
9403
|
+
};
|
|
9374
9404
|
type Language = "javaScript" | { typeScript: { definition_file: boolean } };
|
|
9375
9405
|
type ModuleKind = "script" | "module";
|
|
9376
9406
|
type LanguageVariant = "standard" | "standardRestricted" | "jsx";
|
package/biome_wasm.js
CHANGED
|
@@ -87,26 +87,6 @@ function getDataViewMemory0() {
|
|
|
87
87
|
return cachedDataViewMemory0;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
function addToExternrefTable0(obj) {
|
|
91
|
-
const idx = wasm.__externref_table_alloc();
|
|
92
|
-
wasm.__wbindgen_export_4.set(idx, obj);
|
|
93
|
-
return idx;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
function handleError(f, args) {
|
|
97
|
-
try {
|
|
98
|
-
return f.apply(this, args);
|
|
99
|
-
} catch (e) {
|
|
100
|
-
const idx = addToExternrefTable0(e);
|
|
101
|
-
wasm.__wbindgen_exn_store(idx);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
function getArrayU8FromWasm0(ptr, len) {
|
|
106
|
-
ptr = ptr >>> 0;
|
|
107
|
-
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
90
|
function isLikeNone(x) {
|
|
111
91
|
return x === undefined || x === null;
|
|
112
92
|
}
|
|
@@ -176,6 +156,26 @@ function debugString(val) {
|
|
|
176
156
|
return className;
|
|
177
157
|
}
|
|
178
158
|
|
|
159
|
+
function addToExternrefTable0(obj) {
|
|
160
|
+
const idx = wasm.__externref_table_alloc();
|
|
161
|
+
wasm.__wbindgen_externrefs.set(idx, obj);
|
|
162
|
+
return idx;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
function handleError(f, args) {
|
|
166
|
+
try {
|
|
167
|
+
return f.apply(this, args);
|
|
168
|
+
} catch (e) {
|
|
169
|
+
const idx = addToExternrefTable0(e);
|
|
170
|
+
wasm.__wbindgen_exn_store(idx);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
175
|
+
ptr = ptr >>> 0;
|
|
176
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
179
|
function passArray8ToWasm0(arg, malloc) {
|
|
180
180
|
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
181
181
|
getUint8ArrayMemory0().set(arg, ptr / 1);
|
|
@@ -188,7 +188,7 @@ exports.main = function() {
|
|
|
188
188
|
};
|
|
189
189
|
|
|
190
190
|
function takeFromExternrefTable0(idx) {
|
|
191
|
-
const value = wasm.
|
|
191
|
+
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
192
192
|
wasm.__externref_table_dealloc(idx);
|
|
193
193
|
return value;
|
|
194
194
|
}
|
|
@@ -704,12 +704,12 @@ if (Symbol.dispose) Workspace.prototype[Symbol.dispose] = Workspace.prototype.fr
|
|
|
704
704
|
|
|
705
705
|
exports.Workspace = Workspace;
|
|
706
706
|
|
|
707
|
-
exports.
|
|
707
|
+
exports.__wbg_Error_e83987f665cf5504 = function(arg0, arg1) {
|
|
708
708
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
709
709
|
return ret;
|
|
710
710
|
};
|
|
711
711
|
|
|
712
|
-
exports.
|
|
712
|
+
exports.__wbg_Number_bb48ca12f395cd08 = function(arg0) {
|
|
713
713
|
const ret = Number(arg0);
|
|
714
714
|
return ret;
|
|
715
715
|
};
|
|
@@ -722,17 +722,99 @@ exports.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
|
722
722
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
723
723
|
};
|
|
724
724
|
|
|
725
|
-
exports.
|
|
725
|
+
exports.__wbg___wbindgen_bigint_get_as_i64_f3ebc5a755000afd = function(arg0, arg1) {
|
|
726
|
+
const v = arg1;
|
|
727
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
728
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
729
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
730
|
+
};
|
|
731
|
+
|
|
732
|
+
exports.__wbg___wbindgen_boolean_get_6d5a1ee65bab5f68 = function(arg0) {
|
|
733
|
+
const v = arg0;
|
|
734
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
735
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
736
|
+
};
|
|
737
|
+
|
|
738
|
+
exports.__wbg___wbindgen_debug_string_df47ffb5e35e6763 = function(arg0, arg1) {
|
|
739
|
+
const ret = debugString(arg1);
|
|
740
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
741
|
+
const len1 = WASM_VECTOR_LEN;
|
|
742
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
743
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
744
|
+
};
|
|
745
|
+
|
|
746
|
+
exports.__wbg___wbindgen_in_bb933bd9e1b3bc0f = function(arg0, arg1) {
|
|
747
|
+
const ret = arg0 in arg1;
|
|
748
|
+
return ret;
|
|
749
|
+
};
|
|
750
|
+
|
|
751
|
+
exports.__wbg___wbindgen_is_bigint_cb320707dcd35f0b = function(arg0) {
|
|
752
|
+
const ret = typeof(arg0) === 'bigint';
|
|
753
|
+
return ret;
|
|
754
|
+
};
|
|
755
|
+
|
|
756
|
+
exports.__wbg___wbindgen_is_function_ee8a6c5833c90377 = function(arg0) {
|
|
757
|
+
const ret = typeof(arg0) === 'function';
|
|
758
|
+
return ret;
|
|
759
|
+
};
|
|
760
|
+
|
|
761
|
+
exports.__wbg___wbindgen_is_object_c818261d21f283a4 = function(arg0) {
|
|
762
|
+
const val = arg0;
|
|
763
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
764
|
+
return ret;
|
|
765
|
+
};
|
|
766
|
+
|
|
767
|
+
exports.__wbg___wbindgen_is_string_fbb76cb2940daafd = function(arg0) {
|
|
768
|
+
const ret = typeof(arg0) === 'string';
|
|
769
|
+
return ret;
|
|
770
|
+
};
|
|
771
|
+
|
|
772
|
+
exports.__wbg___wbindgen_is_undefined_2d472862bd29a478 = function(arg0) {
|
|
773
|
+
const ret = arg0 === undefined;
|
|
774
|
+
return ret;
|
|
775
|
+
};
|
|
776
|
+
|
|
777
|
+
exports.__wbg___wbindgen_jsval_eq_6b13ab83478b1c50 = function(arg0, arg1) {
|
|
778
|
+
const ret = arg0 === arg1;
|
|
779
|
+
return ret;
|
|
780
|
+
};
|
|
781
|
+
|
|
782
|
+
exports.__wbg___wbindgen_jsval_loose_eq_b664b38a2f582147 = function(arg0, arg1) {
|
|
783
|
+
const ret = arg0 == arg1;
|
|
784
|
+
return ret;
|
|
785
|
+
};
|
|
786
|
+
|
|
787
|
+
exports.__wbg___wbindgen_number_get_a20bf9b85341449d = function(arg0, arg1) {
|
|
788
|
+
const obj = arg1;
|
|
789
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
790
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
791
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
792
|
+
};
|
|
793
|
+
|
|
794
|
+
exports.__wbg___wbindgen_string_get_e4f06c90489ad01b = function(arg0, arg1) {
|
|
795
|
+
const obj = arg1;
|
|
796
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
797
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
798
|
+
var len1 = WASM_VECTOR_LEN;
|
|
799
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
800
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
801
|
+
};
|
|
802
|
+
|
|
803
|
+
exports.__wbg___wbindgen_throw_b855445ff6a94295 = function(arg0, arg1) {
|
|
804
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
805
|
+
};
|
|
806
|
+
|
|
807
|
+
exports.__wbg_call_e762c39fa8ea36bf = function() { return handleError(function (arg0, arg1) {
|
|
726
808
|
const ret = arg0.call(arg1);
|
|
727
809
|
return ret;
|
|
728
810
|
}, arguments) };
|
|
729
811
|
|
|
730
|
-
exports.
|
|
812
|
+
exports.__wbg_done_2042aa2670fb1db1 = function(arg0) {
|
|
731
813
|
const ret = arg0.done;
|
|
732
814
|
return ret;
|
|
733
815
|
};
|
|
734
816
|
|
|
735
|
-
exports.
|
|
817
|
+
exports.__wbg_entries_e171b586f8f6bdbf = function(arg0) {
|
|
736
818
|
const ret = Object.entries(arg0);
|
|
737
819
|
return ret;
|
|
738
820
|
};
|
|
@@ -749,22 +831,22 @@ exports.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
|
|
|
749
831
|
}
|
|
750
832
|
};
|
|
751
833
|
|
|
752
|
-
exports.
|
|
834
|
+
exports.__wbg_get_7bed016f185add81 = function(arg0, arg1) {
|
|
753
835
|
const ret = arg0[arg1 >>> 0];
|
|
754
836
|
return ret;
|
|
755
837
|
};
|
|
756
838
|
|
|
757
|
-
exports.
|
|
839
|
+
exports.__wbg_get_efcb449f58ec27c2 = function() { return handleError(function (arg0, arg1) {
|
|
758
840
|
const ret = Reflect.get(arg0, arg1);
|
|
759
841
|
return ret;
|
|
760
842
|
}, arguments) };
|
|
761
843
|
|
|
762
|
-
exports.
|
|
844
|
+
exports.__wbg_get_with_ref_key_1dc361bd10053bfe = function(arg0, arg1) {
|
|
763
845
|
const ret = arg0[arg1];
|
|
764
846
|
return ret;
|
|
765
847
|
};
|
|
766
848
|
|
|
767
|
-
exports.
|
|
849
|
+
exports.__wbg_instanceof_ArrayBuffer_70beb1189ca63b38 = function(arg0) {
|
|
768
850
|
let result;
|
|
769
851
|
try {
|
|
770
852
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -775,7 +857,7 @@ exports.__wbg_instanceof_ArrayBuffer_67f3012529f6a2dd = function(arg0) {
|
|
|
775
857
|
return ret;
|
|
776
858
|
};
|
|
777
859
|
|
|
778
|
-
exports.
|
|
860
|
+
exports.__wbg_instanceof_Map_8579b5e2ab5437c7 = function(arg0) {
|
|
779
861
|
let result;
|
|
780
862
|
try {
|
|
781
863
|
result = arg0 instanceof Map;
|
|
@@ -786,7 +868,7 @@ exports.__wbg_instanceof_Map_ebb01a5b6b5ffd0b = function(arg0) {
|
|
|
786
868
|
return ret;
|
|
787
869
|
};
|
|
788
870
|
|
|
789
|
-
exports.
|
|
871
|
+
exports.__wbg_instanceof_Uint8Array_20c8e73002f7af98 = function(arg0) {
|
|
790
872
|
let result;
|
|
791
873
|
try {
|
|
792
874
|
result = arg0 instanceof Uint8Array;
|
|
@@ -797,76 +879,76 @@ exports.__wbg_instanceof_Uint8Array_9a8378d955933db7 = function(arg0) {
|
|
|
797
879
|
return ret;
|
|
798
880
|
};
|
|
799
881
|
|
|
800
|
-
exports.
|
|
882
|
+
exports.__wbg_isArray_96e0af9891d0945d = function(arg0) {
|
|
801
883
|
const ret = Array.isArray(arg0);
|
|
802
884
|
return ret;
|
|
803
885
|
};
|
|
804
886
|
|
|
805
|
-
exports.
|
|
887
|
+
exports.__wbg_isSafeInteger_d216eda7911dde36 = function(arg0) {
|
|
806
888
|
const ret = Number.isSafeInteger(arg0);
|
|
807
889
|
return ret;
|
|
808
890
|
};
|
|
809
891
|
|
|
810
|
-
exports.
|
|
892
|
+
exports.__wbg_iterator_e5822695327a3c39 = function() {
|
|
811
893
|
const ret = Symbol.iterator;
|
|
812
894
|
return ret;
|
|
813
895
|
};
|
|
814
896
|
|
|
815
|
-
exports.
|
|
897
|
+
exports.__wbg_length_69bca3cb64fc8748 = function(arg0) {
|
|
816
898
|
const ret = arg0.length;
|
|
817
899
|
return ret;
|
|
818
900
|
};
|
|
819
901
|
|
|
820
|
-
exports.
|
|
902
|
+
exports.__wbg_length_cdd215e10d9dd507 = function(arg0) {
|
|
821
903
|
const ret = arg0.length;
|
|
822
904
|
return ret;
|
|
823
905
|
};
|
|
824
906
|
|
|
825
|
-
exports.
|
|
907
|
+
exports.__wbg_new_1acc0b6eea89d040 = function() {
|
|
826
908
|
const ret = new Object();
|
|
827
909
|
return ret;
|
|
828
910
|
};
|
|
829
911
|
|
|
830
|
-
exports.
|
|
831
|
-
const ret = new
|
|
912
|
+
exports.__wbg_new_5a79be3ab53b8aa5 = function(arg0) {
|
|
913
|
+
const ret = new Uint8Array(arg0);
|
|
832
914
|
return ret;
|
|
833
915
|
};
|
|
834
916
|
|
|
835
|
-
exports.
|
|
917
|
+
exports.__wbg_new_68651c719dcda04e = function() {
|
|
836
918
|
const ret = new Map();
|
|
837
919
|
return ret;
|
|
838
920
|
};
|
|
839
921
|
|
|
840
|
-
exports.__wbg_new_638ebfaedbf32a5e = function(arg0) {
|
|
841
|
-
const ret = new Uint8Array(arg0);
|
|
842
|
-
return ret;
|
|
843
|
-
};
|
|
844
|
-
|
|
845
922
|
exports.__wbg_new_8a6f238a6ece86ea = function() {
|
|
846
923
|
const ret = new Error();
|
|
847
924
|
return ret;
|
|
848
925
|
};
|
|
849
926
|
|
|
850
|
-
exports.
|
|
927
|
+
exports.__wbg_new_a7442b4b19c1a356 = function(arg0, arg1) {
|
|
851
928
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
852
929
|
return ret;
|
|
853
930
|
};
|
|
854
931
|
|
|
855
|
-
exports.
|
|
856
|
-
const ret = new
|
|
932
|
+
exports.__wbg_new_e17d9f43105b08be = function() {
|
|
933
|
+
const ret = new Array();
|
|
857
934
|
return ret;
|
|
858
935
|
};
|
|
859
936
|
|
|
860
|
-
exports.
|
|
861
|
-
const ret = arg0
|
|
937
|
+
exports.__wbg_new_no_args_ee98eee5275000a4 = function(arg0, arg1) {
|
|
938
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
862
939
|
return ret;
|
|
863
940
|
};
|
|
864
941
|
|
|
865
|
-
exports.
|
|
942
|
+
exports.__wbg_next_020810e0ae8ebcb0 = function() { return handleError(function (arg0) {
|
|
866
943
|
const ret = arg0.next();
|
|
867
944
|
return ret;
|
|
868
945
|
}, arguments) };
|
|
869
946
|
|
|
947
|
+
exports.__wbg_next_2c826fe5dfec6b6a = function(arg0) {
|
|
948
|
+
const ret = arg0.next;
|
|
949
|
+
return ret;
|
|
950
|
+
};
|
|
951
|
+
|
|
870
952
|
exports.__wbg_now_2c95c9de01293173 = function(arg0) {
|
|
871
953
|
const ret = arg0.now();
|
|
872
954
|
return ret;
|
|
@@ -877,7 +959,7 @@ exports.__wbg_performance_7a3ffd0b17f663ad = function(arg0) {
|
|
|
877
959
|
return ret;
|
|
878
960
|
};
|
|
879
961
|
|
|
880
|
-
exports.
|
|
962
|
+
exports.__wbg_prototypesetcall_2a6620b6922694b2 = function(arg0, arg1, arg2) {
|
|
881
963
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
882
964
|
};
|
|
883
965
|
|
|
@@ -885,15 +967,15 @@ exports.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
|
885
967
|
arg0[arg1] = arg2;
|
|
886
968
|
};
|
|
887
969
|
|
|
888
|
-
exports.
|
|
889
|
-
arg0[arg1 >>> 0] = arg2;
|
|
890
|
-
};
|
|
891
|
-
|
|
892
|
-
exports.__wbg_set_b7f1cf4fae26fe2a = function(arg0, arg1, arg2) {
|
|
970
|
+
exports.__wbg_set_907fb406c34a251d = function(arg0, arg1, arg2) {
|
|
893
971
|
const ret = arg0.set(arg1, arg2);
|
|
894
972
|
return ret;
|
|
895
973
|
};
|
|
896
974
|
|
|
975
|
+
exports.__wbg_set_c213c871859d6500 = function(arg0, arg1, arg2) {
|
|
976
|
+
arg0[arg1 >>> 0] = arg2;
|
|
977
|
+
};
|
|
978
|
+
|
|
897
979
|
exports.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
|
|
898
980
|
const ret = arg1.stack;
|
|
899
981
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -902,113 +984,31 @@ exports.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
|
|
|
902
984
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
903
985
|
};
|
|
904
986
|
|
|
905
|
-
exports.
|
|
987
|
+
exports.__wbg_static_accessor_GLOBAL_89e1d9ac6a1b250e = function() {
|
|
906
988
|
const ret = typeof global === 'undefined' ? null : global;
|
|
907
989
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
908
990
|
};
|
|
909
991
|
|
|
910
|
-
exports.
|
|
992
|
+
exports.__wbg_static_accessor_GLOBAL_THIS_8b530f326a9e48ac = function() {
|
|
911
993
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
912
994
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
913
995
|
};
|
|
914
996
|
|
|
915
|
-
exports.
|
|
997
|
+
exports.__wbg_static_accessor_SELF_6fdf4b64710cc91b = function() {
|
|
916
998
|
const ret = typeof self === 'undefined' ? null : self;
|
|
917
999
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
918
1000
|
};
|
|
919
1001
|
|
|
920
|
-
exports.
|
|
1002
|
+
exports.__wbg_static_accessor_WINDOW_b45bfc5a37f6cfa2 = function() {
|
|
921
1003
|
const ret = typeof window === 'undefined' ? null : window;
|
|
922
1004
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
923
1005
|
};
|
|
924
1006
|
|
|
925
|
-
exports.
|
|
1007
|
+
exports.__wbg_value_692627309814bb8c = function(arg0) {
|
|
926
1008
|
const ret = arg0.value;
|
|
927
1009
|
return ret;
|
|
928
1010
|
};
|
|
929
1011
|
|
|
930
|
-
exports.__wbg_wbindgenbigintgetasi64_ac743ece6ab9bba1 = function(arg0, arg1) {
|
|
931
|
-
const v = arg1;
|
|
932
|
-
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
933
|
-
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
934
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
935
|
-
};
|
|
936
|
-
|
|
937
|
-
exports.__wbg_wbindgenbooleanget_3fe6f642c7d97746 = function(arg0) {
|
|
938
|
-
const v = arg0;
|
|
939
|
-
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
940
|
-
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
941
|
-
};
|
|
942
|
-
|
|
943
|
-
exports.__wbg_wbindgendebugstring_99ef257a3ddda34d = function(arg0, arg1) {
|
|
944
|
-
const ret = debugString(arg1);
|
|
945
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
946
|
-
const len1 = WASM_VECTOR_LEN;
|
|
947
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
948
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
949
|
-
};
|
|
950
|
-
|
|
951
|
-
exports.__wbg_wbindgenin_d7a1ee10933d2d55 = function(arg0, arg1) {
|
|
952
|
-
const ret = arg0 in arg1;
|
|
953
|
-
return ret;
|
|
954
|
-
};
|
|
955
|
-
|
|
956
|
-
exports.__wbg_wbindgenisbigint_ecb90cc08a5a9154 = function(arg0) {
|
|
957
|
-
const ret = typeof(arg0) === 'bigint';
|
|
958
|
-
return ret;
|
|
959
|
-
};
|
|
960
|
-
|
|
961
|
-
exports.__wbg_wbindgenisfunction_8cee7dce3725ae74 = function(arg0) {
|
|
962
|
-
const ret = typeof(arg0) === 'function';
|
|
963
|
-
return ret;
|
|
964
|
-
};
|
|
965
|
-
|
|
966
|
-
exports.__wbg_wbindgenisobject_307a53c6bd97fbf8 = function(arg0) {
|
|
967
|
-
const val = arg0;
|
|
968
|
-
const ret = typeof(val) === 'object' && val !== null;
|
|
969
|
-
return ret;
|
|
970
|
-
};
|
|
971
|
-
|
|
972
|
-
exports.__wbg_wbindgenisstring_d4fa939789f003b0 = function(arg0) {
|
|
973
|
-
const ret = typeof(arg0) === 'string';
|
|
974
|
-
return ret;
|
|
975
|
-
};
|
|
976
|
-
|
|
977
|
-
exports.__wbg_wbindgenisundefined_c4b71d073b92f3c5 = function(arg0) {
|
|
978
|
-
const ret = arg0 === undefined;
|
|
979
|
-
return ret;
|
|
980
|
-
};
|
|
981
|
-
|
|
982
|
-
exports.__wbg_wbindgenjsvaleq_e6f2ad59ccae1b58 = function(arg0, arg1) {
|
|
983
|
-
const ret = arg0 === arg1;
|
|
984
|
-
return ret;
|
|
985
|
-
};
|
|
986
|
-
|
|
987
|
-
exports.__wbg_wbindgenjsvallooseeq_9bec8c9be826bed1 = function(arg0, arg1) {
|
|
988
|
-
const ret = arg0 == arg1;
|
|
989
|
-
return ret;
|
|
990
|
-
};
|
|
991
|
-
|
|
992
|
-
exports.__wbg_wbindgennumberget_f74b4c7525ac05cb = function(arg0, arg1) {
|
|
993
|
-
const obj = arg1;
|
|
994
|
-
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
995
|
-
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
996
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
997
|
-
};
|
|
998
|
-
|
|
999
|
-
exports.__wbg_wbindgenstringget_0f16a6ddddef376f = function(arg0, arg1) {
|
|
1000
|
-
const obj = arg1;
|
|
1001
|
-
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1002
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1003
|
-
var len1 = WASM_VECTOR_LEN;
|
|
1004
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1005
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1006
|
-
};
|
|
1007
|
-
|
|
1008
|
-
exports.__wbg_wbindgenthrow_451ec1a8469d7eb6 = function(arg0, arg1) {
|
|
1009
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1010
|
-
};
|
|
1011
|
-
|
|
1012
1012
|
exports.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
1013
1013
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
1014
1014
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
@@ -1034,7 +1034,7 @@ exports.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
|
1034
1034
|
};
|
|
1035
1035
|
|
|
1036
1036
|
exports.__wbindgen_init_externref_table = function() {
|
|
1037
|
-
const table = wasm.
|
|
1037
|
+
const table = wasm.__wbindgen_externrefs;
|
|
1038
1038
|
const offset = table.grow(4);
|
|
1039
1039
|
table.set(0, undefined);
|
|
1040
1040
|
table.set(offset + 0, undefined);
|
package/biome_wasm_bg.wasm
CHANGED
|
Binary file
|