@biomejs/wasm-nodejs 2.3.10 → 2.3.12

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.js CHANGED
@@ -2,93 +2,16 @@
2
2
  let imports = {};
3
3
  imports['__wbindgen_placeholder__'] = module.exports;
4
4
 
5
- let cachedUint8ArrayMemory0 = null;
6
-
7
- function getUint8ArrayMemory0() {
8
- if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
9
- cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
10
- }
11
- return cachedUint8ArrayMemory0;
12
- }
13
-
14
- let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
15
-
16
- cachedTextDecoder.decode();
17
-
18
- function decodeText(ptr, len) {
19
- return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
20
- }
21
-
22
- function getStringFromWasm0(ptr, len) {
23
- ptr = ptr >>> 0;
24
- return decodeText(ptr, len);
25
- }
26
-
27
- let WASM_VECTOR_LEN = 0;
28
-
29
- const cachedTextEncoder = new TextEncoder();
30
-
31
- if (!('encodeInto' in cachedTextEncoder)) {
32
- cachedTextEncoder.encodeInto = function (arg, view) {
33
- const buf = cachedTextEncoder.encode(arg);
34
- view.set(buf);
35
- return {
36
- read: arg.length,
37
- written: buf.length
38
- };
39
- }
40
- }
41
-
42
- function passStringToWasm0(arg, malloc, realloc) {
43
-
44
- if (realloc === undefined) {
45
- const buf = cachedTextEncoder.encode(arg);
46
- const ptr = malloc(buf.length, 1) >>> 0;
47
- getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
48
- WASM_VECTOR_LEN = buf.length;
49
- return ptr;
50
- }
51
-
52
- let len = arg.length;
53
- let ptr = malloc(len, 1) >>> 0;
54
-
55
- const mem = getUint8ArrayMemory0();
56
-
57
- let offset = 0;
58
-
59
- for (; offset < len; offset++) {
60
- const code = arg.charCodeAt(offset);
61
- if (code > 0x7F) break;
62
- mem[ptr + offset] = code;
63
- }
64
-
65
- if (offset !== len) {
66
- if (offset !== 0) {
67
- arg = arg.slice(offset);
68
- }
69
- ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
70
- const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
71
- const ret = cachedTextEncoder.encodeInto(arg, view);
72
-
73
- offset += ret.written;
74
- ptr = realloc(ptr, len, offset, 1) >>> 0;
75
- }
76
-
77
- WASM_VECTOR_LEN = offset;
78
- return ptr;
5
+ function addToExternrefTable0(obj) {
6
+ const idx = wasm.__externref_table_alloc();
7
+ wasm.__wbindgen_externrefs.set(idx, obj);
8
+ return idx;
79
9
  }
80
10
 
81
- let cachedDataViewMemory0 = null;
82
-
83
- function getDataViewMemory0() {
84
- if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
85
- cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
11
+ function _assertClass(instance, klass) {
12
+ if (!(instance instanceof klass)) {
13
+ throw new Error(`expected instance of ${klass.name}`);
86
14
  }
87
- return cachedDataViewMemory0;
88
- }
89
-
90
- function isLikeNone(x) {
91
- return x === undefined || x === null;
92
15
  }
93
16
 
94
17
  function debugString(val) {
@@ -156,10 +79,30 @@ function debugString(val) {
156
79
  return className;
157
80
  }
158
81
 
159
- function addToExternrefTable0(obj) {
160
- const idx = wasm.__externref_table_alloc();
161
- wasm.__wbindgen_externrefs.set(idx, obj);
162
- return idx;
82
+ function getArrayU8FromWasm0(ptr, len) {
83
+ ptr = ptr >>> 0;
84
+ return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
85
+ }
86
+
87
+ let cachedDataViewMemory0 = null;
88
+ function getDataViewMemory0() {
89
+ if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
90
+ cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
91
+ }
92
+ return cachedDataViewMemory0;
93
+ }
94
+
95
+ function getStringFromWasm0(ptr, len) {
96
+ ptr = ptr >>> 0;
97
+ return decodeText(ptr, len);
98
+ }
99
+
100
+ let cachedUint8ArrayMemory0 = null;
101
+ function getUint8ArrayMemory0() {
102
+ if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
103
+ cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
104
+ }
105
+ return cachedUint8ArrayMemory0;
163
106
  }
164
107
 
165
108
  function handleError(f, args) {
@@ -171,9 +114,8 @@ function handleError(f, args) {
171
114
  }
172
115
  }
173
116
 
174
- function getArrayU8FromWasm0(ptr, len) {
175
- ptr = ptr >>> 0;
176
- return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
117
+ function isLikeNone(x) {
118
+ return x === undefined || x === null;
177
119
  }
178
120
 
179
121
  function passArray8ToWasm0(arg, malloc) {
@@ -183,9 +125,42 @@ function passArray8ToWasm0(arg, malloc) {
183
125
  return ptr;
184
126
  }
185
127
 
186
- exports.main = function() {
187
- wasm.main();
188
- };
128
+ function passStringToWasm0(arg, malloc, realloc) {
129
+ if (realloc === undefined) {
130
+ const buf = cachedTextEncoder.encode(arg);
131
+ const ptr = malloc(buf.length, 1) >>> 0;
132
+ getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
133
+ WASM_VECTOR_LEN = buf.length;
134
+ return ptr;
135
+ }
136
+
137
+ let len = arg.length;
138
+ let ptr = malloc(len, 1) >>> 0;
139
+
140
+ const mem = getUint8ArrayMemory0();
141
+
142
+ let offset = 0;
143
+
144
+ for (; offset < len; offset++) {
145
+ const code = arg.charCodeAt(offset);
146
+ if (code > 0x7F) break;
147
+ mem[ptr + offset] = code;
148
+ }
149
+ if (offset !== len) {
150
+ if (offset !== 0) {
151
+ arg = arg.slice(offset);
152
+ }
153
+ ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
154
+ const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
155
+ const ret = cachedTextEncoder.encodeInto(arg, view);
156
+
157
+ offset += ret.written;
158
+ ptr = realloc(ptr, len, offset, 1) >>> 0;
159
+ }
160
+
161
+ WASM_VECTOR_LEN = offset;
162
+ return ptr;
163
+ }
189
164
 
190
165
  function takeFromExternrefTable0(idx) {
191
166
  const value = wasm.__wbindgen_externrefs.get(idx);
@@ -193,25 +168,46 @@ function takeFromExternrefTable0(idx) {
193
168
  return value;
194
169
  }
195
170
 
196
- function _assertClass(instance, klass) {
197
- if (!(instance instanceof klass)) {
198
- throw new Error(`expected instance of ${klass.name}`);
171
+ let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
172
+ cachedTextDecoder.decode();
173
+ function decodeText(ptr, len) {
174
+ return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
175
+ }
176
+
177
+ const cachedTextEncoder = new TextEncoder();
178
+
179
+ if (!('encodeInto' in cachedTextEncoder)) {
180
+ cachedTextEncoder.encodeInto = function (arg, view) {
181
+ const buf = cachedTextEncoder.encode(arg);
182
+ view.set(buf);
183
+ return {
184
+ read: arg.length,
185
+ written: buf.length
186
+ };
199
187
  }
200
188
  }
201
189
 
190
+ let WASM_VECTOR_LEN = 0;
191
+
202
192
  const DiagnosticPrinterFinalization = (typeof FinalizationRegistry === 'undefined')
203
193
  ? { register: () => {}, unregister: () => {} }
204
194
  : new FinalizationRegistry(ptr => wasm.__wbg_diagnosticprinter_free(ptr >>> 0, 1));
205
195
 
206
- class DiagnosticPrinter {
196
+ const MemoryFileSystemFinalization = (typeof FinalizationRegistry === 'undefined')
197
+ ? { register: () => {}, unregister: () => {} }
198
+ : new FinalizationRegistry(ptr => wasm.__wbg_memoryfilesystem_free(ptr >>> 0, 1));
207
199
 
200
+ const WorkspaceFinalization = (typeof FinalizationRegistry === 'undefined')
201
+ ? { register: () => {}, unregister: () => {} }
202
+ : new FinalizationRegistry(ptr => wasm.__wbg_workspace_free(ptr >>> 0, 1));
203
+
204
+ class DiagnosticPrinter {
208
205
  __destroy_into_raw() {
209
206
  const ptr = this.__wbg_ptr;
210
207
  this.__wbg_ptr = 0;
211
208
  DiagnosticPrinterFinalization.unregister(this);
212
209
  return ptr;
213
210
  }
214
-
215
211
  free() {
216
212
  const ptr = this.__destroy_into_raw();
217
213
  wasm.__wbg_diagnosticprinter_free(ptr, 0);
@@ -272,22 +268,15 @@ class DiagnosticPrinter {
272
268
  }
273
269
  }
274
270
  if (Symbol.dispose) DiagnosticPrinter.prototype[Symbol.dispose] = DiagnosticPrinter.prototype.free;
275
-
276
271
  exports.DiagnosticPrinter = DiagnosticPrinter;
277
272
 
278
- const MemoryFileSystemFinalization = (typeof FinalizationRegistry === 'undefined')
279
- ? { register: () => {}, unregister: () => {} }
280
- : new FinalizationRegistry(ptr => wasm.__wbg_memoryfilesystem_free(ptr >>> 0, 1));
281
-
282
273
  class MemoryFileSystem {
283
-
284
274
  __destroy_into_raw() {
285
275
  const ptr = this.__wbg_ptr;
286
276
  this.__wbg_ptr = 0;
287
277
  MemoryFileSystemFinalization.unregister(this);
288
278
  return ptr;
289
279
  }
290
-
291
280
  free() {
292
281
  const ptr = this.__destroy_into_raw();
293
282
  wasm.__wbg_memoryfilesystem_free(ptr, 0);
@@ -319,15 +308,9 @@ class MemoryFileSystem {
319
308
  }
320
309
  }
321
310
  if (Symbol.dispose) MemoryFileSystem.prototype[Symbol.dispose] = MemoryFileSystem.prototype.free;
322
-
323
311
  exports.MemoryFileSystem = MemoryFileSystem;
324
312
 
325
- const WorkspaceFinalization = (typeof FinalizationRegistry === 'undefined')
326
- ? { register: () => {}, unregister: () => {} }
327
- : new FinalizationRegistry(ptr => wasm.__wbg_workspace_free(ptr >>> 0, 1));
328
-
329
313
  class Workspace {
330
-
331
314
  static __wrap(ptr) {
332
315
  ptr = ptr >>> 0;
333
316
  const obj = Object.create(Workspace.prototype);
@@ -335,14 +318,12 @@ class Workspace {
335
318
  WorkspaceFinalization.register(obj, obj.__wbg_ptr, obj);
336
319
  return obj;
337
320
  }
338
-
339
321
  __destroy_into_raw() {
340
322
  const ptr = this.__wbg_ptr;
341
323
  this.__wbg_ptr = 0;
342
324
  WorkspaceFinalization.unregister(this);
343
325
  return ptr;
344
326
  }
345
-
346
327
  free() {
347
328
  const ptr = this.__destroy_into_raw();
348
329
  wasm.__wbg_workspace_free(ptr, 0);
@@ -701,15 +682,19 @@ class Workspace {
701
682
  }
702
683
  }
703
684
  if (Symbol.dispose) Workspace.prototype[Symbol.dispose] = Workspace.prototype.free;
704
-
705
685
  exports.Workspace = Workspace;
706
686
 
707
- exports.__wbg_Error_e83987f665cf5504 = function(arg0, arg1) {
687
+ function main() {
688
+ wasm.main();
689
+ }
690
+ exports.main = main;
691
+
692
+ exports.__wbg_Error_52673b7de5a0ca89 = function(arg0, arg1) {
708
693
  const ret = Error(getStringFromWasm0(arg0, arg1));
709
694
  return ret;
710
695
  };
711
696
 
712
- exports.__wbg_Number_bb48ca12f395cd08 = function(arg0) {
697
+ exports.__wbg_Number_2d1dcfcf4ec51736 = function(arg0) {
713
698
  const ret = Number(arg0);
714
699
  return ret;
715
700
  };
@@ -722,20 +707,20 @@ exports.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
722
707
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
723
708
  };
724
709
 
725
- exports.__wbg___wbindgen_bigint_get_as_i64_f3ebc5a755000afd = function(arg0, arg1) {
710
+ exports.__wbg___wbindgen_bigint_get_as_i64_6e32f5e6aff02e1d = function(arg0, arg1) {
726
711
  const v = arg1;
727
712
  const ret = typeof(v) === 'bigint' ? v : undefined;
728
713
  getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
729
714
  getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
730
715
  };
731
716
 
732
- exports.__wbg___wbindgen_boolean_get_6d5a1ee65bab5f68 = function(arg0) {
717
+ exports.__wbg___wbindgen_boolean_get_dea25b33882b895b = function(arg0) {
733
718
  const v = arg0;
734
719
  const ret = typeof(v) === 'boolean' ? v : undefined;
735
720
  return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
736
721
  };
737
722
 
738
- exports.__wbg___wbindgen_debug_string_df47ffb5e35e6763 = function(arg0, arg1) {
723
+ exports.__wbg___wbindgen_debug_string_adfb662ae34724b6 = function(arg0, arg1) {
739
724
  const ret = debugString(arg1);
740
725
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
741
726
  const len1 = WASM_VECTOR_LEN;
@@ -743,55 +728,55 @@ exports.__wbg___wbindgen_debug_string_df47ffb5e35e6763 = function(arg0, arg1) {
743
728
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
744
729
  };
745
730
 
746
- exports.__wbg___wbindgen_in_bb933bd9e1b3bc0f = function(arg0, arg1) {
731
+ exports.__wbg___wbindgen_in_0d3e1e8f0c669317 = function(arg0, arg1) {
747
732
  const ret = arg0 in arg1;
748
733
  return ret;
749
734
  };
750
735
 
751
- exports.__wbg___wbindgen_is_bigint_cb320707dcd35f0b = function(arg0) {
736
+ exports.__wbg___wbindgen_is_bigint_0e1a2e3f55cfae27 = function(arg0) {
752
737
  const ret = typeof(arg0) === 'bigint';
753
738
  return ret;
754
739
  };
755
740
 
756
- exports.__wbg___wbindgen_is_function_ee8a6c5833c90377 = function(arg0) {
741
+ exports.__wbg___wbindgen_is_function_8d400b8b1af978cd = function(arg0) {
757
742
  const ret = typeof(arg0) === 'function';
758
743
  return ret;
759
744
  };
760
745
 
761
- exports.__wbg___wbindgen_is_object_c818261d21f283a4 = function(arg0) {
746
+ exports.__wbg___wbindgen_is_object_ce774f3490692386 = function(arg0) {
762
747
  const val = arg0;
763
748
  const ret = typeof(val) === 'object' && val !== null;
764
749
  return ret;
765
750
  };
766
751
 
767
- exports.__wbg___wbindgen_is_string_fbb76cb2940daafd = function(arg0) {
752
+ exports.__wbg___wbindgen_is_string_704ef9c8fc131030 = function(arg0) {
768
753
  const ret = typeof(arg0) === 'string';
769
754
  return ret;
770
755
  };
771
756
 
772
- exports.__wbg___wbindgen_is_undefined_2d472862bd29a478 = function(arg0) {
757
+ exports.__wbg___wbindgen_is_undefined_f6b95eab589e0269 = function(arg0) {
773
758
  const ret = arg0 === undefined;
774
759
  return ret;
775
760
  };
776
761
 
777
- exports.__wbg___wbindgen_jsval_eq_6b13ab83478b1c50 = function(arg0, arg1) {
762
+ exports.__wbg___wbindgen_jsval_eq_b6101cc9cef1fe36 = function(arg0, arg1) {
778
763
  const ret = arg0 === arg1;
779
764
  return ret;
780
765
  };
781
766
 
782
- exports.__wbg___wbindgen_jsval_loose_eq_b664b38a2f582147 = function(arg0, arg1) {
767
+ exports.__wbg___wbindgen_jsval_loose_eq_766057600fdd1b0d = function(arg0, arg1) {
783
768
  const ret = arg0 == arg1;
784
769
  return ret;
785
770
  };
786
771
 
787
- exports.__wbg___wbindgen_number_get_a20bf9b85341449d = function(arg0, arg1) {
772
+ exports.__wbg___wbindgen_number_get_9619185a74197f95 = function(arg0, arg1) {
788
773
  const obj = arg1;
789
774
  const ret = typeof(obj) === 'number' ? obj : undefined;
790
775
  getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
791
776
  getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
792
777
  };
793
778
 
794
- exports.__wbg___wbindgen_string_get_e4f06c90489ad01b = function(arg0, arg1) {
779
+ exports.__wbg___wbindgen_string_get_a2a31e16edf96e42 = function(arg0, arg1) {
795
780
  const obj = arg1;
796
781
  const ret = typeof(obj) === 'string' ? obj : undefined;
797
782
  var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -800,21 +785,21 @@ exports.__wbg___wbindgen_string_get_e4f06c90489ad01b = function(arg0, arg1) {
800
785
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
801
786
  };
802
787
 
803
- exports.__wbg___wbindgen_throw_b855445ff6a94295 = function(arg0, arg1) {
788
+ exports.__wbg___wbindgen_throw_dd24417ed36fc46e = function(arg0, arg1) {
804
789
  throw new Error(getStringFromWasm0(arg0, arg1));
805
790
  };
806
791
 
807
- exports.__wbg_call_e762c39fa8ea36bf = function() { return handleError(function (arg0, arg1) {
792
+ exports.__wbg_call_abb4ff46ce38be40 = function() { return handleError(function (arg0, arg1) {
808
793
  const ret = arg0.call(arg1);
809
794
  return ret;
810
795
  }, arguments) };
811
796
 
812
- exports.__wbg_done_2042aa2670fb1db1 = function(arg0) {
797
+ exports.__wbg_done_62ea16af4ce34b24 = function(arg0) {
813
798
  const ret = arg0.done;
814
799
  return ret;
815
800
  };
816
801
 
817
- exports.__wbg_entries_e171b586f8f6bdbf = function(arg0) {
802
+ exports.__wbg_entries_83c79938054e065f = function(arg0) {
818
803
  const ret = Object.entries(arg0);
819
804
  return ret;
820
805
  };
@@ -831,12 +816,12 @@ exports.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
831
816
  }
832
817
  };
833
818
 
834
- exports.__wbg_get_7bed016f185add81 = function(arg0, arg1) {
819
+ exports.__wbg_get_6b7bd52aca3f9671 = function(arg0, arg1) {
835
820
  const ret = arg0[arg1 >>> 0];
836
821
  return ret;
837
822
  };
838
823
 
839
- exports.__wbg_get_efcb449f58ec27c2 = function() { return handleError(function (arg0, arg1) {
824
+ exports.__wbg_get_af9dab7e9603ea93 = function() { return handleError(function (arg0, arg1) {
840
825
  const ret = Reflect.get(arg0, arg1);
841
826
  return ret;
842
827
  }, arguments) };
@@ -846,7 +831,7 @@ exports.__wbg_get_with_ref_key_1dc361bd10053bfe = function(arg0, arg1) {
846
831
  return ret;
847
832
  };
848
833
 
849
- exports.__wbg_instanceof_ArrayBuffer_70beb1189ca63b38 = function(arg0) {
834
+ exports.__wbg_instanceof_ArrayBuffer_f3320d2419cd0355 = function(arg0) {
850
835
  let result;
851
836
  try {
852
837
  result = arg0 instanceof ArrayBuffer;
@@ -857,7 +842,7 @@ exports.__wbg_instanceof_ArrayBuffer_70beb1189ca63b38 = function(arg0) {
857
842
  return ret;
858
843
  };
859
844
 
860
- exports.__wbg_instanceof_Map_8579b5e2ab5437c7 = function(arg0) {
845
+ exports.__wbg_instanceof_Map_084be8da74364158 = function(arg0) {
861
846
  let result;
862
847
  try {
863
848
  result = arg0 instanceof Map;
@@ -868,7 +853,7 @@ exports.__wbg_instanceof_Map_8579b5e2ab5437c7 = function(arg0) {
868
853
  return ret;
869
854
  };
870
855
 
871
- exports.__wbg_instanceof_Uint8Array_20c8e73002f7af98 = function(arg0) {
856
+ exports.__wbg_instanceof_Uint8Array_da54ccc9d3e09434 = function(arg0) {
872
857
  let result;
873
858
  try {
874
859
  result = arg0 instanceof Uint8Array;
@@ -879,43 +864,43 @@ exports.__wbg_instanceof_Uint8Array_20c8e73002f7af98 = function(arg0) {
879
864
  return ret;
880
865
  };
881
866
 
882
- exports.__wbg_isArray_96e0af9891d0945d = function(arg0) {
867
+ exports.__wbg_isArray_51fd9e6422c0a395 = function(arg0) {
883
868
  const ret = Array.isArray(arg0);
884
869
  return ret;
885
870
  };
886
871
 
887
- exports.__wbg_isSafeInteger_d216eda7911dde36 = function(arg0) {
872
+ exports.__wbg_isSafeInteger_ae7d3f054d55fa16 = function(arg0) {
888
873
  const ret = Number.isSafeInteger(arg0);
889
874
  return ret;
890
875
  };
891
876
 
892
- exports.__wbg_iterator_e5822695327a3c39 = function() {
877
+ exports.__wbg_iterator_27b7c8b35ab3e86b = function() {
893
878
  const ret = Symbol.iterator;
894
879
  return ret;
895
880
  };
896
881
 
897
- exports.__wbg_length_69bca3cb64fc8748 = function(arg0) {
882
+ exports.__wbg_length_22ac23eaec9d8053 = function(arg0) {
898
883
  const ret = arg0.length;
899
884
  return ret;
900
885
  };
901
886
 
902
- exports.__wbg_length_cdd215e10d9dd507 = function(arg0) {
887
+ exports.__wbg_length_d45040a40c570362 = function(arg0) {
903
888
  const ret = arg0.length;
904
889
  return ret;
905
890
  };
906
891
 
907
- exports.__wbg_new_1acc0b6eea89d040 = function() {
892
+ exports.__wbg_new_1ba21ce319a06297 = function() {
908
893
  const ret = new Object();
909
894
  return ret;
910
895
  };
911
896
 
912
- exports.__wbg_new_5a79be3ab53b8aa5 = function(arg0) {
913
- const ret = new Uint8Array(arg0);
897
+ exports.__wbg_new_25f239778d6112b9 = function() {
898
+ const ret = new Array();
914
899
  return ret;
915
900
  };
916
901
 
917
- exports.__wbg_new_68651c719dcda04e = function() {
918
- const ret = new Map();
902
+ exports.__wbg_new_6421f6084cc5bc5a = function(arg0) {
903
+ const ret = new Uint8Array(arg0);
919
904
  return ret;
920
905
  };
921
906
 
@@ -924,31 +909,31 @@ exports.__wbg_new_8a6f238a6ece86ea = function() {
924
909
  return ret;
925
910
  };
926
911
 
927
- exports.__wbg_new_a7442b4b19c1a356 = function(arg0, arg1) {
928
- const ret = new Error(getStringFromWasm0(arg0, arg1));
912
+ exports.__wbg_new_b546ae120718850e = function() {
913
+ const ret = new Map();
929
914
  return ret;
930
915
  };
931
916
 
932
- exports.__wbg_new_e17d9f43105b08be = function() {
933
- const ret = new Array();
917
+ exports.__wbg_new_df1173567d5ff028 = function(arg0, arg1) {
918
+ const ret = new Error(getStringFromWasm0(arg0, arg1));
934
919
  return ret;
935
920
  };
936
921
 
937
- exports.__wbg_new_no_args_ee98eee5275000a4 = function(arg0, arg1) {
922
+ exports.__wbg_new_no_args_cb138f77cf6151ee = function(arg0, arg1) {
938
923
  const ret = new Function(getStringFromWasm0(arg0, arg1));
939
924
  return ret;
940
925
  };
941
926
 
942
- exports.__wbg_next_020810e0ae8ebcb0 = function() { return handleError(function (arg0) {
943
- const ret = arg0.next();
944
- return ret;
945
- }, arguments) };
946
-
947
- exports.__wbg_next_2c826fe5dfec6b6a = function(arg0) {
927
+ exports.__wbg_next_138a17bbf04e926c = function(arg0) {
948
928
  const ret = arg0.next;
949
929
  return ret;
950
930
  };
951
931
 
932
+ exports.__wbg_next_3cfe5c0fe2a4cc53 = function() { return handleError(function (arg0) {
933
+ const ret = arg0.next();
934
+ return ret;
935
+ }, arguments) };
936
+
952
937
  exports.__wbg_now_2c95c9de01293173 = function(arg0) {
953
938
  const ret = arg0.now();
954
939
  return ret;
@@ -959,7 +944,7 @@ exports.__wbg_performance_7a3ffd0b17f663ad = function(arg0) {
959
944
  return ret;
960
945
  };
961
946
 
962
- exports.__wbg_prototypesetcall_2a6620b6922694b2 = function(arg0, arg1, arg2) {
947
+ exports.__wbg_prototypesetcall_dfe9b766cdc1f1fd = function(arg0, arg1, arg2) {
963
948
  Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
964
949
  };
965
950
 
@@ -967,13 +952,13 @@ exports.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
967
952
  arg0[arg1] = arg2;
968
953
  };
969
954
 
970
- exports.__wbg_set_907fb406c34a251d = function(arg0, arg1, arg2) {
971
- const ret = arg0.set(arg1, arg2);
972
- return ret;
955
+ exports.__wbg_set_7df433eea03a5c14 = function(arg0, arg1, arg2) {
956
+ arg0[arg1 >>> 0] = arg2;
973
957
  };
974
958
 
975
- exports.__wbg_set_c213c871859d6500 = function(arg0, arg1, arg2) {
976
- arg0[arg1 >>> 0] = arg2;
959
+ exports.__wbg_set_efaaf145b9377369 = function(arg0, arg1, arg2) {
960
+ const ret = arg0.set(arg1, arg2);
961
+ return ret;
977
962
  };
978
963
 
979
964
  exports.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
@@ -984,27 +969,27 @@ exports.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
984
969
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
985
970
  };
986
971
 
987
- exports.__wbg_static_accessor_GLOBAL_89e1d9ac6a1b250e = function() {
972
+ exports.__wbg_static_accessor_GLOBAL_769e6b65d6557335 = function() {
988
973
  const ret = typeof global === 'undefined' ? null : global;
989
974
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
990
975
  };
991
976
 
992
- exports.__wbg_static_accessor_GLOBAL_THIS_8b530f326a9e48ac = function() {
977
+ exports.__wbg_static_accessor_GLOBAL_THIS_60cf02db4de8e1c1 = function() {
993
978
  const ret = typeof globalThis === 'undefined' ? null : globalThis;
994
979
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
995
980
  };
996
981
 
997
- exports.__wbg_static_accessor_SELF_6fdf4b64710cc91b = function() {
982
+ exports.__wbg_static_accessor_SELF_08f5a74c69739274 = function() {
998
983
  const ret = typeof self === 'undefined' ? null : self;
999
984
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1000
985
  };
1001
986
 
1002
- exports.__wbg_static_accessor_WINDOW_b45bfc5a37f6cfa2 = function() {
987
+ exports.__wbg_static_accessor_WINDOW_a8924b26aa92d024 = function() {
1003
988
  const ret = typeof window === 'undefined' ? null : window;
1004
989
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
1005
990
  };
1006
991
 
1007
- exports.__wbg_value_692627309814bb8c = function(arg0) {
992
+ exports.__wbg_value_57b7b035e117f7ee = function(arg0) {
1008
993
  const ret = arg0.value;
1009
994
  return ret;
1010
995
  };
@@ -1041,7 +1026,6 @@ exports.__wbindgen_init_externref_table = function() {
1041
1026
  table.set(offset + 1, null);
1042
1027
  table.set(offset + 2, true);
1043
1028
  table.set(offset + 3, false);
1044
- ;
1045
1029
  };
1046
1030
 
1047
1031
  const wasmPath = `${__dirname}/biome_wasm_bg.wasm`;
@@ -1050,4 +1034,3 @@ const wasmModule = new WebAssembly.Module(wasmBytes);
1050
1034
  const wasm = exports.__wasm = new WebAssembly.Instance(wasmModule, imports).exports;
1051
1035
 
1052
1036
  wasm.__wbindgen_start();
1053
-
Binary file
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "Biome Developers and Contributors"
5
5
  ],
6
6
  "description": "WebAssembly bindings to the Biome workspace API",
7
- "version": "2.3.10",
7
+ "version": "2.3.12",
8
8
  "license": "MIT OR Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",