@biomejs/wasm-bundler 2.3.3 → 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 CHANGED
@@ -1513,6 +1513,10 @@ interface Correctness {
1513
1513
  useYield?: RuleConfiguration_for_UseYieldOptions;
1514
1514
  }
1515
1515
  interface Nursery {
1516
+ /**
1517
+ * Disallow continue statements.
1518
+ */
1519
+ noContinue?: RuleConfiguration_for_NoContinueOptions;
1516
1520
  /**
1517
1521
  * Restrict imports of deprecated exports.
1518
1522
  */
@@ -1605,6 +1609,10 @@ interface Nursery {
1605
1609
  * Enables the recommended rules for this group
1606
1610
  */
1607
1611
  recommended?: boolean;
1612
+ /**
1613
+ * Require Array#sort and Array#toSorted calls to always provide a compareFunction.
1614
+ */
1615
+ useArraySortCompare?: RuleConfiguration_for_UseArraySortCompareOptions;
1608
1616
  /**
1609
1617
  * Enforce consistent arrow function bodies.
1610
1618
  */
@@ -2895,6 +2903,9 @@ type RuleFixConfiguration_for_UseValidTypeofOptions =
2895
2903
  type RuleConfiguration_for_UseYieldOptions =
2896
2904
  | RulePlainConfiguration
2897
2905
  | RuleWithOptions_for_UseYieldOptions;
2906
+ type RuleConfiguration_for_NoContinueOptions =
2907
+ | RulePlainConfiguration
2908
+ | RuleWithOptions_for_NoContinueOptions;
2898
2909
  type RuleConfiguration_for_NoDeprecatedImportsOptions =
2899
2910
  | RulePlainConfiguration
2900
2911
  | RuleWithOptions_for_NoDeprecatedImportsOptions;
@@ -2961,6 +2972,9 @@ type RuleConfiguration_for_NoVueReservedKeysOptions =
2961
2972
  type RuleConfiguration_for_NoVueReservedPropsOptions =
2962
2973
  | RulePlainConfiguration
2963
2974
  | RuleWithOptions_for_NoVueReservedPropsOptions;
2975
+ type RuleConfiguration_for_UseArraySortCompareOptions =
2976
+ | RulePlainConfiguration
2977
+ | RuleWithOptions_for_UseArraySortCompareOptions;
2964
2978
  type RuleFixConfiguration_for_UseConsistentArrowReturnOptions =
2965
2979
  | RulePlainConfiguration
2966
2980
  | RuleWithFixOptions_for_UseConsistentArrowReturnOptions;
@@ -5318,6 +5332,16 @@ interface RuleWithOptions_for_UseYieldOptions {
5318
5332
  */
5319
5333
  options: UseYieldOptions;
5320
5334
  }
5335
+ interface RuleWithOptions_for_NoContinueOptions {
5336
+ /**
5337
+ * The severity of the emitted diagnostics by the rule
5338
+ */
5339
+ level: RulePlainConfiguration;
5340
+ /**
5341
+ * Rule's options
5342
+ */
5343
+ options: NoContinueOptions;
5344
+ }
5321
5345
  interface RuleWithOptions_for_NoDeprecatedImportsOptions {
5322
5346
  /**
5323
5347
  * The severity of the emitted diagnostics by the rule
@@ -5566,6 +5590,16 @@ interface RuleWithOptions_for_NoVueReservedPropsOptions {
5566
5590
  */
5567
5591
  options: NoVueReservedPropsOptions;
5568
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
+ }
5569
5603
  interface RuleWithFixOptions_for_UseConsistentArrowReturnOptions {
5570
5604
  /**
5571
5605
  * The kind of the code actions emitted by the rule
@@ -8022,7 +8056,7 @@ interface NoRestrictedElementsOptions {
8022
8056
  /**
8023
8057
  * Elements to restrict. Each key is the element name, and the value is the message to show when the element is used.
8024
8058
  */
8025
- elements: CustomRestrictedElements;
8059
+ elements?: CustomRestrictedElements;
8026
8060
  }
8027
8061
  interface NoSelfAssignOptions {}
8028
8062
  interface NoSetterReturnOptions {}
@@ -8121,6 +8155,7 @@ interface UseUniqueElementIdsOptions {
8121
8155
  interface UseValidForDirectionOptions {}
8122
8156
  interface UseValidTypeofOptions {}
8123
8157
  interface UseYieldOptions {}
8158
+ interface NoContinueOptions {}
8124
8159
  interface NoDeprecatedImportsOptions {}
8125
8160
  interface NoDuplicateDependenciesOptions {}
8126
8161
  interface NoEmptySourceOptions {
@@ -8162,7 +8197,7 @@ interface NoParametersOnlyUsedInRecursionOptions {}
8162
8197
  interface NoReactForwardRefOptions {}
8163
8198
  interface NoShadowOptions {}
8164
8199
  interface NoUnknownAttributeOptions {
8165
- ignore: string[];
8200
+ ignore?: string[];
8166
8201
  }
8167
8202
  interface NoUnnecessaryConditionsOptions {}
8168
8203
  interface NoUnresolvedImportsOptions {}
@@ -8173,6 +8208,7 @@ interface NoVueDataObjectDeclarationOptions {}
8173
8208
  interface NoVueDuplicateKeysOptions {}
8174
8209
  interface NoVueReservedKeysOptions {}
8175
8210
  interface NoVueReservedPropsOptions {}
8211
+ interface UseArraySortCompareOptions {}
8176
8212
  interface UseConsistentArrowReturnOptions {
8177
8213
  /**
8178
8214
  * Determines whether the rule enforces a consistent style when the return value is an object literal.
@@ -8277,13 +8313,13 @@ interface NoRestrictedGlobalsOptions {
8277
8313
  /**
8278
8314
  * A list of names that should trigger the rule
8279
8315
  */
8280
- deniedGlobals: Record<string, string>;
8316
+ deniedGlobals?: Record<string, string>;
8281
8317
  }
8282
8318
  interface NoRestrictedImportsOptions {
8283
8319
  /**
8284
8320
  * A list of import paths that should trigger the rule.
8285
8321
  */
8286
- paths: Record<string, Paths>;
8322
+ paths?: Record<string, Paths>;
8287
8323
  /**
8288
8324
  * gitignore-style patterns that should trigger the rule.
8289
8325
  */
@@ -8312,7 +8348,7 @@ interface UseComponentExportOnlyModulesOptions {
8312
8348
  /**
8313
8349
  * A list of names that can be additionally exported from the module This option is for exports that do not hinder [React Fast Refresh](https://github.com/facebook/react/tree/main/packages/react-refresh), such as [`meta` in Remix](https://remix.run/docs/en/main/route/meta)
8314
8350
  */
8315
- allowExportNames: string[];
8351
+ allowExportNames?: string[];
8316
8352
  }
8317
8353
  interface UseConsistentArrayTypeOptions {
8318
8354
  syntax?: ConsistentArrayType;
@@ -8347,7 +8383,7 @@ interface UseFilenamingConventionOptions {
8347
8383
  /**
8348
8384
  * Allowed cases for file names.
8349
8385
  */
8350
- filenameCases: FilenameCases;
8386
+ filenameCases?: FilenameCases;
8351
8387
  /**
8352
8388
  * Regular expression to enforce
8353
8389
  */
@@ -8355,11 +8391,11 @@ interface UseFilenamingConventionOptions {
8355
8391
  /**
8356
8392
  * If `false`, then non-ASCII characters are allowed.
8357
8393
  */
8358
- requireAscii: boolean;
8394
+ requireAscii?: boolean;
8359
8395
  /**
8360
8396
  * If `false`, then consecutive uppercase are allowed in _camel_ and _pascal_ cases. This does not affect other [Case].
8361
8397
  */
8362
- strictCase: boolean;
8398
+ strictCase?: boolean;
8363
8399
  }
8364
8400
  interface UseForOfOptions {}
8365
8401
  interface UseFragmentSyntaxOptions {}
@@ -8376,15 +8412,15 @@ interface UseNamingConventionOptions {
8376
8412
  /**
8377
8413
  * Custom conventions.
8378
8414
  */
8379
- conventions: Convention[];
8415
+ conventions?: Convention[];
8380
8416
  /**
8381
8417
  * If `false`, then non-ASCII characters are allowed.
8382
8418
  */
8383
- requireAscii: boolean;
8419
+ requireAscii?: boolean;
8384
8420
  /**
8385
8421
  * If `false`, then consecutive uppercase are allowed in _camel_ and _pascal_ cases. This does not affect other [Case].
8386
8422
  */
8387
- strictCase: boolean;
8423
+ strictCase?: boolean;
8388
8424
  }
8389
8425
  interface UseNodeAssertStrictOptions {}
8390
8426
  interface UseNodejsImportProtocolOptions {}
@@ -8396,7 +8432,7 @@ interface UseReadonlyClassPropertiesOptions {
8396
8432
  /**
8397
8433
  * When `true`, the keywords `public`, `protected`, and `private` are analyzed by the rule.
8398
8434
  */
8399
- checkAllProperties: boolean;
8435
+ checkAllProperties?: boolean;
8400
8436
  }
8401
8437
  interface UseSelfClosingElementsOptions {
8402
8438
  ignoreHtmlElements?: boolean;
@@ -8420,7 +8456,7 @@ interface NoBitwiseOperatorsOptions {
8420
8456
  /**
8421
8457
  * Allows a list of bitwise operators to be used as exceptions.
8422
8458
  */
8423
- allow: string[];
8459
+ allow?: string[];
8424
8460
  }
8425
8461
  interface NoCatchAssignOptions {}
8426
8462
  interface NoClassAssignOptions {}
@@ -8430,14 +8466,14 @@ interface NoConfusingLabelsOptions {
8430
8466
  /**
8431
8467
  * A list of (non-confusing) labels that should be allowed
8432
8468
  */
8433
- allowedLabels: string[];
8469
+ allowedLabels?: string[];
8434
8470
  }
8435
8471
  interface NoConfusingVoidTypeOptions {}
8436
8472
  interface NoConsoleOptions {
8437
8473
  /**
8438
8474
  * Allowed calls on the console object.
8439
8475
  */
8440
- allow: string[];
8476
+ allow?: string[];
8441
8477
  }
8442
8478
  interface NoConstEnumOptions {}
8443
8479
  interface NoConstantBinaryExpressionsOptions {}
@@ -8451,7 +8487,7 @@ interface NoDoubleEqualsOptions {
8451
8487
 
8452
8488
  If `false`, no such exception will be made.
8453
8489
  */
8454
- ignoreNull: boolean;
8490
+ ignoreNull?: boolean;
8455
8491
  }
8456
8492
  interface NoDuplicateAtImportRulesOptions {}
8457
8493
  interface NoDuplicateCaseOptions {}
@@ -8892,6 +8928,7 @@ type Category =
8892
8928
  | "lint/correctness/useValidTypeof"
8893
8929
  | "lint/correctness/useYield"
8894
8930
  | "lint/nursery/noColorInvalidHex"
8931
+ | "lint/nursery/noContinue"
8895
8932
  | "lint/nursery/noDeprecatedImports"
8896
8933
  | "lint/nursery/noDuplicateDependencies"
8897
8934
  | "lint/nursery/noEmptySource"
@@ -8919,6 +8956,7 @@ type Category =
8919
8956
  | "lint/nursery/noVueReservedKeys"
8920
8957
  | "lint/nursery/noVueReservedProps"
8921
8958
  | "lint/nursery/useAnchorHref"
8959
+ | "lint/nursery/useArraySortCompare"
8922
8960
  | "lint/nursery/useBiomeSuppressionComment"
8923
8961
  | "lint/nursery/useConsistentArrowReturn"
8924
8962
  | "lint/nursery/useConsistentObjectDefinition"
@@ -9351,7 +9389,18 @@ interface HtmlFileSource {
9351
9389
  interface GritFileSource {
9352
9390
  variant: GritVariant;
9353
9391
  }
9354
- type EmbeddingKind = "Astro" | "Vue" | "Svelte" | "None";
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
+ };
9355
9404
  type Language = "javaScript" | { typeScript: { definition_file: boolean } };
9356
9405
  type ModuleKind = "script" | "module";
9357
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.__wbindgen_export_4.get(idx);
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 __wbg_Error_e17e777aac105295(arg0, arg1) {
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 __wbg_Number_998bea33bd87c3e0(arg0) {
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 __wbg_call_13410aac570ffff7() { return handleError(function (arg0, arg1) {
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 __wbg_done_75ed0ee6dd243d9d(arg0) {
816
+ export function __wbg_done_2042aa2670fb1db1(arg0) {
735
817
  const ret = arg0.done;
736
818
  return ret;
737
819
  };
738
820
 
739
- export function __wbg_entries_2be2f15bd5554996(arg0) {
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 __wbg_get_0da715ceaecea5c8(arg0, arg1) {
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 __wbg_get_458e874b43b18b25() { return handleError(function (arg0, arg1) {
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 __wbg_getwithrefkey_1dc361bd10053bfe(arg0, arg1) {
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 __wbg_instanceof_ArrayBuffer_67f3012529f6a2dd(arg0) {
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 __wbg_instanceof_Map_ebb01a5b6b5ffd0b(arg0) {
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 __wbg_instanceof_Uint8Array_9a8378d955933db7(arg0) {
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 __wbg_isArray_030cce220591fb41(arg0) {
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 __wbg_isSafeInteger_1c0d1af5542e102a(arg0) {
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 __wbg_iterator_f370b34483c71a1c() {
896
+ export function __wbg_iterator_e5822695327a3c39() {
815
897
  const ret = Symbol.iterator;
816
898
  return ret;
817
899
  };
818
900
 
819
- export function __wbg_length_186546c51cd61acd(arg0) {
901
+ export function __wbg_length_69bca3cb64fc8748(arg0) {
820
902
  const ret = arg0.length;
821
903
  return ret;
822
904
  };
823
905
 
824
- export function __wbg_length_6bb7e81f9d7713e4(arg0) {
906
+ export function __wbg_length_cdd215e10d9dd507(arg0) {
825
907
  const ret = arg0.length;
826
908
  return ret;
827
909
  };
828
910
 
829
- export function __wbg_new_19c25a3f2fa63a02() {
911
+ export function __wbg_new_1acc0b6eea89d040() {
830
912
  const ret = new Object();
831
913
  return ret;
832
914
  };
833
915
 
834
- export function __wbg_new_1f3a344cf3123716() {
835
- const ret = new Array();
916
+ export function __wbg_new_5a79be3ab53b8aa5(arg0) {
917
+ const ret = new Uint8Array(arg0);
836
918
  return ret;
837
919
  };
838
920
 
839
- export function __wbg_new_2ff1f68f3676ea53() {
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 __wbg_new_da9dc54c5db29dfa(arg0, arg1) {
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 __wbg_newnoargs_254190557c45b4ec(arg0, arg1) {
860
- const ret = new Function(getStringFromWasm0(arg0, arg1));
936
+ export function __wbg_new_e17d9f43105b08be() {
937
+ const ret = new Array();
861
938
  return ret;
862
939
  };
863
940
 
864
- export function __wbg_next_5b3530e612fde77d(arg0) {
865
- const ret = arg0.next;
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 __wbg_next_692e82279131b03c() { return handleError(function (arg0) {
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 __wbg_prototypesetcall_3d4a26c1ed734349(arg0, arg1, arg2) {
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 __wbg_set_90f6c0f7bd8c0415(arg0, arg1, arg2) {
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 __wbg_static_accessor_GLOBAL_8921f820c2ce3f12() {
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 __wbg_static_accessor_GLOBAL_THIS_f0a4409105898184() {
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 __wbg_static_accessor_SELF_995b214ae681ff99() {
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 __wbg_static_accessor_WINDOW_cde3890479c675ea() {
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 __wbg_value_dd9372230531eade(arg0) {
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.__wbindgen_export_4;
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);
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Biome Developers and Contributors"
6
6
  ],
7
7
  "description": "WebAssembly bindings to the Biome workspace API",
8
- "version": "2.3.3",
8
+ "version": "2.3.5",
9
9
  "license": "MIT OR Apache-2.0",
10
10
  "repository": {
11
11
  "type": "git",