@swc/wasm 1.3.40 → 1.3.41

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 CHANGED
@@ -4,7 +4,7 @@
4
4
  "강동윤 <kdy1997.dev@gmail.com>"
5
5
  ],
6
6
  "description": "wasm module for swc",
7
- "version": "1.3.40",
7
+ "version": "1.3.41",
8
8
  "license": "Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",
package/wasm.d.ts CHANGED
@@ -877,6 +877,7 @@ export interface ReactConfig {
877
877
  development?: boolean;
878
878
  /**
879
879
  * Use `Object.assign()` instead of `_extends`. Defaults to false.
880
+ * @deprecated
880
881
  */
881
882
  useBuiltins?: boolean;
882
883
 
package/wasm.js CHANGED
@@ -3,6 +3,26 @@ 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
+
6
26
  let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
7
27
 
8
28
  cachedTextDecoder.decode();
@@ -20,12 +40,6 @@ function getStringFromWasm0(ptr, len) {
20
40
  return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
21
41
  }
22
42
 
23
- const heap = new Array(128).fill(undefined);
24
-
25
- heap.push(undefined, null, true, false);
26
-
27
- let heap_next = heap.length;
28
-
29
43
  function addHeapObject(obj) {
30
44
  if (heap_next === heap.length) heap.push(heap.length + 1);
31
45
  const idx = heap_next;
@@ -35,20 +49,6 @@ function addHeapObject(obj) {
35
49
  return idx;
36
50
  }
37
51
 
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,8 +396,12 @@ 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.__wbg_new_f9876326328f45ed = function() {
400
- const ret = new Object();
399
+ module.exports.__wbindgen_object_drop_ref = function(arg0) {
400
+ takeObject(arg0);
401
+ };
402
+
403
+ module.exports.__wbindgen_error_new = function(arg0, arg1) {
404
+ const ret = new Error(getStringFromWasm0(arg0, arg1));
401
405
  return addHeapObject(ret);
402
406
  };
403
407
 
@@ -406,17 +410,18 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
406
410
  return addHeapObject(ret);
407
411
  };
408
412
 
409
- module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
410
- getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
413
+ module.exports.__wbg_set_388c4c6422704173 = function(arg0, arg1, arg2) {
414
+ const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
415
+ return addHeapObject(ret);
411
416
  };
412
417
 
413
- module.exports.__wbindgen_object_drop_ref = function(arg0) {
414
- takeObject(arg0);
418
+ module.exports.__wbindgen_is_string = function(arg0) {
419
+ const ret = typeof(getObject(arg0)) === 'string';
420
+ return ret;
415
421
  };
416
422
 
417
- module.exports.__wbindgen_number_new = function(arg0) {
418
- const ret = arg0;
419
- return addHeapObject(ret);
423
+ module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
424
+ getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
420
425
  };
421
426
 
422
427
  module.exports.__wbg_new_b525de17f44a8943 = function() {
@@ -424,6 +429,11 @@ module.exports.__wbg_new_b525de17f44a8943 = function() {
424
429
  return addHeapObject(ret);
425
430
  };
426
431
 
432
+ module.exports.__wbg_new_f9876326328f45ed = function() {
433
+ const ret = new Object();
434
+ return addHeapObject(ret);
435
+ };
436
+
427
437
  module.exports.__wbg_set_17224bc548dd1d7b = function(arg0, arg1, arg2) {
428
438
  getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
429
439
  };
@@ -433,19 +443,19 @@ module.exports.__wbg_new_f841cc6f2098f4b5 = function() {
433
443
  return addHeapObject(ret);
434
444
  };
435
445
 
436
- module.exports.__wbg_set_388c4c6422704173 = function(arg0, arg1, arg2) {
437
- const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
446
+ module.exports.__wbg_call_9495de66fdbe016b = function() { return handleError(function (arg0, arg1, arg2) {
447
+ const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
438
448
  return addHeapObject(ret);
439
- };
449
+ }, arguments) };
440
450
 
441
- module.exports.__wbindgen_is_string = function(arg0) {
442
- const ret = typeof(getObject(arg0)) === 'string';
451
+ module.exports.__wbindgen_is_null = function(arg0) {
452
+ const ret = getObject(arg0) === null;
443
453
  return ret;
444
454
  };
445
455
 
446
- module.exports.__wbindgen_error_new = function(arg0, arg1) {
447
- const ret = new Error(getStringFromWasm0(arg0, arg1));
448
- return addHeapObject(ret);
456
+ module.exports.__wbindgen_is_undefined = function(arg0) {
457
+ const ret = getObject(arg0) === undefined;
458
+ return ret;
449
459
  };
450
460
 
451
461
  module.exports.__wbindgen_string_get = function(arg0, arg1) {
@@ -457,50 +467,69 @@ module.exports.__wbindgen_string_get = function(arg0, arg1) {
457
467
  getInt32Memory0()[arg0 / 4 + 0] = ptr0;
458
468
  };
459
469
 
460
- module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
461
- const ret = getObject(arg0) == getObject(arg1);
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;
462
477
  return ret;
463
478
  };
464
479
 
465
- module.exports.__wbindgen_is_object = function(arg0) {
466
- const val = getObject(arg0);
467
- const ret = typeof(val) === 'object' && val !== null;
468
- return ret;
480
+ module.exports.__wbg_value_6ac8da5cc5b3efda = function(arg0) {
481
+ const ret = getObject(arg0).value;
482
+ return addHeapObject(ret);
469
483
  };
470
484
 
471
- module.exports.__wbg_entries_4e1315b774245952 = function(arg0) {
472
- const ret = Object.entries(getObject(arg0));
485
+ module.exports.__wbg_get_27fe3dac1c4d0224 = function(arg0, arg1) {
486
+ const ret = getObject(arg0)[arg1 >>> 0];
473
487
  return addHeapObject(ret);
474
488
  };
475
489
 
476
- module.exports.__wbg_length_e498fbc24f9c1d4f = function(arg0) {
477
- const ret = getObject(arg0).length;
490
+ module.exports.__wbindgen_boolean_get = function(arg0) {
491
+ const v = getObject(arg0);
492
+ const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
478
493
  return ret;
479
494
  };
480
495
 
481
- module.exports.__wbg_get_27fe3dac1c4d0224 = function(arg0, arg1) {
482
- const ret = getObject(arg0)[arg1 >>> 0];
483
- return addHeapObject(ret);
496
+ module.exports.__wbindgen_is_object = function(arg0) {
497
+ const val = getObject(arg0);
498
+ const ret = typeof(val) === 'object' && val !== null;
499
+ return ret;
484
500
  };
485
501
 
486
- module.exports.__wbg_getwithrefkey_15c62c2b8546208d = function(arg0, arg1) {
487
- const ret = getObject(arg0)[getObject(arg1)];
502
+ module.exports.__wbg_entries_4e1315b774245952 = function(arg0) {
503
+ const ret = Object.entries(getObject(arg0));
488
504
  return addHeapObject(ret);
489
505
  };
490
506
 
491
- module.exports.__wbindgen_is_undefined = function(arg0) {
492
- const ret = getObject(arg0) === undefined;
507
+ module.exports.__wbg_length_e498fbc24f9c1d4f = function(arg0) {
508
+ const ret = getObject(arg0).length;
493
509
  return ret;
494
510
  };
495
511
 
496
- module.exports.__wbindgen_in = function(arg0, arg1) {
497
- const ret = getObject(arg0) in getObject(arg1);
498
- return ret;
512
+ module.exports.__wbg_new_9d3a9ce4282a18a8 = function(arg0, arg1) {
513
+ try {
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
+ }
499
529
  };
500
530
 
501
- module.exports.__wbindgen_boolean_get = function(arg0) {
502
- const v = getObject(arg0);
503
- const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
531
+ module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
532
+ const ret = getObject(arg0) == getObject(arg1);
504
533
  return ret;
505
534
  };
506
535
 
@@ -548,53 +577,24 @@ module.exports.__wbg_iterator_55f114446221aa5a = function() {
548
577
  return addHeapObject(ret);
549
578
  };
550
579
 
551
- module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
552
- const ret = BigInt.asUintN(64, arg0);
553
- return addHeapObject(ret);
554
- };
555
-
556
- module.exports.__wbg_call_9495de66fdbe016b = function() { return handleError(function (arg0, arg1, arg2) {
557
- const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
558
- return addHeapObject(ret);
559
- }, arguments) };
560
-
561
- module.exports.__wbindgen_is_null = function(arg0) {
562
- const ret = getObject(arg0) === null;
580
+ module.exports.__wbindgen_in = function(arg0, arg1) {
581
+ const ret = getObject(arg0) in getObject(arg1);
563
582
  return ret;
564
583
  };
565
584
 
566
- module.exports.__wbg_next_88560ec06a094dea = function() { return handleError(function (arg0) {
567
- const ret = getObject(arg0).next();
585
+ module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
586
+ const ret = BigInt.asUintN(64, arg0);
568
587
  return addHeapObject(ret);
569
- }, arguments) };
570
-
571
- module.exports.__wbg_done_1ebec03bbd919843 = function(arg0) {
572
- const ret = getObject(arg0).done;
573
- return ret;
574
588
  };
575
589
 
576
- module.exports.__wbg_value_6ac8da5cc5b3efda = function(arg0) {
577
- const ret = getObject(arg0).value;
590
+ module.exports.__wbindgen_number_new = function(arg0) {
591
+ const ret = arg0;
578
592
  return addHeapObject(ret);
579
593
  };
580
594
 
581
- module.exports.__wbg_new_9d3a9ce4282a18a8 = function(arg0, arg1) {
582
- try {
583
- var state0 = {a: arg0, b: arg1};
584
- var cb0 = (arg0, arg1) => {
585
- const a = state0.a;
586
- state0.a = 0;
587
- try {
588
- return __wbg_adapter_110(a, state0.b, arg0, arg1);
589
- } finally {
590
- state0.a = a;
591
- }
592
- };
593
- const ret = new Promise(cb0);
594
- return addHeapObject(ret);
595
- } finally {
596
- state0.a = state0.b = 0;
597
- }
595
+ module.exports.__wbg_getwithrefkey_15c62c2b8546208d = function(arg0, arg1) {
596
+ const ret = getObject(arg0)[getObject(arg1)];
597
+ return addHeapObject(ret);
598
598
  };
599
599
 
600
600
  module.exports.__wbg_new0_25059e40b1c02766 = function() {
@@ -768,7 +768,7 @@ module.exports.__wbg_then_ec5db6d509eb475f = function(arg0, arg1) {
768
768
  return addHeapObject(ret);
769
769
  };
770
770
 
771
- module.exports.__wbindgen_closure_wrapper19281 = function(arg0, arg1, arg2) {
771
+ module.exports.__wbindgen_closure_wrapper19272 = function(arg0, arg1, arg2) {
772
772
  const ret = makeMutClosure(arg0, arg1, 235, __wbg_adapter_50);
773
773
  return addHeapObject(ret);
774
774
  };
package/wasm_bg.wasm CHANGED
Binary file