@swc/wasm 1.3.41 → 1.3.43
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.js +110 -110
- package/wasm_bg.wasm +0 -0
package/package.json
CHANGED
package/wasm.js
CHANGED
|
@@ -3,26 +3,6 @@ imports['__wbindgen_placeholder__'] = module.exports;
|
|
|
3
3
|
let wasm;
|
|
4
4
|
const { TextDecoder, TextEncoder } = require(`util`);
|
|
5
5
|
|
|
6
|
-
const heap = new Array(128).fill(undefined);
|
|
7
|
-
|
|
8
|
-
heap.push(undefined, null, true, false);
|
|
9
|
-
|
|
10
|
-
function getObject(idx) { return heap[idx]; }
|
|
11
|
-
|
|
12
|
-
let heap_next = heap.length;
|
|
13
|
-
|
|
14
|
-
function dropObject(idx) {
|
|
15
|
-
if (idx < 132) return;
|
|
16
|
-
heap[idx] = heap_next;
|
|
17
|
-
heap_next = idx;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
function takeObject(idx) {
|
|
21
|
-
const ret = getObject(idx);
|
|
22
|
-
dropObject(idx);
|
|
23
|
-
return ret;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
6
|
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
27
7
|
|
|
28
8
|
cachedTextDecoder.decode();
|
|
@@ -40,6 +20,12 @@ function getStringFromWasm0(ptr, len) {
|
|
|
40
20
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
|
41
21
|
}
|
|
42
22
|
|
|
23
|
+
const heap = new Array(128).fill(undefined);
|
|
24
|
+
|
|
25
|
+
heap.push(undefined, null, true, false);
|
|
26
|
+
|
|
27
|
+
let heap_next = heap.length;
|
|
28
|
+
|
|
43
29
|
function addHeapObject(obj) {
|
|
44
30
|
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
45
31
|
const idx = heap_next;
|
|
@@ -49,6 +35,20 @@ function addHeapObject(obj) {
|
|
|
49
35
|
return idx;
|
|
50
36
|
}
|
|
51
37
|
|
|
38
|
+
function getObject(idx) { return heap[idx]; }
|
|
39
|
+
|
|
40
|
+
function dropObject(idx) {
|
|
41
|
+
if (idx < 132) return;
|
|
42
|
+
heap[idx] = heap_next;
|
|
43
|
+
heap_next = idx;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function takeObject(idx) {
|
|
47
|
+
const ret = getObject(idx);
|
|
48
|
+
dropObject(idx);
|
|
49
|
+
return ret;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
52
|
let WASM_VECTOR_LEN = 0;
|
|
53
53
|
|
|
54
54
|
let cachedTextEncoder = new TextEncoder('utf-8');
|
|
@@ -396,12 +396,8 @@ 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.
|
|
400
|
-
|
|
401
|
-
};
|
|
402
|
-
|
|
403
|
-
module.exports.__wbindgen_error_new = function(arg0, arg1) {
|
|
404
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
399
|
+
module.exports.__wbg_new_f9876326328f45ed = function() {
|
|
400
|
+
const ret = new Object();
|
|
405
401
|
return addHeapObject(ret);
|
|
406
402
|
};
|
|
407
403
|
|
|
@@ -410,27 +406,16 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
410
406
|
return addHeapObject(ret);
|
|
411
407
|
};
|
|
412
408
|
|
|
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
409
|
module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
|
|
424
410
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
425
411
|
};
|
|
426
412
|
|
|
427
|
-
module.exports.
|
|
428
|
-
|
|
429
|
-
return addHeapObject(ret);
|
|
413
|
+
module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
414
|
+
takeObject(arg0);
|
|
430
415
|
};
|
|
431
416
|
|
|
432
|
-
module.exports.
|
|
433
|
-
const ret = new
|
|
417
|
+
module.exports.__wbg_new_b525de17f44a8943 = function() {
|
|
418
|
+
const ret = new Array();
|
|
434
419
|
return addHeapObject(ret);
|
|
435
420
|
};
|
|
436
421
|
|
|
@@ -443,18 +428,13 @@ module.exports.__wbg_new_f841cc6f2098f4b5 = function() {
|
|
|
443
428
|
return addHeapObject(ret);
|
|
444
429
|
};
|
|
445
430
|
|
|
446
|
-
module.exports.
|
|
447
|
-
const ret = getObject(arg0).
|
|
431
|
+
module.exports.__wbg_set_388c4c6422704173 = function(arg0, arg1, arg2) {
|
|
432
|
+
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
448
433
|
return addHeapObject(ret);
|
|
449
|
-
}, arguments) };
|
|
450
|
-
|
|
451
|
-
module.exports.__wbindgen_is_null = function(arg0) {
|
|
452
|
-
const ret = getObject(arg0) === null;
|
|
453
|
-
return ret;
|
|
454
434
|
};
|
|
455
435
|
|
|
456
|
-
module.exports.
|
|
457
|
-
const ret = getObject(arg0) ===
|
|
436
|
+
module.exports.__wbindgen_is_string = function(arg0) {
|
|
437
|
+
const ret = typeof(getObject(arg0)) === 'string';
|
|
458
438
|
return ret;
|
|
459
439
|
};
|
|
460
440
|
|
|
@@ -467,29 +447,18 @@ module.exports.__wbindgen_string_get = function(arg0, arg1) {
|
|
|
467
447
|
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
468
448
|
};
|
|
469
449
|
|
|
470
|
-
module.exports.
|
|
471
|
-
const ret =
|
|
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;
|
|
450
|
+
module.exports.__wbindgen_error_new = function(arg0, arg1) {
|
|
451
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
482
452
|
return addHeapObject(ret);
|
|
483
453
|
};
|
|
484
454
|
|
|
485
|
-
module.exports.
|
|
486
|
-
const ret =
|
|
455
|
+
module.exports.__wbindgen_number_new = function(arg0) {
|
|
456
|
+
const ret = arg0;
|
|
487
457
|
return addHeapObject(ret);
|
|
488
458
|
};
|
|
489
459
|
|
|
490
|
-
module.exports.
|
|
491
|
-
const
|
|
492
|
-
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
460
|
+
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
461
|
+
const ret = getObject(arg0) == getObject(arg1);
|
|
493
462
|
return ret;
|
|
494
463
|
};
|
|
495
464
|
|
|
@@ -509,27 +478,29 @@ module.exports.__wbg_length_e498fbc24f9c1d4f = function(arg0) {
|
|
|
509
478
|
return ret;
|
|
510
479
|
};
|
|
511
480
|
|
|
512
|
-
module.exports.
|
|
513
|
-
|
|
514
|
-
|
|
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
|
-
}
|
|
481
|
+
module.exports.__wbg_get_27fe3dac1c4d0224 = function(arg0, arg1) {
|
|
482
|
+
const ret = getObject(arg0)[arg1 >>> 0];
|
|
483
|
+
return addHeapObject(ret);
|
|
529
484
|
};
|
|
530
485
|
|
|
531
|
-
module.exports.
|
|
532
|
-
const ret = getObject(arg0)
|
|
486
|
+
module.exports.__wbg_getwithrefkey_15c62c2b8546208d = function(arg0, arg1) {
|
|
487
|
+
const ret = getObject(arg0)[getObject(arg1)];
|
|
488
|
+
return addHeapObject(ret);
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
module.exports.__wbindgen_is_undefined = function(arg0) {
|
|
492
|
+
const ret = getObject(arg0) === undefined;
|
|
493
|
+
return ret;
|
|
494
|
+
};
|
|
495
|
+
|
|
496
|
+
module.exports.__wbindgen_in = function(arg0, arg1) {
|
|
497
|
+
const ret = getObject(arg0) in getObject(arg1);
|
|
498
|
+
return ret;
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
module.exports.__wbindgen_boolean_get = function(arg0) {
|
|
502
|
+
const v = getObject(arg0);
|
|
503
|
+
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
533
504
|
return ret;
|
|
534
505
|
};
|
|
535
506
|
|
|
@@ -577,26 +548,55 @@ module.exports.__wbg_iterator_55f114446221aa5a = function() {
|
|
|
577
548
|
return addHeapObject(ret);
|
|
578
549
|
};
|
|
579
550
|
|
|
580
|
-
module.exports.__wbindgen_in = function(arg0, arg1) {
|
|
581
|
-
const ret = getObject(arg0) in getObject(arg1);
|
|
582
|
-
return ret;
|
|
583
|
-
};
|
|
584
|
-
|
|
585
551
|
module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
586
552
|
const ret = BigInt.asUintN(64, arg0);
|
|
587
553
|
return addHeapObject(ret);
|
|
588
554
|
};
|
|
589
555
|
|
|
590
|
-
module.exports.
|
|
591
|
-
const ret = arg0;
|
|
556
|
+
module.exports.__wbg_next_88560ec06a094dea = function() { return handleError(function (arg0) {
|
|
557
|
+
const ret = getObject(arg0).next();
|
|
592
558
|
return addHeapObject(ret);
|
|
559
|
+
}, arguments) };
|
|
560
|
+
|
|
561
|
+
module.exports.__wbg_done_1ebec03bbd919843 = function(arg0) {
|
|
562
|
+
const ret = getObject(arg0).done;
|
|
563
|
+
return ret;
|
|
593
564
|
};
|
|
594
565
|
|
|
595
|
-
module.exports.
|
|
596
|
-
const ret = getObject(arg0)
|
|
566
|
+
module.exports.__wbg_value_6ac8da5cc5b3efda = function(arg0) {
|
|
567
|
+
const ret = getObject(arg0).value;
|
|
597
568
|
return addHeapObject(ret);
|
|
598
569
|
};
|
|
599
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_wrapper19272 = function(arg0, arg1, arg2) {
|
|
772
|
-
const ret = makeMutClosure(arg0, arg1, 235, __wbg_adapter_50);
|
|
771
|
+
module.exports.__wbindgen_closure_wrapper18848 = function(arg0, arg1, arg2) {
|
|
772
|
+
const ret = makeMutClosure(arg0, arg1, 241, __wbg_adapter_50);
|
|
773
773
|
return addHeapObject(ret);
|
|
774
774
|
};
|
|
775
775
|
|
package/wasm_bg.wasm
CHANGED
|
Binary file
|