@biomejs/wasm-nodejs 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 +66 -17
- package/biome_wasm.js +146 -146
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
8415
|
+
conventions?: Convention[];
|
|
8380
8416
|
/**
|
|
8381
8417
|
* If `false`, then non-ASCII characters are allowed.
|
|
8382
8418
|
*/
|
|
8383
|
-
requireAscii
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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 =
|
|
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.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
|