@biomejs/wasm-bundler 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_bg.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_bg.js
CHANGED
|
@@ -97,26 +97,6 @@ function getDataViewMemory0() {
|
|
|
97
97
|
return cachedDataViewMemory0;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
function addToExternrefTable0(obj) {
|
|
101
|
-
const idx = wasm.__externref_table_alloc();
|
|
102
|
-
wasm.__wbindgen_export_4.set(idx, obj);
|
|
103
|
-
return idx;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
function handleError(f, args) {
|
|
107
|
-
try {
|
|
108
|
-
return f.apply(this, args);
|
|
109
|
-
} catch (e) {
|
|
110
|
-
const idx = addToExternrefTable0(e);
|
|
111
|
-
wasm.__wbindgen_exn_store(idx);
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
function getArrayU8FromWasm0(ptr, len) {
|
|
116
|
-
ptr = ptr >>> 0;
|
|
117
|
-
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
118
|
-
}
|
|
119
|
-
|
|
120
100
|
function isLikeNone(x) {
|
|
121
101
|
return x === undefined || x === null;
|
|
122
102
|
}
|
|
@@ -186,6 +166,26 @@ function debugString(val) {
|
|
|
186
166
|
return className;
|
|
187
167
|
}
|
|
188
168
|
|
|
169
|
+
function addToExternrefTable0(obj) {
|
|
170
|
+
const idx = wasm.__externref_table_alloc();
|
|
171
|
+
wasm.__wbindgen_externrefs.set(idx, obj);
|
|
172
|
+
return idx;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
function handleError(f, args) {
|
|
176
|
+
try {
|
|
177
|
+
return f.apply(this, args);
|
|
178
|
+
} catch (e) {
|
|
179
|
+
const idx = addToExternrefTable0(e);
|
|
180
|
+
wasm.__wbindgen_exn_store(idx);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
185
|
+
ptr = ptr >>> 0;
|
|
186
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
189
|
function passArray8ToWasm0(arg, malloc) {
|
|
190
190
|
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
191
191
|
getUint8ArrayMemory0().set(arg, ptr / 1);
|
|
@@ -198,7 +198,7 @@ export function main() {
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
function takeFromExternrefTable0(idx) {
|
|
201
|
-
const value = wasm.
|
|
201
|
+
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
202
202
|
wasm.__externref_table_dealloc(idx);
|
|
203
203
|
return value;
|
|
204
204
|
}
|
|
@@ -708,12 +708,12 @@ export class Workspace {
|
|
|
708
708
|
}
|
|
709
709
|
if (Symbol.dispose) Workspace.prototype[Symbol.dispose] = Workspace.prototype.free;
|
|
710
710
|
|
|
711
|
-
export function
|
|
711
|
+
export function __wbg_Error_e83987f665cf5504(arg0, arg1) {
|
|
712
712
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
713
713
|
return ret;
|
|
714
714
|
};
|
|
715
715
|
|
|
716
|
-
export function
|
|
716
|
+
export function __wbg_Number_bb48ca12f395cd08(arg0) {
|
|
717
717
|
const ret = Number(arg0);
|
|
718
718
|
return ret;
|
|
719
719
|
};
|
|
@@ -726,17 +726,99 @@ export function __wbg_String_8f0eb39a4a4c2f66(arg0, arg1) {
|
|
|
726
726
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
727
727
|
};
|
|
728
728
|
|
|
729
|
-
export function
|
|
729
|
+
export function __wbg___wbindgen_bigint_get_as_i64_f3ebc5a755000afd(arg0, arg1) {
|
|
730
|
+
const v = arg1;
|
|
731
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
732
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
733
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
734
|
+
};
|
|
735
|
+
|
|
736
|
+
export function __wbg___wbindgen_boolean_get_6d5a1ee65bab5f68(arg0) {
|
|
737
|
+
const v = arg0;
|
|
738
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
739
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
740
|
+
};
|
|
741
|
+
|
|
742
|
+
export function __wbg___wbindgen_debug_string_df47ffb5e35e6763(arg0, arg1) {
|
|
743
|
+
const ret = debugString(arg1);
|
|
744
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
745
|
+
const len1 = WASM_VECTOR_LEN;
|
|
746
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
747
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
748
|
+
};
|
|
749
|
+
|
|
750
|
+
export function __wbg___wbindgen_in_bb933bd9e1b3bc0f(arg0, arg1) {
|
|
751
|
+
const ret = arg0 in arg1;
|
|
752
|
+
return ret;
|
|
753
|
+
};
|
|
754
|
+
|
|
755
|
+
export function __wbg___wbindgen_is_bigint_cb320707dcd35f0b(arg0) {
|
|
756
|
+
const ret = typeof(arg0) === 'bigint';
|
|
757
|
+
return ret;
|
|
758
|
+
};
|
|
759
|
+
|
|
760
|
+
export function __wbg___wbindgen_is_function_ee8a6c5833c90377(arg0) {
|
|
761
|
+
const ret = typeof(arg0) === 'function';
|
|
762
|
+
return ret;
|
|
763
|
+
};
|
|
764
|
+
|
|
765
|
+
export function __wbg___wbindgen_is_object_c818261d21f283a4(arg0) {
|
|
766
|
+
const val = arg0;
|
|
767
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
768
|
+
return ret;
|
|
769
|
+
};
|
|
770
|
+
|
|
771
|
+
export function __wbg___wbindgen_is_string_fbb76cb2940daafd(arg0) {
|
|
772
|
+
const ret = typeof(arg0) === 'string';
|
|
773
|
+
return ret;
|
|
774
|
+
};
|
|
775
|
+
|
|
776
|
+
export function __wbg___wbindgen_is_undefined_2d472862bd29a478(arg0) {
|
|
777
|
+
const ret = arg0 === undefined;
|
|
778
|
+
return ret;
|
|
779
|
+
};
|
|
780
|
+
|
|
781
|
+
export function __wbg___wbindgen_jsval_eq_6b13ab83478b1c50(arg0, arg1) {
|
|
782
|
+
const ret = arg0 === arg1;
|
|
783
|
+
return ret;
|
|
784
|
+
};
|
|
785
|
+
|
|
786
|
+
export function __wbg___wbindgen_jsval_loose_eq_b664b38a2f582147(arg0, arg1) {
|
|
787
|
+
const ret = arg0 == arg1;
|
|
788
|
+
return ret;
|
|
789
|
+
};
|
|
790
|
+
|
|
791
|
+
export function __wbg___wbindgen_number_get_a20bf9b85341449d(arg0, arg1) {
|
|
792
|
+
const obj = arg1;
|
|
793
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
794
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
795
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
796
|
+
};
|
|
797
|
+
|
|
798
|
+
export function __wbg___wbindgen_string_get_e4f06c90489ad01b(arg0, arg1) {
|
|
799
|
+
const obj = arg1;
|
|
800
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
801
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
802
|
+
var len1 = WASM_VECTOR_LEN;
|
|
803
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
804
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
805
|
+
};
|
|
806
|
+
|
|
807
|
+
export function __wbg___wbindgen_throw_b855445ff6a94295(arg0, arg1) {
|
|
808
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
809
|
+
};
|
|
810
|
+
|
|
811
|
+
export function __wbg_call_e762c39fa8ea36bf() { return handleError(function (arg0, arg1) {
|
|
730
812
|
const ret = arg0.call(arg1);
|
|
731
813
|
return ret;
|
|
732
814
|
}, arguments) };
|
|
733
815
|
|
|
734
|
-
export function
|
|
816
|
+
export function __wbg_done_2042aa2670fb1db1(arg0) {
|
|
735
817
|
const ret = arg0.done;
|
|
736
818
|
return ret;
|
|
737
819
|
};
|
|
738
820
|
|
|
739
|
-
export function
|
|
821
|
+
export function __wbg_entries_e171b586f8f6bdbf(arg0) {
|
|
740
822
|
const ret = Object.entries(arg0);
|
|
741
823
|
return ret;
|
|
742
824
|
};
|
|
@@ -753,22 +835,22 @@ export function __wbg_error_7534b8e9a36f1ab4(arg0, arg1) {
|
|
|
753
835
|
}
|
|
754
836
|
};
|
|
755
837
|
|
|
756
|
-
export function
|
|
838
|
+
export function __wbg_get_7bed016f185add81(arg0, arg1) {
|
|
757
839
|
const ret = arg0[arg1 >>> 0];
|
|
758
840
|
return ret;
|
|
759
841
|
};
|
|
760
842
|
|
|
761
|
-
export function
|
|
843
|
+
export function __wbg_get_efcb449f58ec27c2() { return handleError(function (arg0, arg1) {
|
|
762
844
|
const ret = Reflect.get(arg0, arg1);
|
|
763
845
|
return ret;
|
|
764
846
|
}, arguments) };
|
|
765
847
|
|
|
766
|
-
export function
|
|
848
|
+
export function __wbg_get_with_ref_key_1dc361bd10053bfe(arg0, arg1) {
|
|
767
849
|
const ret = arg0[arg1];
|
|
768
850
|
return ret;
|
|
769
851
|
};
|
|
770
852
|
|
|
771
|
-
export function
|
|
853
|
+
export function __wbg_instanceof_ArrayBuffer_70beb1189ca63b38(arg0) {
|
|
772
854
|
let result;
|
|
773
855
|
try {
|
|
774
856
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -779,7 +861,7 @@ export function __wbg_instanceof_ArrayBuffer_67f3012529f6a2dd(arg0) {
|
|
|
779
861
|
return ret;
|
|
780
862
|
};
|
|
781
863
|
|
|
782
|
-
export function
|
|
864
|
+
export function __wbg_instanceof_Map_8579b5e2ab5437c7(arg0) {
|
|
783
865
|
let result;
|
|
784
866
|
try {
|
|
785
867
|
result = arg0 instanceof Map;
|
|
@@ -790,7 +872,7 @@ export function __wbg_instanceof_Map_ebb01a5b6b5ffd0b(arg0) {
|
|
|
790
872
|
return ret;
|
|
791
873
|
};
|
|
792
874
|
|
|
793
|
-
export function
|
|
875
|
+
export function __wbg_instanceof_Uint8Array_20c8e73002f7af98(arg0) {
|
|
794
876
|
let result;
|
|
795
877
|
try {
|
|
796
878
|
result = arg0 instanceof Uint8Array;
|
|
@@ -801,76 +883,76 @@ export function __wbg_instanceof_Uint8Array_9a8378d955933db7(arg0) {
|
|
|
801
883
|
return ret;
|
|
802
884
|
};
|
|
803
885
|
|
|
804
|
-
export function
|
|
886
|
+
export function __wbg_isArray_96e0af9891d0945d(arg0) {
|
|
805
887
|
const ret = Array.isArray(arg0);
|
|
806
888
|
return ret;
|
|
807
889
|
};
|
|
808
890
|
|
|
809
|
-
export function
|
|
891
|
+
export function __wbg_isSafeInteger_d216eda7911dde36(arg0) {
|
|
810
892
|
const ret = Number.isSafeInteger(arg0);
|
|
811
893
|
return ret;
|
|
812
894
|
};
|
|
813
895
|
|
|
814
|
-
export function
|
|
896
|
+
export function __wbg_iterator_e5822695327a3c39() {
|
|
815
897
|
const ret = Symbol.iterator;
|
|
816
898
|
return ret;
|
|
817
899
|
};
|
|
818
900
|
|
|
819
|
-
export function
|
|
901
|
+
export function __wbg_length_69bca3cb64fc8748(arg0) {
|
|
820
902
|
const ret = arg0.length;
|
|
821
903
|
return ret;
|
|
822
904
|
};
|
|
823
905
|
|
|
824
|
-
export function
|
|
906
|
+
export function __wbg_length_cdd215e10d9dd507(arg0) {
|
|
825
907
|
const ret = arg0.length;
|
|
826
908
|
return ret;
|
|
827
909
|
};
|
|
828
910
|
|
|
829
|
-
export function
|
|
911
|
+
export function __wbg_new_1acc0b6eea89d040() {
|
|
830
912
|
const ret = new Object();
|
|
831
913
|
return ret;
|
|
832
914
|
};
|
|
833
915
|
|
|
834
|
-
export function
|
|
835
|
-
const ret = new
|
|
916
|
+
export function __wbg_new_5a79be3ab53b8aa5(arg0) {
|
|
917
|
+
const ret = new Uint8Array(arg0);
|
|
836
918
|
return ret;
|
|
837
919
|
};
|
|
838
920
|
|
|
839
|
-
export function
|
|
921
|
+
export function __wbg_new_68651c719dcda04e() {
|
|
840
922
|
const ret = new Map();
|
|
841
923
|
return ret;
|
|
842
924
|
};
|
|
843
925
|
|
|
844
|
-
export function __wbg_new_638ebfaedbf32a5e(arg0) {
|
|
845
|
-
const ret = new Uint8Array(arg0);
|
|
846
|
-
return ret;
|
|
847
|
-
};
|
|
848
|
-
|
|
849
926
|
export function __wbg_new_8a6f238a6ece86ea() {
|
|
850
927
|
const ret = new Error();
|
|
851
928
|
return ret;
|
|
852
929
|
};
|
|
853
930
|
|
|
854
|
-
export function
|
|
931
|
+
export function __wbg_new_a7442b4b19c1a356(arg0, arg1) {
|
|
855
932
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
856
933
|
return ret;
|
|
857
934
|
};
|
|
858
935
|
|
|
859
|
-
export function
|
|
860
|
-
const ret = new
|
|
936
|
+
export function __wbg_new_e17d9f43105b08be() {
|
|
937
|
+
const ret = new Array();
|
|
861
938
|
return ret;
|
|
862
939
|
};
|
|
863
940
|
|
|
864
|
-
export function
|
|
865
|
-
const ret = arg0
|
|
941
|
+
export function __wbg_new_no_args_ee98eee5275000a4(arg0, arg1) {
|
|
942
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
866
943
|
return ret;
|
|
867
944
|
};
|
|
868
945
|
|
|
869
|
-
export function
|
|
946
|
+
export function __wbg_next_020810e0ae8ebcb0() { return handleError(function (arg0) {
|
|
870
947
|
const ret = arg0.next();
|
|
871
948
|
return ret;
|
|
872
949
|
}, arguments) };
|
|
873
950
|
|
|
951
|
+
export function __wbg_next_2c826fe5dfec6b6a(arg0) {
|
|
952
|
+
const ret = arg0.next;
|
|
953
|
+
return ret;
|
|
954
|
+
};
|
|
955
|
+
|
|
874
956
|
export function __wbg_now_2c95c9de01293173(arg0) {
|
|
875
957
|
const ret = arg0.now();
|
|
876
958
|
return ret;
|
|
@@ -881,7 +963,7 @@ export function __wbg_performance_7a3ffd0b17f663ad(arg0) {
|
|
|
881
963
|
return ret;
|
|
882
964
|
};
|
|
883
965
|
|
|
884
|
-
export function
|
|
966
|
+
export function __wbg_prototypesetcall_2a6620b6922694b2(arg0, arg1, arg2) {
|
|
885
967
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
886
968
|
};
|
|
887
969
|
|
|
@@ -889,15 +971,15 @@ export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
|
|
889
971
|
arg0[arg1] = arg2;
|
|
890
972
|
};
|
|
891
973
|
|
|
892
|
-
export function
|
|
893
|
-
arg0[arg1 >>> 0] = arg2;
|
|
894
|
-
};
|
|
895
|
-
|
|
896
|
-
export function __wbg_set_b7f1cf4fae26fe2a(arg0, arg1, arg2) {
|
|
974
|
+
export function __wbg_set_907fb406c34a251d(arg0, arg1, arg2) {
|
|
897
975
|
const ret = arg0.set(arg1, arg2);
|
|
898
976
|
return ret;
|
|
899
977
|
};
|
|
900
978
|
|
|
979
|
+
export function __wbg_set_c213c871859d6500(arg0, arg1, arg2) {
|
|
980
|
+
arg0[arg1 >>> 0] = arg2;
|
|
981
|
+
};
|
|
982
|
+
|
|
901
983
|
export function __wbg_stack_0ed75d68575b0f3c(arg0, arg1) {
|
|
902
984
|
const ret = arg1.stack;
|
|
903
985
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -906,113 +988,31 @@ export function __wbg_stack_0ed75d68575b0f3c(arg0, arg1) {
|
|
|
906
988
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
907
989
|
};
|
|
908
990
|
|
|
909
|
-
export function
|
|
991
|
+
export function __wbg_static_accessor_GLOBAL_89e1d9ac6a1b250e() {
|
|
910
992
|
const ret = typeof global === 'undefined' ? null : global;
|
|
911
993
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
912
994
|
};
|
|
913
995
|
|
|
914
|
-
export function
|
|
996
|
+
export function __wbg_static_accessor_GLOBAL_THIS_8b530f326a9e48ac() {
|
|
915
997
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
916
998
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
917
999
|
};
|
|
918
1000
|
|
|
919
|
-
export function
|
|
1001
|
+
export function __wbg_static_accessor_SELF_6fdf4b64710cc91b() {
|
|
920
1002
|
const ret = typeof self === 'undefined' ? null : self;
|
|
921
1003
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
922
1004
|
};
|
|
923
1005
|
|
|
924
|
-
export function
|
|
1006
|
+
export function __wbg_static_accessor_WINDOW_b45bfc5a37f6cfa2() {
|
|
925
1007
|
const ret = typeof window === 'undefined' ? null : window;
|
|
926
1008
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
927
1009
|
};
|
|
928
1010
|
|
|
929
|
-
export function
|
|
1011
|
+
export function __wbg_value_692627309814bb8c(arg0) {
|
|
930
1012
|
const ret = arg0.value;
|
|
931
1013
|
return ret;
|
|
932
1014
|
};
|
|
933
1015
|
|
|
934
|
-
export function __wbg_wbindgenbigintgetasi64_ac743ece6ab9bba1(arg0, arg1) {
|
|
935
|
-
const v = arg1;
|
|
936
|
-
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
937
|
-
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
938
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
939
|
-
};
|
|
940
|
-
|
|
941
|
-
export function __wbg_wbindgenbooleanget_3fe6f642c7d97746(arg0) {
|
|
942
|
-
const v = arg0;
|
|
943
|
-
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
944
|
-
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
945
|
-
};
|
|
946
|
-
|
|
947
|
-
export function __wbg_wbindgendebugstring_99ef257a3ddda34d(arg0, arg1) {
|
|
948
|
-
const ret = debugString(arg1);
|
|
949
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
950
|
-
const len1 = WASM_VECTOR_LEN;
|
|
951
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
952
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
953
|
-
};
|
|
954
|
-
|
|
955
|
-
export function __wbg_wbindgenin_d7a1ee10933d2d55(arg0, arg1) {
|
|
956
|
-
const ret = arg0 in arg1;
|
|
957
|
-
return ret;
|
|
958
|
-
};
|
|
959
|
-
|
|
960
|
-
export function __wbg_wbindgenisbigint_ecb90cc08a5a9154(arg0) {
|
|
961
|
-
const ret = typeof(arg0) === 'bigint';
|
|
962
|
-
return ret;
|
|
963
|
-
};
|
|
964
|
-
|
|
965
|
-
export function __wbg_wbindgenisfunction_8cee7dce3725ae74(arg0) {
|
|
966
|
-
const ret = typeof(arg0) === 'function';
|
|
967
|
-
return ret;
|
|
968
|
-
};
|
|
969
|
-
|
|
970
|
-
export function __wbg_wbindgenisobject_307a53c6bd97fbf8(arg0) {
|
|
971
|
-
const val = arg0;
|
|
972
|
-
const ret = typeof(val) === 'object' && val !== null;
|
|
973
|
-
return ret;
|
|
974
|
-
};
|
|
975
|
-
|
|
976
|
-
export function __wbg_wbindgenisstring_d4fa939789f003b0(arg0) {
|
|
977
|
-
const ret = typeof(arg0) === 'string';
|
|
978
|
-
return ret;
|
|
979
|
-
};
|
|
980
|
-
|
|
981
|
-
export function __wbg_wbindgenisundefined_c4b71d073b92f3c5(arg0) {
|
|
982
|
-
const ret = arg0 === undefined;
|
|
983
|
-
return ret;
|
|
984
|
-
};
|
|
985
|
-
|
|
986
|
-
export function __wbg_wbindgenjsvaleq_e6f2ad59ccae1b58(arg0, arg1) {
|
|
987
|
-
const ret = arg0 === arg1;
|
|
988
|
-
return ret;
|
|
989
|
-
};
|
|
990
|
-
|
|
991
|
-
export function __wbg_wbindgenjsvallooseeq_9bec8c9be826bed1(arg0, arg1) {
|
|
992
|
-
const ret = arg0 == arg1;
|
|
993
|
-
return ret;
|
|
994
|
-
};
|
|
995
|
-
|
|
996
|
-
export function __wbg_wbindgennumberget_f74b4c7525ac05cb(arg0, arg1) {
|
|
997
|
-
const obj = arg1;
|
|
998
|
-
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
999
|
-
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
1000
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1001
|
-
};
|
|
1002
|
-
|
|
1003
|
-
export function __wbg_wbindgenstringget_0f16a6ddddef376f(arg0, arg1) {
|
|
1004
|
-
const obj = arg1;
|
|
1005
|
-
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1006
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1007
|
-
var len1 = WASM_VECTOR_LEN;
|
|
1008
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1009
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1010
|
-
};
|
|
1011
|
-
|
|
1012
|
-
export function __wbg_wbindgenthrow_451ec1a8469d7eb6(arg0, arg1) {
|
|
1013
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1014
|
-
};
|
|
1015
|
-
|
|
1016
1016
|
export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
|
|
1017
1017
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
1018
1018
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
@@ -1038,7 +1038,7 @@ export function __wbindgen_cast_d6cd19b81560fd6e(arg0) {
|
|
|
1038
1038
|
};
|
|
1039
1039
|
|
|
1040
1040
|
export function __wbindgen_init_externref_table() {
|
|
1041
|
-
const table = wasm.
|
|
1041
|
+
const table = wasm.__wbindgen_externrefs;
|
|
1042
1042
|
const offset = table.grow(4);
|
|
1043
1043
|
table.set(0, undefined);
|
|
1044
1044
|
table.set(offset + 0, undefined);
|
package/biome_wasm_bg.wasm
CHANGED
|
Binary file
|