@swc/wasm 1.3.42 → 1.3.44
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/package.json +1 -1
- package/wasm.d.ts +36 -36
- package/wasm.js +98 -98
- package/wasm_bg.wasm +0 -0
package/package.json
CHANGED
package/wasm.d.ts
CHANGED
|
@@ -7,42 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
export function browserslist(query: string, opts: any): any;
|
|
9
9
|
|
|
10
|
-
export function minify(src: string, opts?: JsMinifyOptions): Promise<Output>;
|
|
11
|
-
export function minifySync(code: string, opts?: JsMinifyOptions): Output;
|
|
12
|
-
|
|
13
|
-
export function parse(src: string, options: ParseOptions & {
|
|
14
|
-
isModule: false;
|
|
15
|
-
}): Promise<Script>;
|
|
16
|
-
export function parse(src: string, options?: ParseOptions): Promise<Module>;
|
|
17
|
-
export function parseSync(src: string, options: ParseOptions & {
|
|
18
|
-
isModule: false;
|
|
19
|
-
}): Script;
|
|
20
|
-
export function parseSync(src: string, options?: ParseOptions): Module;
|
|
21
|
-
|
|
22
|
-
export function print(m: Program, options?: Options): Promise<Output>;
|
|
23
|
-
export function printSync(m: Program, options?: Options): Output
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Note: this interface currently does not do _actual_ async work, only provides
|
|
27
|
-
* a corresponding async interfaces to the `@swc/core`'s interface.
|
|
28
|
-
*/
|
|
29
|
-
export function transform(
|
|
30
|
-
code: string | Program,
|
|
31
|
-
options?: Options,
|
|
32
|
-
experimental_plugin_bytes_resolver?: any
|
|
33
|
-
): Promise<Output>;
|
|
34
|
-
/**
|
|
35
|
-
* @param {string} code
|
|
36
|
-
* @param {Options} opts
|
|
37
|
-
* @param {Record<string, ArrayBuffer>} experimental_plugin_bytes_resolver An object contains bytes array for the plugin
|
|
38
|
-
* specified in config. Key of record represents the name of the plugin specified in config. Note this is an experimental
|
|
39
|
-
* interface, likely will change.
|
|
40
|
-
* @returns {Output}
|
|
41
|
-
*/
|
|
42
|
-
export function transformSync(code: string | Program, opts?: Options, experimental_plugin_bytes_resolver?: any): Output;
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
10
|
export interface Plugin {
|
|
47
11
|
(module: Program): Program;
|
|
48
12
|
}
|
|
@@ -2837,3 +2801,39 @@ export interface Invalid extends Node, HasSpan {
|
|
|
2837
2801
|
}
|
|
2838
2802
|
|
|
2839
2803
|
|
|
2804
|
+
|
|
2805
|
+
export function minify(src: string, opts?: JsMinifyOptions): Promise<Output>;
|
|
2806
|
+
export function minifySync(code: string, opts?: JsMinifyOptions): Output;
|
|
2807
|
+
|
|
2808
|
+
export function parse(src: string, options: ParseOptions & {
|
|
2809
|
+
isModule: false;
|
|
2810
|
+
}): Promise<Script>;
|
|
2811
|
+
export function parse(src: string, options?: ParseOptions): Promise<Module>;
|
|
2812
|
+
export function parseSync(src: string, options: ParseOptions & {
|
|
2813
|
+
isModule: false;
|
|
2814
|
+
}): Script;
|
|
2815
|
+
export function parseSync(src: string, options?: ParseOptions): Module;
|
|
2816
|
+
|
|
2817
|
+
export function print(m: Program, options?: Options): Promise<Output>;
|
|
2818
|
+
export function printSync(m: Program, options?: Options): Output
|
|
2819
|
+
|
|
2820
|
+
/**
|
|
2821
|
+
* Note: this interface currently does not do _actual_ async work, only provides
|
|
2822
|
+
* a corresponding async interfaces to the `@swc/core`'s interface.
|
|
2823
|
+
*/
|
|
2824
|
+
export function transform(
|
|
2825
|
+
code: string | Program,
|
|
2826
|
+
options?: Options,
|
|
2827
|
+
experimental_plugin_bytes_resolver?: any
|
|
2828
|
+
): Promise<Output>;
|
|
2829
|
+
/**
|
|
2830
|
+
* @param {string} code
|
|
2831
|
+
* @param {Options} opts
|
|
2832
|
+
* @param {Record<string, ArrayBuffer>} experimental_plugin_bytes_resolver An object contains bytes array for the plugin
|
|
2833
|
+
* specified in config. Key of record represents the name of the plugin specified in config. Note this is an experimental
|
|
2834
|
+
* interface, likely will change.
|
|
2835
|
+
* @returns {Output}
|
|
2836
|
+
*/
|
|
2837
|
+
export function transformSync(code: string | Program, opts?: Options, experimental_plugin_bytes_resolver?: any): Output;
|
|
2838
|
+
|
|
2839
|
+
|
package/wasm.js
CHANGED
|
@@ -396,12 +396,17 @@ function __wbg_adapter_110(arg0, arg1, arg2, arg3) {
|
|
|
396
396
|
wasm.__wbindgen_export_6(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
397
397
|
}
|
|
398
398
|
|
|
399
|
+
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
400
|
+
const ret = getObject(arg0) == getObject(arg1);
|
|
401
|
+
return ret;
|
|
402
|
+
};
|
|
403
|
+
|
|
399
404
|
module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
400
405
|
takeObject(arg0);
|
|
401
406
|
};
|
|
402
407
|
|
|
403
|
-
module.exports.
|
|
404
|
-
const ret = new
|
|
408
|
+
module.exports.__wbg_new_f9876326328f45ed = function() {
|
|
409
|
+
const ret = new Object();
|
|
405
410
|
return addHeapObject(ret);
|
|
406
411
|
};
|
|
407
412
|
|
|
@@ -410,16 +415,6 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
410
415
|
return addHeapObject(ret);
|
|
411
416
|
};
|
|
412
417
|
|
|
413
|
-
module.exports.__wbg_set_388c4c6422704173 = function(arg0, arg1, arg2) {
|
|
414
|
-
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
415
|
-
return addHeapObject(ret);
|
|
416
|
-
};
|
|
417
|
-
|
|
418
|
-
module.exports.__wbindgen_is_string = function(arg0) {
|
|
419
|
-
const ret = typeof(getObject(arg0)) === 'string';
|
|
420
|
-
return ret;
|
|
421
|
-
};
|
|
422
|
-
|
|
423
418
|
module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
|
|
424
419
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
425
420
|
};
|
|
@@ -429,11 +424,6 @@ module.exports.__wbg_new_b525de17f44a8943 = function() {
|
|
|
429
424
|
return addHeapObject(ret);
|
|
430
425
|
};
|
|
431
426
|
|
|
432
|
-
module.exports.__wbg_new_f9876326328f45ed = function() {
|
|
433
|
-
const ret = new Object();
|
|
434
|
-
return addHeapObject(ret);
|
|
435
|
-
};
|
|
436
|
-
|
|
437
427
|
module.exports.__wbg_set_17224bc548dd1d7b = function(arg0, arg1, arg2) {
|
|
438
428
|
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
439
429
|
};
|
|
@@ -443,21 +433,27 @@ module.exports.__wbg_new_f841cc6f2098f4b5 = function() {
|
|
|
443
433
|
return addHeapObject(ret);
|
|
444
434
|
};
|
|
445
435
|
|
|
446
|
-
module.exports.
|
|
447
|
-
const ret = getObject(arg0).
|
|
436
|
+
module.exports.__wbg_set_388c4c6422704173 = function(arg0, arg1, arg2) {
|
|
437
|
+
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
448
438
|
return addHeapObject(ret);
|
|
449
|
-
}
|
|
439
|
+
};
|
|
450
440
|
|
|
451
|
-
module.exports.
|
|
452
|
-
const ret = getObject(arg0) ===
|
|
441
|
+
module.exports.__wbindgen_is_string = function(arg0) {
|
|
442
|
+
const ret = typeof(getObject(arg0)) === 'string';
|
|
453
443
|
return ret;
|
|
454
444
|
};
|
|
455
445
|
|
|
456
|
-
module.exports.
|
|
457
|
-
const
|
|
446
|
+
module.exports.__wbindgen_boolean_get = function(arg0) {
|
|
447
|
+
const v = getObject(arg0);
|
|
448
|
+
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
458
449
|
return ret;
|
|
459
450
|
};
|
|
460
451
|
|
|
452
|
+
module.exports.__wbindgen_number_new = function(arg0) {
|
|
453
|
+
const ret = arg0;
|
|
454
|
+
return addHeapObject(ret);
|
|
455
|
+
};
|
|
456
|
+
|
|
461
457
|
module.exports.__wbindgen_string_get = function(arg0, arg1) {
|
|
462
458
|
const obj = getObject(arg1);
|
|
463
459
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
@@ -467,69 +463,24 @@ module.exports.__wbindgen_string_get = function(arg0, arg1) {
|
|
|
467
463
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
468
464
|
};
|
|
469
465
|
|
|
470
|
-
module.exports.__wbg_next_88560ec06a094dea = function() { return handleError(function (arg0) {
|
|
471
|
-
const ret = getObject(arg0).next();
|
|
472
|
-
return addHeapObject(ret);
|
|
473
|
-
}, arguments) };
|
|
474
|
-
|
|
475
|
-
module.exports.__wbg_done_1ebec03bbd919843 = function(arg0) {
|
|
476
|
-
const ret = getObject(arg0).done;
|
|
477
|
-
return ret;
|
|
478
|
-
};
|
|
479
|
-
|
|
480
|
-
module.exports.__wbg_value_6ac8da5cc5b3efda = function(arg0) {
|
|
481
|
-
const ret = getObject(arg0).value;
|
|
482
|
-
return addHeapObject(ret);
|
|
483
|
-
};
|
|
484
|
-
|
|
485
|
-
module.exports.__wbg_get_27fe3dac1c4d0224 = function(arg0, arg1) {
|
|
486
|
-
const ret = getObject(arg0)[arg1 >>> 0];
|
|
487
|
-
return addHeapObject(ret);
|
|
488
|
-
};
|
|
489
|
-
|
|
490
|
-
module.exports.__wbindgen_boolean_get = function(arg0) {
|
|
491
|
-
const v = getObject(arg0);
|
|
492
|
-
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
493
|
-
return ret;
|
|
494
|
-
};
|
|
495
|
-
|
|
496
466
|
module.exports.__wbindgen_is_object = function(arg0) {
|
|
497
467
|
const val = getObject(arg0);
|
|
498
468
|
const ret = typeof(val) === 'object' && val !== null;
|
|
499
469
|
return ret;
|
|
500
470
|
};
|
|
501
471
|
|
|
502
|
-
module.exports.
|
|
503
|
-
const ret =
|
|
472
|
+
module.exports.__wbg_getwithrefkey_15c62c2b8546208d = function(arg0, arg1) {
|
|
473
|
+
const ret = getObject(arg0)[getObject(arg1)];
|
|
504
474
|
return addHeapObject(ret);
|
|
505
475
|
};
|
|
506
476
|
|
|
507
|
-
module.exports.
|
|
508
|
-
const ret = getObject(arg0)
|
|
477
|
+
module.exports.__wbindgen_is_undefined = function(arg0) {
|
|
478
|
+
const ret = getObject(arg0) === undefined;
|
|
509
479
|
return ret;
|
|
510
480
|
};
|
|
511
481
|
|
|
512
|
-
module.exports.
|
|
513
|
-
|
|
514
|
-
var state0 = {a: arg0, b: arg1};
|
|
515
|
-
var cb0 = (arg0, arg1) => {
|
|
516
|
-
const a = state0.a;
|
|
517
|
-
state0.a = 0;
|
|
518
|
-
try {
|
|
519
|
-
return __wbg_adapter_110(a, state0.b, arg0, arg1);
|
|
520
|
-
} finally {
|
|
521
|
-
state0.a = a;
|
|
522
|
-
}
|
|
523
|
-
};
|
|
524
|
-
const ret = new Promise(cb0);
|
|
525
|
-
return addHeapObject(ret);
|
|
526
|
-
} finally {
|
|
527
|
-
state0.a = state0.b = 0;
|
|
528
|
-
}
|
|
529
|
-
};
|
|
530
|
-
|
|
531
|
-
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
532
|
-
const ret = getObject(arg0) == getObject(arg1);
|
|
482
|
+
module.exports.__wbindgen_in = function(arg0, arg1) {
|
|
483
|
+
const ret = getObject(arg0) in getObject(arg1);
|
|
533
484
|
return ret;
|
|
534
485
|
};
|
|
535
486
|
|
|
@@ -572,31 +523,80 @@ module.exports.__wbg_isArray_39d28997bf6b96b4 = function(arg0) {
|
|
|
572
523
|
return ret;
|
|
573
524
|
};
|
|
574
525
|
|
|
526
|
+
module.exports.__wbg_length_e498fbc24f9c1d4f = function(arg0) {
|
|
527
|
+
const ret = getObject(arg0).length;
|
|
528
|
+
return ret;
|
|
529
|
+
};
|
|
530
|
+
|
|
575
531
|
module.exports.__wbg_iterator_55f114446221aa5a = function() {
|
|
576
532
|
const ret = Symbol.iterator;
|
|
577
533
|
return addHeapObject(ret);
|
|
578
534
|
};
|
|
579
535
|
|
|
580
|
-
module.exports.
|
|
581
|
-
const ret =
|
|
536
|
+
module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
537
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
538
|
+
return addHeapObject(ret);
|
|
539
|
+
};
|
|
540
|
+
|
|
541
|
+
module.exports.__wbg_next_88560ec06a094dea = function() { return handleError(function (arg0) {
|
|
542
|
+
const ret = getObject(arg0).next();
|
|
543
|
+
return addHeapObject(ret);
|
|
544
|
+
}, arguments) };
|
|
545
|
+
|
|
546
|
+
module.exports.__wbg_done_1ebec03bbd919843 = function(arg0) {
|
|
547
|
+
const ret = getObject(arg0).done;
|
|
582
548
|
return ret;
|
|
583
549
|
};
|
|
584
550
|
|
|
585
|
-
module.exports.
|
|
586
|
-
const ret =
|
|
551
|
+
module.exports.__wbg_value_6ac8da5cc5b3efda = function(arg0) {
|
|
552
|
+
const ret = getObject(arg0).value;
|
|
587
553
|
return addHeapObject(ret);
|
|
588
554
|
};
|
|
589
555
|
|
|
590
|
-
module.exports.
|
|
591
|
-
const ret = arg0;
|
|
556
|
+
module.exports.__wbg_get_27fe3dac1c4d0224 = function(arg0, arg1) {
|
|
557
|
+
const ret = getObject(arg0)[arg1 >>> 0];
|
|
592
558
|
return addHeapObject(ret);
|
|
593
559
|
};
|
|
594
560
|
|
|
595
|
-
module.exports.
|
|
596
|
-
const ret =
|
|
561
|
+
module.exports.__wbindgen_error_new = function(arg0, arg1) {
|
|
562
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
597
563
|
return addHeapObject(ret);
|
|
598
564
|
};
|
|
599
565
|
|
|
566
|
+
module.exports.__wbg_entries_4e1315b774245952 = function(arg0) {
|
|
567
|
+
const ret = Object.entries(getObject(arg0));
|
|
568
|
+
return addHeapObject(ret);
|
|
569
|
+
};
|
|
570
|
+
|
|
571
|
+
module.exports.__wbindgen_is_null = function(arg0) {
|
|
572
|
+
const ret = getObject(arg0) === null;
|
|
573
|
+
return ret;
|
|
574
|
+
};
|
|
575
|
+
|
|
576
|
+
module.exports.__wbg_new_9d3a9ce4282a18a8 = function(arg0, arg1) {
|
|
577
|
+
try {
|
|
578
|
+
var state0 = {a: arg0, b: arg1};
|
|
579
|
+
var cb0 = (arg0, arg1) => {
|
|
580
|
+
const a = state0.a;
|
|
581
|
+
state0.a = 0;
|
|
582
|
+
try {
|
|
583
|
+
return __wbg_adapter_110(a, state0.b, arg0, arg1);
|
|
584
|
+
} finally {
|
|
585
|
+
state0.a = a;
|
|
586
|
+
}
|
|
587
|
+
};
|
|
588
|
+
const ret = new Promise(cb0);
|
|
589
|
+
return addHeapObject(ret);
|
|
590
|
+
} finally {
|
|
591
|
+
state0.a = state0.b = 0;
|
|
592
|
+
}
|
|
593
|
+
};
|
|
594
|
+
|
|
595
|
+
module.exports.__wbg_call_9495de66fdbe016b = function() { return handleError(function (arg0, arg1, arg2) {
|
|
596
|
+
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
|
597
|
+
return addHeapObject(ret);
|
|
598
|
+
}, arguments) };
|
|
599
|
+
|
|
600
600
|
module.exports.__wbg_new0_25059e40b1c02766 = function() {
|
|
601
601
|
const ret = new Date();
|
|
602
602
|
return addHeapObject(ret);
|
|
@@ -706,6 +706,14 @@ module.exports.__wbg_set_17499e8aa4003ebd = function(arg0, arg1, arg2) {
|
|
|
706
706
|
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
|
707
707
|
};
|
|
708
708
|
|
|
709
|
+
module.exports.__wbindgen_debug_string = function(arg0, arg1) {
|
|
710
|
+
const ret = debugString(getObject(arg1));
|
|
711
|
+
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
712
|
+
const len0 = WASM_VECTOR_LEN;
|
|
713
|
+
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
714
|
+
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
715
|
+
};
|
|
716
|
+
|
|
709
717
|
module.exports.__wbg_instanceof_Uint8Array_01cebe79ca606cca = function(arg0) {
|
|
710
718
|
let result;
|
|
711
719
|
try {
|
|
@@ -736,18 +744,15 @@ module.exports.__wbg_String_91fba7ded13ba54c = function(arg0, arg1) {
|
|
|
736
744
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
737
745
|
};
|
|
738
746
|
|
|
739
|
-
module.exports.__wbindgen_debug_string = function(arg0, arg1) {
|
|
740
|
-
const ret = debugString(getObject(arg1));
|
|
741
|
-
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
|
742
|
-
const len0 = WASM_VECTOR_LEN;
|
|
743
|
-
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
744
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
745
|
-
};
|
|
746
|
-
|
|
747
747
|
module.exports.__wbindgen_throw = function(arg0, arg1) {
|
|
748
748
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
749
749
|
};
|
|
750
750
|
|
|
751
|
+
module.exports.__wbg_then_ec5db6d509eb475f = function(arg0, arg1) {
|
|
752
|
+
const ret = getObject(arg0).then(getObject(arg1));
|
|
753
|
+
return addHeapObject(ret);
|
|
754
|
+
};
|
|
755
|
+
|
|
751
756
|
module.exports.__wbg_resolve_fd40f858d9db1a04 = function(arg0) {
|
|
752
757
|
const ret = Promise.resolve(getObject(arg0));
|
|
753
758
|
return addHeapObject(ret);
|
|
@@ -763,13 +768,8 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
|
|
|
763
768
|
return ret;
|
|
764
769
|
};
|
|
765
770
|
|
|
766
|
-
module.exports.
|
|
767
|
-
const ret =
|
|
768
|
-
return addHeapObject(ret);
|
|
769
|
-
};
|
|
770
|
-
|
|
771
|
-
module.exports.__wbindgen_closure_wrapper19224 = function(arg0, arg1, arg2) {
|
|
772
|
-
const ret = makeMutClosure(arg0, arg1, 235, __wbg_adapter_50);
|
|
771
|
+
module.exports.__wbindgen_closure_wrapper18890 = function(arg0, arg1, arg2) {
|
|
772
|
+
const ret = makeMutClosure(arg0, arg1, 236, __wbg_adapter_50);
|
|
773
773
|
return addHeapObject(ret);
|
|
774
774
|
};
|
|
775
775
|
|
package/wasm_bg.wasm
CHANGED
|
Binary file
|