oxc-parser 0.123.0 → 0.125.0

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.
@@ -26,12 +26,12 @@ export class Program {
26
26
 
27
27
  get start() {
28
28
  const internal = this.#internal;
29
- return constructU32(internal.pos, internal.ast);
29
+ return constructI32(internal.pos, internal.ast);
30
30
  }
31
31
 
32
32
  get end() {
33
33
  const internal = this.#internal;
34
- return constructU32(internal.pos + 4, internal.ast);
34
+ return constructI32(internal.pos + 4, internal.ast);
35
35
  }
36
36
 
37
37
  get sourceType() {
@@ -179,12 +179,12 @@ export class IdentifierName {
179
179
 
180
180
  get start() {
181
181
  const internal = this.#internal;
182
- return constructU32(internal.pos, internal.ast);
182
+ return constructI32(internal.pos, internal.ast);
183
183
  }
184
184
 
185
185
  get end() {
186
186
  const internal = this.#internal;
187
- return constructU32(internal.pos + 4, internal.ast);
187
+ return constructI32(internal.pos + 4, internal.ast);
188
188
  }
189
189
 
190
190
  get name() {
@@ -227,12 +227,12 @@ export class IdentifierReference {
227
227
 
228
228
  get start() {
229
229
  const internal = this.#internal;
230
- return constructU32(internal.pos, internal.ast);
230
+ return constructI32(internal.pos, internal.ast);
231
231
  }
232
232
 
233
233
  get end() {
234
234
  const internal = this.#internal;
235
- return constructU32(internal.pos + 4, internal.ast);
235
+ return constructI32(internal.pos + 4, internal.ast);
236
236
  }
237
237
 
238
238
  get name() {
@@ -275,12 +275,12 @@ export class BindingIdentifier {
275
275
 
276
276
  get start() {
277
277
  const internal = this.#internal;
278
- return constructU32(internal.pos, internal.ast);
278
+ return constructI32(internal.pos, internal.ast);
279
279
  }
280
280
 
281
281
  get end() {
282
282
  const internal = this.#internal;
283
- return constructU32(internal.pos + 4, internal.ast);
283
+ return constructI32(internal.pos + 4, internal.ast);
284
284
  }
285
285
 
286
286
  get name() {
@@ -323,12 +323,12 @@ export class LabelIdentifier {
323
323
 
324
324
  get start() {
325
325
  const internal = this.#internal;
326
- return constructU32(internal.pos, internal.ast);
326
+ return constructI32(internal.pos, internal.ast);
327
327
  }
328
328
 
329
329
  get end() {
330
330
  const internal = this.#internal;
331
- return constructU32(internal.pos + 4, internal.ast);
331
+ return constructI32(internal.pos + 4, internal.ast);
332
332
  }
333
333
 
334
334
  get name() {
@@ -371,12 +371,12 @@ export class ThisExpression {
371
371
 
372
372
  get start() {
373
373
  const internal = this.#internal;
374
- return constructU32(internal.pos, internal.ast);
374
+ return constructI32(internal.pos, internal.ast);
375
375
  }
376
376
 
377
377
  get end() {
378
378
  const internal = this.#internal;
379
- return constructU32(internal.pos + 4, internal.ast);
379
+ return constructI32(internal.pos + 4, internal.ast);
380
380
  }
381
381
 
382
382
  toJSON() {
@@ -411,12 +411,12 @@ export class ArrayExpression {
411
411
 
412
412
  get start() {
413
413
  const internal = this.#internal;
414
- return constructU32(internal.pos, internal.ast);
414
+ return constructI32(internal.pos, internal.ast);
415
415
  }
416
416
 
417
417
  get end() {
418
418
  const internal = this.#internal;
419
- return constructU32(internal.pos + 4, internal.ast);
419
+ return constructI32(internal.pos + 4, internal.ast);
420
420
  }
421
421
 
422
422
  get elements() {
@@ -559,12 +559,12 @@ export class Elision {
559
559
 
560
560
  get start() {
561
561
  const internal = this.#internal;
562
- return constructU32(internal.pos, internal.ast);
562
+ return constructI32(internal.pos, internal.ast);
563
563
  }
564
564
 
565
565
  get end() {
566
566
  const internal = this.#internal;
567
- return constructU32(internal.pos + 4, internal.ast);
567
+ return constructI32(internal.pos + 4, internal.ast);
568
568
  }
569
569
 
570
570
  toJSON() {
@@ -599,12 +599,12 @@ export class ObjectExpression {
599
599
 
600
600
  get start() {
601
601
  const internal = this.#internal;
602
- return constructU32(internal.pos, internal.ast);
602
+ return constructI32(internal.pos, internal.ast);
603
603
  }
604
604
 
605
605
  get end() {
606
606
  const internal = this.#internal;
607
- return constructU32(internal.pos + 4, internal.ast);
607
+ return constructI32(internal.pos + 4, internal.ast);
608
608
  }
609
609
 
610
610
  get properties() {
@@ -658,12 +658,12 @@ export class ObjectProperty {
658
658
 
659
659
  get start() {
660
660
  const internal = this.#internal;
661
- return constructU32(internal.pos, internal.ast);
661
+ return constructI32(internal.pos, internal.ast);
662
662
  }
663
663
 
664
664
  get end() {
665
665
  const internal = this.#internal;
666
- return constructU32(internal.pos + 4, internal.ast);
666
+ return constructI32(internal.pos + 4, internal.ast);
667
667
  }
668
668
 
669
669
  get kind() {
@@ -844,12 +844,12 @@ export class TemplateLiteral {
844
844
 
845
845
  get start() {
846
846
  const internal = this.#internal;
847
- return constructU32(internal.pos, internal.ast);
847
+ return constructI32(internal.pos, internal.ast);
848
848
  }
849
849
 
850
850
  get end() {
851
851
  const internal = this.#internal;
852
- return constructU32(internal.pos + 4, internal.ast);
852
+ return constructI32(internal.pos + 4, internal.ast);
853
853
  }
854
854
 
855
855
  get quasis() {
@@ -900,12 +900,12 @@ export class TaggedTemplateExpression {
900
900
 
901
901
  get start() {
902
902
  const internal = this.#internal;
903
- return constructU32(internal.pos, internal.ast);
903
+ return constructI32(internal.pos, internal.ast);
904
904
  }
905
905
 
906
906
  get end() {
907
907
  const internal = this.#internal;
908
- return constructU32(internal.pos + 4, internal.ast);
908
+ return constructI32(internal.pos + 4, internal.ast);
909
909
  }
910
910
 
911
911
  get tag() {
@@ -958,12 +958,12 @@ export class TemplateElement {
958
958
 
959
959
  get start() {
960
960
  const internal = this.#internal;
961
- return constructU32(internal.pos, internal.ast);
961
+ return constructI32(internal.pos, internal.ast);
962
962
  }
963
963
 
964
964
  get end() {
965
965
  const internal = this.#internal;
966
- return constructU32(internal.pos + 4, internal.ast);
966
+ return constructI32(internal.pos + 4, internal.ast);
967
967
  }
968
968
 
969
969
  get value() {
@@ -1065,12 +1065,12 @@ export class ComputedMemberExpression {
1065
1065
 
1066
1066
  get start() {
1067
1067
  const internal = this.#internal;
1068
- return constructU32(internal.pos, internal.ast);
1068
+ return constructI32(internal.pos, internal.ast);
1069
1069
  }
1070
1070
 
1071
1071
  get end() {
1072
1072
  const internal = this.#internal;
1073
- return constructU32(internal.pos + 4, internal.ast);
1073
+ return constructI32(internal.pos + 4, internal.ast);
1074
1074
  }
1075
1075
 
1076
1076
  get object() {
@@ -1123,12 +1123,12 @@ export class StaticMemberExpression {
1123
1123
 
1124
1124
  get start() {
1125
1125
  const internal = this.#internal;
1126
- return constructU32(internal.pos, internal.ast);
1126
+ return constructI32(internal.pos, internal.ast);
1127
1127
  }
1128
1128
 
1129
1129
  get end() {
1130
1130
  const internal = this.#internal;
1131
- return constructU32(internal.pos + 4, internal.ast);
1131
+ return constructI32(internal.pos + 4, internal.ast);
1132
1132
  }
1133
1133
 
1134
1134
  get object() {
@@ -1181,12 +1181,12 @@ export class PrivateFieldExpression {
1181
1181
 
1182
1182
  get start() {
1183
1183
  const internal = this.#internal;
1184
- return constructU32(internal.pos, internal.ast);
1184
+ return constructI32(internal.pos, internal.ast);
1185
1185
  }
1186
1186
 
1187
1187
  get end() {
1188
1188
  const internal = this.#internal;
1189
- return constructU32(internal.pos + 4, internal.ast);
1189
+ return constructI32(internal.pos + 4, internal.ast);
1190
1190
  }
1191
1191
 
1192
1192
  get object() {
@@ -1239,12 +1239,12 @@ export class CallExpression {
1239
1239
 
1240
1240
  get start() {
1241
1241
  const internal = this.#internal;
1242
- return constructU32(internal.pos, internal.ast);
1242
+ return constructI32(internal.pos, internal.ast);
1243
1243
  }
1244
1244
 
1245
1245
  get end() {
1246
1246
  const internal = this.#internal;
1247
- return constructU32(internal.pos + 4, internal.ast);
1247
+ return constructI32(internal.pos + 4, internal.ast);
1248
1248
  }
1249
1249
 
1250
1250
  get callee() {
@@ -1305,12 +1305,12 @@ export class NewExpression {
1305
1305
 
1306
1306
  get start() {
1307
1307
  const internal = this.#internal;
1308
- return constructU32(internal.pos, internal.ast);
1308
+ return constructI32(internal.pos, internal.ast);
1309
1309
  }
1310
1310
 
1311
1311
  get end() {
1312
1312
  const internal = this.#internal;
1313
- return constructU32(internal.pos + 4, internal.ast);
1313
+ return constructI32(internal.pos + 4, internal.ast);
1314
1314
  }
1315
1315
 
1316
1316
  get callee() {
@@ -1365,12 +1365,12 @@ export class MetaProperty {
1365
1365
 
1366
1366
  get start() {
1367
1367
  const internal = this.#internal;
1368
- return constructU32(internal.pos, internal.ast);
1368
+ return constructI32(internal.pos, internal.ast);
1369
1369
  }
1370
1370
 
1371
1371
  get end() {
1372
1372
  const internal = this.#internal;
1373
- return constructU32(internal.pos + 4, internal.ast);
1373
+ return constructI32(internal.pos + 4, internal.ast);
1374
1374
  }
1375
1375
 
1376
1376
  get meta() {
@@ -1417,12 +1417,12 @@ export class SpreadElement {
1417
1417
 
1418
1418
  get start() {
1419
1419
  const internal = this.#internal;
1420
- return constructU32(internal.pos, internal.ast);
1420
+ return constructI32(internal.pos, internal.ast);
1421
1421
  }
1422
1422
 
1423
1423
  get end() {
1424
1424
  const internal = this.#internal;
1425
- return constructU32(internal.pos + 4, internal.ast);
1425
+ return constructI32(internal.pos + 4, internal.ast);
1426
1426
  }
1427
1427
 
1428
1428
  get argument() {
@@ -1558,12 +1558,12 @@ export class UpdateExpression {
1558
1558
 
1559
1559
  get start() {
1560
1560
  const internal = this.#internal;
1561
- return constructU32(internal.pos, internal.ast);
1561
+ return constructI32(internal.pos, internal.ast);
1562
1562
  }
1563
1563
 
1564
1564
  get end() {
1565
1565
  const internal = this.#internal;
1566
- return constructU32(internal.pos + 4, internal.ast);
1566
+ return constructI32(internal.pos + 4, internal.ast);
1567
1567
  }
1568
1568
 
1569
1569
  get operator() {
@@ -1616,12 +1616,12 @@ export class UnaryExpression {
1616
1616
 
1617
1617
  get start() {
1618
1618
  const internal = this.#internal;
1619
- return constructU32(internal.pos, internal.ast);
1619
+ return constructI32(internal.pos, internal.ast);
1620
1620
  }
1621
1621
 
1622
1622
  get end() {
1623
1623
  const internal = this.#internal;
1624
- return constructU32(internal.pos + 4, internal.ast);
1624
+ return constructI32(internal.pos + 4, internal.ast);
1625
1625
  }
1626
1626
 
1627
1627
  get operator() {
@@ -1668,12 +1668,12 @@ export class BinaryExpression {
1668
1668
 
1669
1669
  get start() {
1670
1670
  const internal = this.#internal;
1671
- return constructU32(internal.pos, internal.ast);
1671
+ return constructI32(internal.pos, internal.ast);
1672
1672
  }
1673
1673
 
1674
1674
  get end() {
1675
1675
  const internal = this.#internal;
1676
- return constructU32(internal.pos + 4, internal.ast);
1676
+ return constructI32(internal.pos + 4, internal.ast);
1677
1677
  }
1678
1678
 
1679
1679
  get left() {
@@ -1726,12 +1726,12 @@ export class PrivateInExpression {
1726
1726
 
1727
1727
  get start() {
1728
1728
  const internal = this.#internal;
1729
- return constructU32(internal.pos, internal.ast);
1729
+ return constructI32(internal.pos, internal.ast);
1730
1730
  }
1731
1731
 
1732
1732
  get end() {
1733
1733
  const internal = this.#internal;
1734
- return constructU32(internal.pos + 4, internal.ast);
1734
+ return constructI32(internal.pos + 4, internal.ast);
1735
1735
  }
1736
1736
 
1737
1737
  get left() {
@@ -1778,12 +1778,12 @@ export class LogicalExpression {
1778
1778
 
1779
1779
  get start() {
1780
1780
  const internal = this.#internal;
1781
- return constructU32(internal.pos, internal.ast);
1781
+ return constructI32(internal.pos, internal.ast);
1782
1782
  }
1783
1783
 
1784
1784
  get end() {
1785
1785
  const internal = this.#internal;
1786
- return constructU32(internal.pos + 4, internal.ast);
1786
+ return constructI32(internal.pos + 4, internal.ast);
1787
1787
  }
1788
1788
 
1789
1789
  get left() {
@@ -1836,12 +1836,12 @@ export class ConditionalExpression {
1836
1836
 
1837
1837
  get start() {
1838
1838
  const internal = this.#internal;
1839
- return constructU32(internal.pos, internal.ast);
1839
+ return constructI32(internal.pos, internal.ast);
1840
1840
  }
1841
1841
 
1842
1842
  get end() {
1843
1843
  const internal = this.#internal;
1844
- return constructU32(internal.pos + 4, internal.ast);
1844
+ return constructI32(internal.pos + 4, internal.ast);
1845
1845
  }
1846
1846
 
1847
1847
  get test() {
@@ -1894,12 +1894,12 @@ export class AssignmentExpression {
1894
1894
 
1895
1895
  get start() {
1896
1896
  const internal = this.#internal;
1897
- return constructU32(internal.pos, internal.ast);
1897
+ return constructI32(internal.pos, internal.ast);
1898
1898
  }
1899
1899
 
1900
1900
  get end() {
1901
1901
  const internal = this.#internal;
1902
- return constructU32(internal.pos + 4, internal.ast);
1902
+ return constructI32(internal.pos + 4, internal.ast);
1903
1903
  }
1904
1904
 
1905
1905
  get operator() {
@@ -2013,12 +2013,12 @@ export class ArrayAssignmentTarget {
2013
2013
 
2014
2014
  get start() {
2015
2015
  const internal = this.#internal;
2016
- return constructU32(internal.pos, internal.ast);
2016
+ return constructI32(internal.pos, internal.ast);
2017
2017
  }
2018
2018
 
2019
2019
  get end() {
2020
2020
  const internal = this.#internal;
2021
- return constructU32(internal.pos + 4, internal.ast);
2021
+ return constructI32(internal.pos + 4, internal.ast);
2022
2022
  }
2023
2023
 
2024
2024
  get elements() {
@@ -2064,12 +2064,12 @@ export class ObjectAssignmentTarget {
2064
2064
 
2065
2065
  get start() {
2066
2066
  const internal = this.#internal;
2067
- return constructU32(internal.pos, internal.ast);
2067
+ return constructI32(internal.pos, internal.ast);
2068
2068
  }
2069
2069
 
2070
2070
  get end() {
2071
2071
  const internal = this.#internal;
2072
- return constructU32(internal.pos + 4, internal.ast);
2072
+ return constructI32(internal.pos + 4, internal.ast);
2073
2073
  }
2074
2074
 
2075
2075
  get properties() {
@@ -2115,12 +2115,12 @@ export class AssignmentTargetRest {
2115
2115
 
2116
2116
  get start() {
2117
2117
  const internal = this.#internal;
2118
- return constructU32(internal.pos, internal.ast);
2118
+ return constructI32(internal.pos, internal.ast);
2119
2119
  }
2120
2120
 
2121
2121
  get end() {
2122
2122
  const internal = this.#internal;
2123
- return constructU32(internal.pos + 4, internal.ast);
2123
+ return constructI32(internal.pos + 4, internal.ast);
2124
2124
  }
2125
2125
 
2126
2126
  get argument() {
@@ -2192,12 +2192,12 @@ export class AssignmentTargetWithDefault {
2192
2192
 
2193
2193
  get start() {
2194
2194
  const internal = this.#internal;
2195
- return constructU32(internal.pos, internal.ast);
2195
+ return constructI32(internal.pos, internal.ast);
2196
2196
  }
2197
2197
 
2198
2198
  get end() {
2199
2199
  const internal = this.#internal;
2200
- return constructU32(internal.pos + 4, internal.ast);
2200
+ return constructI32(internal.pos + 4, internal.ast);
2201
2201
  }
2202
2202
 
2203
2203
  get left() {
@@ -2255,12 +2255,12 @@ export class AssignmentTargetPropertyIdentifier {
2255
2255
 
2256
2256
  get start() {
2257
2257
  const internal = this.#internal;
2258
- return constructU32(internal.pos, internal.ast);
2258
+ return constructI32(internal.pos, internal.ast);
2259
2259
  }
2260
2260
 
2261
2261
  get end() {
2262
2262
  const internal = this.#internal;
2263
- return constructU32(internal.pos + 4, internal.ast);
2263
+ return constructI32(internal.pos + 4, internal.ast);
2264
2264
  }
2265
2265
 
2266
2266
  get key() {
@@ -2307,12 +2307,12 @@ export class AssignmentTargetPropertyProperty {
2307
2307
 
2308
2308
  get start() {
2309
2309
  const internal = this.#internal;
2310
- return constructU32(internal.pos, internal.ast);
2310
+ return constructI32(internal.pos, internal.ast);
2311
2311
  }
2312
2312
 
2313
2313
  get end() {
2314
2314
  const internal = this.#internal;
2315
- return constructU32(internal.pos + 4, internal.ast);
2315
+ return constructI32(internal.pos + 4, internal.ast);
2316
2316
  }
2317
2317
 
2318
2318
  get key() {
@@ -2365,12 +2365,12 @@ export class SequenceExpression {
2365
2365
 
2366
2366
  get start() {
2367
2367
  const internal = this.#internal;
2368
- return constructU32(internal.pos, internal.ast);
2368
+ return constructI32(internal.pos, internal.ast);
2369
2369
  }
2370
2370
 
2371
2371
  get end() {
2372
2372
  const internal = this.#internal;
2373
- return constructU32(internal.pos + 4, internal.ast);
2373
+ return constructI32(internal.pos + 4, internal.ast);
2374
2374
  }
2375
2375
 
2376
2376
  get expressions() {
@@ -2413,12 +2413,12 @@ export class Super {
2413
2413
 
2414
2414
  get start() {
2415
2415
  const internal = this.#internal;
2416
- return constructU32(internal.pos, internal.ast);
2416
+ return constructI32(internal.pos, internal.ast);
2417
2417
  }
2418
2418
 
2419
2419
  get end() {
2420
2420
  const internal = this.#internal;
2421
- return constructU32(internal.pos + 4, internal.ast);
2421
+ return constructI32(internal.pos + 4, internal.ast);
2422
2422
  }
2423
2423
 
2424
2424
  toJSON() {
@@ -2453,12 +2453,12 @@ export class AwaitExpression {
2453
2453
 
2454
2454
  get start() {
2455
2455
  const internal = this.#internal;
2456
- return constructU32(internal.pos, internal.ast);
2456
+ return constructI32(internal.pos, internal.ast);
2457
2457
  }
2458
2458
 
2459
2459
  get end() {
2460
2460
  const internal = this.#internal;
2461
- return constructU32(internal.pos + 4, internal.ast);
2461
+ return constructI32(internal.pos + 4, internal.ast);
2462
2462
  }
2463
2463
 
2464
2464
  get argument() {
@@ -2499,12 +2499,12 @@ export class ChainExpression {
2499
2499
 
2500
2500
  get start() {
2501
2501
  const internal = this.#internal;
2502
- return constructU32(internal.pos, internal.ast);
2502
+ return constructI32(internal.pos, internal.ast);
2503
2503
  }
2504
2504
 
2505
2505
  get end() {
2506
2506
  const internal = this.#internal;
2507
- return constructU32(internal.pos + 4, internal.ast);
2507
+ return constructI32(internal.pos + 4, internal.ast);
2508
2508
  }
2509
2509
 
2510
2510
  get expression() {
@@ -2562,12 +2562,12 @@ export class ParenthesizedExpression {
2562
2562
 
2563
2563
  get start() {
2564
2564
  const internal = this.#internal;
2565
- return constructU32(internal.pos, internal.ast);
2565
+ return constructI32(internal.pos, internal.ast);
2566
2566
  }
2567
2567
 
2568
2568
  get end() {
2569
2569
  const internal = this.#internal;
2570
- return constructU32(internal.pos + 4, internal.ast);
2570
+ return constructI32(internal.pos + 4, internal.ast);
2571
2571
  }
2572
2572
 
2573
2573
  get expression() {
@@ -2681,12 +2681,12 @@ export class Directive {
2681
2681
 
2682
2682
  get start() {
2683
2683
  const internal = this.#internal;
2684
- return constructU32(internal.pos, internal.ast);
2684
+ return constructI32(internal.pos, internal.ast);
2685
2685
  }
2686
2686
 
2687
2687
  get end() {
2688
2688
  const internal = this.#internal;
2689
- return constructU32(internal.pos + 4, internal.ast);
2689
+ return constructI32(internal.pos + 4, internal.ast);
2690
2690
  }
2691
2691
 
2692
2692
  get expression() {
@@ -2735,12 +2735,12 @@ export class Hashbang {
2735
2735
 
2736
2736
  get start() {
2737
2737
  const internal = this.#internal;
2738
- return constructU32(internal.pos, internal.ast);
2738
+ return constructI32(internal.pos, internal.ast);
2739
2739
  }
2740
2740
 
2741
2741
  get end() {
2742
2742
  const internal = this.#internal;
2743
- return constructU32(internal.pos + 4, internal.ast);
2743
+ return constructI32(internal.pos + 4, internal.ast);
2744
2744
  }
2745
2745
 
2746
2746
  get value() {
@@ -2783,12 +2783,12 @@ export class BlockStatement {
2783
2783
 
2784
2784
  get start() {
2785
2785
  const internal = this.#internal;
2786
- return constructU32(internal.pos, internal.ast);
2786
+ return constructI32(internal.pos, internal.ast);
2787
2787
  }
2788
2788
 
2789
2789
  get end() {
2790
2790
  const internal = this.#internal;
2791
- return constructU32(internal.pos + 4, internal.ast);
2791
+ return constructI32(internal.pos + 4, internal.ast);
2792
2792
  }
2793
2793
 
2794
2794
  get body() {
@@ -2856,12 +2856,12 @@ export class VariableDeclaration {
2856
2856
 
2857
2857
  get start() {
2858
2858
  const internal = this.#internal;
2859
- return constructU32(internal.pos, internal.ast);
2859
+ return constructI32(internal.pos, internal.ast);
2860
2860
  }
2861
2861
 
2862
2862
  get end() {
2863
2863
  const internal = this.#internal;
2864
- return constructU32(internal.pos + 4, internal.ast);
2864
+ return constructI32(internal.pos + 4, internal.ast);
2865
2865
  }
2866
2866
 
2867
2867
  get kind() {
@@ -2936,12 +2936,12 @@ export class VariableDeclarator {
2936
2936
 
2937
2937
  get start() {
2938
2938
  const internal = this.#internal;
2939
- return constructU32(internal.pos, internal.ast);
2939
+ return constructI32(internal.pos, internal.ast);
2940
2940
  }
2941
2941
 
2942
2942
  get end() {
2943
2943
  const internal = this.#internal;
2944
- return constructU32(internal.pos + 4, internal.ast);
2944
+ return constructI32(internal.pos + 4, internal.ast);
2945
2945
  }
2946
2946
 
2947
2947
  get id() {
@@ -2994,12 +2994,12 @@ export class EmptyStatement {
2994
2994
 
2995
2995
  get start() {
2996
2996
  const internal = this.#internal;
2997
- return constructU32(internal.pos, internal.ast);
2997
+ return constructI32(internal.pos, internal.ast);
2998
2998
  }
2999
2999
 
3000
3000
  get end() {
3001
3001
  const internal = this.#internal;
3002
- return constructU32(internal.pos + 4, internal.ast);
3002
+ return constructI32(internal.pos + 4, internal.ast);
3003
3003
  }
3004
3004
 
3005
3005
  toJSON() {
@@ -3034,12 +3034,12 @@ export class ExpressionStatement {
3034
3034
 
3035
3035
  get start() {
3036
3036
  const internal = this.#internal;
3037
- return constructU32(internal.pos, internal.ast);
3037
+ return constructI32(internal.pos, internal.ast);
3038
3038
  }
3039
3039
 
3040
3040
  get end() {
3041
3041
  const internal = this.#internal;
3042
- return constructU32(internal.pos + 4, internal.ast);
3042
+ return constructI32(internal.pos + 4, internal.ast);
3043
3043
  }
3044
3044
 
3045
3045
  get expression() {
@@ -3080,12 +3080,12 @@ export class IfStatement {
3080
3080
 
3081
3081
  get start() {
3082
3082
  const internal = this.#internal;
3083
- return constructU32(internal.pos, internal.ast);
3083
+ return constructI32(internal.pos, internal.ast);
3084
3084
  }
3085
3085
 
3086
3086
  get end() {
3087
3087
  const internal = this.#internal;
3088
- return constructU32(internal.pos + 4, internal.ast);
3088
+ return constructI32(internal.pos + 4, internal.ast);
3089
3089
  }
3090
3090
 
3091
3091
  get test() {
@@ -3138,12 +3138,12 @@ export class DoWhileStatement {
3138
3138
 
3139
3139
  get start() {
3140
3140
  const internal = this.#internal;
3141
- return constructU32(internal.pos, internal.ast);
3141
+ return constructI32(internal.pos, internal.ast);
3142
3142
  }
3143
3143
 
3144
3144
  get end() {
3145
3145
  const internal = this.#internal;
3146
- return constructU32(internal.pos + 4, internal.ast);
3146
+ return constructI32(internal.pos + 4, internal.ast);
3147
3147
  }
3148
3148
 
3149
3149
  get body() {
@@ -3190,12 +3190,12 @@ export class WhileStatement {
3190
3190
 
3191
3191
  get start() {
3192
3192
  const internal = this.#internal;
3193
- return constructU32(internal.pos, internal.ast);
3193
+ return constructI32(internal.pos, internal.ast);
3194
3194
  }
3195
3195
 
3196
3196
  get end() {
3197
3197
  const internal = this.#internal;
3198
- return constructU32(internal.pos + 4, internal.ast);
3198
+ return constructI32(internal.pos + 4, internal.ast);
3199
3199
  }
3200
3200
 
3201
3201
  get test() {
@@ -3242,12 +3242,12 @@ export class ForStatement {
3242
3242
 
3243
3243
  get start() {
3244
3244
  const internal = this.#internal;
3245
- return constructU32(internal.pos, internal.ast);
3245
+ return constructI32(internal.pos, internal.ast);
3246
3246
  }
3247
3247
 
3248
3248
  get end() {
3249
3249
  const internal = this.#internal;
3250
- return constructU32(internal.pos + 4, internal.ast);
3250
+ return constructI32(internal.pos + 4, internal.ast);
3251
3251
  }
3252
3252
 
3253
3253
  get init() {
@@ -3401,12 +3401,12 @@ export class ForInStatement {
3401
3401
 
3402
3402
  get start() {
3403
3403
  const internal = this.#internal;
3404
- return constructU32(internal.pos, internal.ast);
3404
+ return constructI32(internal.pos, internal.ast);
3405
3405
  }
3406
3406
 
3407
3407
  get end() {
3408
3408
  const internal = this.#internal;
3409
- return constructU32(internal.pos + 4, internal.ast);
3409
+ return constructI32(internal.pos + 4, internal.ast);
3410
3410
  }
3411
3411
 
3412
3412
  get left() {
@@ -3488,12 +3488,12 @@ export class ForOfStatement {
3488
3488
 
3489
3489
  get start() {
3490
3490
  const internal = this.#internal;
3491
- return constructU32(internal.pos, internal.ast);
3491
+ return constructI32(internal.pos, internal.ast);
3492
3492
  }
3493
3493
 
3494
3494
  get end() {
3495
3495
  const internal = this.#internal;
3496
- return constructU32(internal.pos + 4, internal.ast);
3496
+ return constructI32(internal.pos + 4, internal.ast);
3497
3497
  }
3498
3498
 
3499
3499
  get await() {
@@ -3552,12 +3552,12 @@ export class ContinueStatement {
3552
3552
 
3553
3553
  get start() {
3554
3554
  const internal = this.#internal;
3555
- return constructU32(internal.pos, internal.ast);
3555
+ return constructI32(internal.pos, internal.ast);
3556
3556
  }
3557
3557
 
3558
3558
  get end() {
3559
3559
  const internal = this.#internal;
3560
- return constructU32(internal.pos + 4, internal.ast);
3560
+ return constructI32(internal.pos + 4, internal.ast);
3561
3561
  }
3562
3562
 
3563
3563
  get label() {
@@ -3598,12 +3598,12 @@ export class BreakStatement {
3598
3598
 
3599
3599
  get start() {
3600
3600
  const internal = this.#internal;
3601
- return constructU32(internal.pos, internal.ast);
3601
+ return constructI32(internal.pos, internal.ast);
3602
3602
  }
3603
3603
 
3604
3604
  get end() {
3605
3605
  const internal = this.#internal;
3606
- return constructU32(internal.pos + 4, internal.ast);
3606
+ return constructI32(internal.pos + 4, internal.ast);
3607
3607
  }
3608
3608
 
3609
3609
  get label() {
@@ -3644,12 +3644,12 @@ export class ReturnStatement {
3644
3644
 
3645
3645
  get start() {
3646
3646
  const internal = this.#internal;
3647
- return constructU32(internal.pos, internal.ast);
3647
+ return constructI32(internal.pos, internal.ast);
3648
3648
  }
3649
3649
 
3650
3650
  get end() {
3651
3651
  const internal = this.#internal;
3652
- return constructU32(internal.pos + 4, internal.ast);
3652
+ return constructI32(internal.pos + 4, internal.ast);
3653
3653
  }
3654
3654
 
3655
3655
  get argument() {
@@ -3690,12 +3690,12 @@ export class WithStatement {
3690
3690
 
3691
3691
  get start() {
3692
3692
  const internal = this.#internal;
3693
- return constructU32(internal.pos, internal.ast);
3693
+ return constructI32(internal.pos, internal.ast);
3694
3694
  }
3695
3695
 
3696
3696
  get end() {
3697
3697
  const internal = this.#internal;
3698
- return constructU32(internal.pos + 4, internal.ast);
3698
+ return constructI32(internal.pos + 4, internal.ast);
3699
3699
  }
3700
3700
 
3701
3701
  get object() {
@@ -3742,12 +3742,12 @@ export class SwitchStatement {
3742
3742
 
3743
3743
  get start() {
3744
3744
  const internal = this.#internal;
3745
- return constructU32(internal.pos, internal.ast);
3745
+ return constructI32(internal.pos, internal.ast);
3746
3746
  }
3747
3747
 
3748
3748
  get end() {
3749
3749
  const internal = this.#internal;
3750
- return constructU32(internal.pos + 4, internal.ast);
3750
+ return constructI32(internal.pos + 4, internal.ast);
3751
3751
  }
3752
3752
 
3753
3753
  get discriminant() {
@@ -3796,12 +3796,12 @@ export class SwitchCase {
3796
3796
 
3797
3797
  get start() {
3798
3798
  const internal = this.#internal;
3799
- return constructU32(internal.pos, internal.ast);
3799
+ return constructI32(internal.pos, internal.ast);
3800
3800
  }
3801
3801
 
3802
3802
  get end() {
3803
3803
  const internal = this.#internal;
3804
- return constructU32(internal.pos + 4, internal.ast);
3804
+ return constructI32(internal.pos + 4, internal.ast);
3805
3805
  }
3806
3806
 
3807
3807
  get test() {
@@ -3850,12 +3850,12 @@ export class LabeledStatement {
3850
3850
 
3851
3851
  get start() {
3852
3852
  const internal = this.#internal;
3853
- return constructU32(internal.pos, internal.ast);
3853
+ return constructI32(internal.pos, internal.ast);
3854
3854
  }
3855
3855
 
3856
3856
  get end() {
3857
3857
  const internal = this.#internal;
3858
- return constructU32(internal.pos + 4, internal.ast);
3858
+ return constructI32(internal.pos + 4, internal.ast);
3859
3859
  }
3860
3860
 
3861
3861
  get label() {
@@ -3902,12 +3902,12 @@ export class ThrowStatement {
3902
3902
 
3903
3903
  get start() {
3904
3904
  const internal = this.#internal;
3905
- return constructU32(internal.pos, internal.ast);
3905
+ return constructI32(internal.pos, internal.ast);
3906
3906
  }
3907
3907
 
3908
3908
  get end() {
3909
3909
  const internal = this.#internal;
3910
- return constructU32(internal.pos + 4, internal.ast);
3910
+ return constructI32(internal.pos + 4, internal.ast);
3911
3911
  }
3912
3912
 
3913
3913
  get argument() {
@@ -3948,12 +3948,12 @@ export class TryStatement {
3948
3948
 
3949
3949
  get start() {
3950
3950
  const internal = this.#internal;
3951
- return constructU32(internal.pos, internal.ast);
3951
+ return constructI32(internal.pos, internal.ast);
3952
3952
  }
3953
3953
 
3954
3954
  get end() {
3955
3955
  const internal = this.#internal;
3956
- return constructU32(internal.pos + 4, internal.ast);
3956
+ return constructI32(internal.pos + 4, internal.ast);
3957
3957
  }
3958
3958
 
3959
3959
  get block() {
@@ -4006,12 +4006,12 @@ export class CatchClause {
4006
4006
 
4007
4007
  get start() {
4008
4008
  const internal = this.#internal;
4009
- return constructU32(internal.pos, internal.ast);
4009
+ return constructI32(internal.pos, internal.ast);
4010
4010
  }
4011
4011
 
4012
4012
  get end() {
4013
4013
  const internal = this.#internal;
4014
- return constructU32(internal.pos + 4, internal.ast);
4014
+ return constructI32(internal.pos + 4, internal.ast);
4015
4015
  }
4016
4016
 
4017
4017
  get param() {
@@ -4057,12 +4057,12 @@ export class CatchParameter {
4057
4057
 
4058
4058
  get start() {
4059
4059
  const internal = this.#internal;
4060
- return constructU32(internal.pos, internal.ast);
4060
+ return constructI32(internal.pos, internal.ast);
4061
4061
  }
4062
4062
 
4063
4063
  get end() {
4064
4064
  const internal = this.#internal;
4065
- return constructU32(internal.pos + 4, internal.ast);
4065
+ return constructI32(internal.pos + 4, internal.ast);
4066
4066
  }
4067
4067
 
4068
4068
  get pattern() {
@@ -4102,12 +4102,12 @@ export class DebuggerStatement {
4102
4102
 
4103
4103
  get start() {
4104
4104
  const internal = this.#internal;
4105
- return constructU32(internal.pos, internal.ast);
4105
+ return constructI32(internal.pos, internal.ast);
4106
4106
  }
4107
4107
 
4108
4108
  get end() {
4109
4109
  const internal = this.#internal;
4110
- return constructU32(internal.pos + 4, internal.ast);
4110
+ return constructI32(internal.pos + 4, internal.ast);
4111
4111
  }
4112
4112
 
4113
4113
  toJSON() {
@@ -4157,12 +4157,12 @@ export class AssignmentPattern {
4157
4157
 
4158
4158
  get start() {
4159
4159
  const internal = this.#internal;
4160
- return constructU32(internal.pos, internal.ast);
4160
+ return constructI32(internal.pos, internal.ast);
4161
4161
  }
4162
4162
 
4163
4163
  get end() {
4164
4164
  const internal = this.#internal;
4165
- return constructU32(internal.pos + 4, internal.ast);
4165
+ return constructI32(internal.pos + 4, internal.ast);
4166
4166
  }
4167
4167
 
4168
4168
  get left() {
@@ -4209,12 +4209,12 @@ export class ObjectPattern {
4209
4209
 
4210
4210
  get start() {
4211
4211
  const internal = this.#internal;
4212
- return constructU32(internal.pos, internal.ast);
4212
+ return constructI32(internal.pos, internal.ast);
4213
4213
  }
4214
4214
 
4215
4215
  get end() {
4216
4216
  const internal = this.#internal;
4217
- return constructU32(internal.pos + 4, internal.ast);
4217
+ return constructI32(internal.pos + 4, internal.ast);
4218
4218
  }
4219
4219
 
4220
4220
  get properties() {
@@ -4257,12 +4257,12 @@ export class BindingProperty {
4257
4257
 
4258
4258
  get start() {
4259
4259
  const internal = this.#internal;
4260
- return constructU32(internal.pos, internal.ast);
4260
+ return constructI32(internal.pos, internal.ast);
4261
4261
  }
4262
4262
 
4263
4263
  get end() {
4264
4264
  const internal = this.#internal;
4265
- return constructU32(internal.pos + 4, internal.ast);
4265
+ return constructI32(internal.pos + 4, internal.ast);
4266
4266
  }
4267
4267
 
4268
4268
  get key() {
@@ -4321,12 +4321,12 @@ export class ArrayPattern {
4321
4321
 
4322
4322
  get start() {
4323
4323
  const internal = this.#internal;
4324
- return constructU32(internal.pos, internal.ast);
4324
+ return constructI32(internal.pos, internal.ast);
4325
4325
  }
4326
4326
 
4327
4327
  get end() {
4328
4328
  const internal = this.#internal;
4329
- return constructU32(internal.pos + 4, internal.ast);
4329
+ return constructI32(internal.pos + 4, internal.ast);
4330
4330
  }
4331
4331
 
4332
4332
  get elements() {
@@ -4369,12 +4369,12 @@ export class BindingRestElement {
4369
4369
 
4370
4370
  get start() {
4371
4371
  const internal = this.#internal;
4372
- return constructU32(internal.pos, internal.ast);
4372
+ return constructI32(internal.pos, internal.ast);
4373
4373
  }
4374
4374
 
4375
4375
  get end() {
4376
4376
  const internal = this.#internal;
4377
- return constructU32(internal.pos + 4, internal.ast);
4377
+ return constructI32(internal.pos + 4, internal.ast);
4378
4378
  }
4379
4379
 
4380
4380
  get argument() {
@@ -4414,12 +4414,12 @@ export class Function {
4414
4414
 
4415
4415
  get start() {
4416
4416
  const internal = this.#internal;
4417
- return constructU32(internal.pos, internal.ast);
4417
+ return constructI32(internal.pos, internal.ast);
4418
4418
  }
4419
4419
 
4420
4420
  get end() {
4421
4421
  const internal = this.#internal;
4422
- return constructU32(internal.pos + 4, internal.ast);
4422
+ return constructI32(internal.pos + 4, internal.ast);
4423
4423
  }
4424
4424
 
4425
4425
  get type() {
@@ -4522,12 +4522,12 @@ export class FormalParameters {
4522
4522
 
4523
4523
  get start() {
4524
4524
  const internal = this.#internal;
4525
- return constructU32(internal.pos, internal.ast);
4525
+ return constructI32(internal.pos, internal.ast);
4526
4526
  }
4527
4527
 
4528
4528
  get end() {
4529
4529
  const internal = this.#internal;
4530
- return constructU32(internal.pos + 4, internal.ast);
4530
+ return constructI32(internal.pos + 4, internal.ast);
4531
4531
  }
4532
4532
 
4533
4533
  get kind() {
@@ -4575,12 +4575,12 @@ export class FormalParameter {
4575
4575
 
4576
4576
  get start() {
4577
4577
  const internal = this.#internal;
4578
- return constructU32(internal.pos, internal.ast);
4578
+ return constructI32(internal.pos, internal.ast);
4579
4579
  }
4580
4580
 
4581
4581
  get end() {
4582
4582
  const internal = this.#internal;
4583
- return constructU32(internal.pos + 4, internal.ast);
4583
+ return constructI32(internal.pos + 4, internal.ast);
4584
4584
  }
4585
4585
 
4586
4586
  get decorators() {
@@ -4661,12 +4661,12 @@ export class FunctionBody {
4661
4661
 
4662
4662
  get start() {
4663
4663
  const internal = this.#internal;
4664
- return constructU32(internal.pos, internal.ast);
4664
+ return constructI32(internal.pos, internal.ast);
4665
4665
  }
4666
4666
 
4667
4667
  get end() {
4668
4668
  const internal = this.#internal;
4669
- return constructU32(internal.pos + 4, internal.ast);
4669
+ return constructI32(internal.pos + 4, internal.ast);
4670
4670
  }
4671
4671
 
4672
4672
  get body() {
@@ -4709,12 +4709,12 @@ export class ArrowFunctionExpression {
4709
4709
 
4710
4710
  get start() {
4711
4711
  const internal = this.#internal;
4712
- return constructU32(internal.pos, internal.ast);
4712
+ return constructI32(internal.pos, internal.ast);
4713
4713
  }
4714
4714
 
4715
4715
  get end() {
4716
4716
  const internal = this.#internal;
4717
- return constructU32(internal.pos + 4, internal.ast);
4717
+ return constructI32(internal.pos + 4, internal.ast);
4718
4718
  }
4719
4719
 
4720
4720
  get expression() {
@@ -4785,12 +4785,12 @@ export class YieldExpression {
4785
4785
 
4786
4786
  get start() {
4787
4787
  const internal = this.#internal;
4788
- return constructU32(internal.pos, internal.ast);
4788
+ return constructI32(internal.pos, internal.ast);
4789
4789
  }
4790
4790
 
4791
4791
  get end() {
4792
4792
  const internal = this.#internal;
4793
- return constructU32(internal.pos + 4, internal.ast);
4793
+ return constructI32(internal.pos + 4, internal.ast);
4794
4794
  }
4795
4795
 
4796
4796
  get delegate() {
@@ -4836,12 +4836,12 @@ export class Class {
4836
4836
 
4837
4837
  get start() {
4838
4838
  const internal = this.#internal;
4839
- return constructU32(internal.pos, internal.ast);
4839
+ return constructI32(internal.pos, internal.ast);
4840
4840
  }
4841
4841
 
4842
4842
  get end() {
4843
4843
  const internal = this.#internal;
4844
- return constructU32(internal.pos + 4, internal.ast);
4844
+ return constructI32(internal.pos + 4, internal.ast);
4845
4845
  }
4846
4846
 
4847
4847
  get type() {
@@ -4950,12 +4950,12 @@ export class ClassBody {
4950
4950
 
4951
4951
  get start() {
4952
4952
  const internal = this.#internal;
4953
- return constructU32(internal.pos, internal.ast);
4953
+ return constructI32(internal.pos, internal.ast);
4954
4954
  }
4955
4955
 
4956
4956
  get end() {
4957
4957
  const internal = this.#internal;
4958
- return constructU32(internal.pos + 4, internal.ast);
4958
+ return constructI32(internal.pos + 4, internal.ast);
4959
4959
  }
4960
4960
 
4961
4961
  get body() {
@@ -5014,12 +5014,12 @@ export class MethodDefinition {
5014
5014
 
5015
5015
  get start() {
5016
5016
  const internal = this.#internal;
5017
- return constructU32(internal.pos, internal.ast);
5017
+ return constructI32(internal.pos, internal.ast);
5018
5018
  }
5019
5019
 
5020
5020
  get end() {
5021
5021
  const internal = this.#internal;
5022
- return constructU32(internal.pos + 4, internal.ast);
5022
+ return constructI32(internal.pos + 4, internal.ast);
5023
5023
  }
5024
5024
 
5025
5025
  get type() {
@@ -5125,12 +5125,12 @@ export class PropertyDefinition {
5125
5125
 
5126
5126
  get start() {
5127
5127
  const internal = this.#internal;
5128
- return constructU32(internal.pos, internal.ast);
5128
+ return constructI32(internal.pos, internal.ast);
5129
5129
  }
5130
5130
 
5131
5131
  get end() {
5132
5132
  const internal = this.#internal;
5133
- return constructU32(internal.pos + 4, internal.ast);
5133
+ return constructI32(internal.pos + 4, internal.ast);
5134
5134
  }
5135
5135
 
5136
5136
  get type() {
@@ -5270,12 +5270,12 @@ export class PrivateIdentifier {
5270
5270
 
5271
5271
  get start() {
5272
5272
  const internal = this.#internal;
5273
- return constructU32(internal.pos, internal.ast);
5273
+ return constructI32(internal.pos, internal.ast);
5274
5274
  }
5275
5275
 
5276
5276
  get end() {
5277
5277
  const internal = this.#internal;
5278
- return constructU32(internal.pos + 4, internal.ast);
5278
+ return constructI32(internal.pos + 4, internal.ast);
5279
5279
  }
5280
5280
 
5281
5281
  get name() {
@@ -5318,12 +5318,12 @@ export class StaticBlock {
5318
5318
 
5319
5319
  get start() {
5320
5320
  const internal = this.#internal;
5321
- return constructU32(internal.pos, internal.ast);
5321
+ return constructI32(internal.pos, internal.ast);
5322
5322
  }
5323
5323
 
5324
5324
  get end() {
5325
5325
  const internal = this.#internal;
5326
- return constructU32(internal.pos + 4, internal.ast);
5326
+ return constructI32(internal.pos + 4, internal.ast);
5327
5327
  }
5328
5328
 
5329
5329
  get body() {
@@ -5395,12 +5395,12 @@ export class AccessorProperty {
5395
5395
 
5396
5396
  get start() {
5397
5397
  const internal = this.#internal;
5398
- return constructU32(internal.pos, internal.ast);
5398
+ return constructI32(internal.pos, internal.ast);
5399
5399
  }
5400
5400
 
5401
5401
  get end() {
5402
5402
  const internal = this.#internal;
5403
- return constructU32(internal.pos + 4, internal.ast);
5403
+ return constructI32(internal.pos + 4, internal.ast);
5404
5404
  }
5405
5405
 
5406
5406
  get type() {
@@ -5496,12 +5496,12 @@ export class ImportExpression {
5496
5496
 
5497
5497
  get start() {
5498
5498
  const internal = this.#internal;
5499
- return constructU32(internal.pos, internal.ast);
5499
+ return constructI32(internal.pos, internal.ast);
5500
5500
  }
5501
5501
 
5502
5502
  get end() {
5503
5503
  const internal = this.#internal;
5504
- return constructU32(internal.pos + 4, internal.ast);
5504
+ return constructI32(internal.pos + 4, internal.ast);
5505
5505
  }
5506
5506
 
5507
5507
  get source() {
@@ -5554,12 +5554,12 @@ export class ImportDeclaration {
5554
5554
 
5555
5555
  get start() {
5556
5556
  const internal = this.#internal;
5557
- return constructU32(internal.pos, internal.ast);
5557
+ return constructI32(internal.pos, internal.ast);
5558
5558
  }
5559
5559
 
5560
5560
  get end() {
5561
5561
  const internal = this.#internal;
5562
- return constructU32(internal.pos + 4, internal.ast);
5562
+ return constructI32(internal.pos + 4, internal.ast);
5563
5563
  }
5564
5564
 
5565
5565
  get specifiers() {
@@ -5653,12 +5653,12 @@ export class ImportSpecifier {
5653
5653
 
5654
5654
  get start() {
5655
5655
  const internal = this.#internal;
5656
- return constructU32(internal.pos, internal.ast);
5656
+ return constructI32(internal.pos, internal.ast);
5657
5657
  }
5658
5658
 
5659
5659
  get end() {
5660
5660
  const internal = this.#internal;
5661
- return constructU32(internal.pos + 4, internal.ast);
5661
+ return constructI32(internal.pos + 4, internal.ast);
5662
5662
  }
5663
5663
 
5664
5664
  get imported() {
@@ -5711,12 +5711,12 @@ export class ImportDefaultSpecifier {
5711
5711
 
5712
5712
  get start() {
5713
5713
  const internal = this.#internal;
5714
- return constructU32(internal.pos, internal.ast);
5714
+ return constructI32(internal.pos, internal.ast);
5715
5715
  }
5716
5716
 
5717
5717
  get end() {
5718
5718
  const internal = this.#internal;
5719
- return constructU32(internal.pos + 4, internal.ast);
5719
+ return constructI32(internal.pos + 4, internal.ast);
5720
5720
  }
5721
5721
 
5722
5722
  get local() {
@@ -5757,12 +5757,12 @@ export class ImportNamespaceSpecifier {
5757
5757
 
5758
5758
  get start() {
5759
5759
  const internal = this.#internal;
5760
- return constructU32(internal.pos, internal.ast);
5760
+ return constructI32(internal.pos, internal.ast);
5761
5761
  }
5762
5762
 
5763
5763
  get end() {
5764
5764
  const internal = this.#internal;
5765
- return constructU32(internal.pos + 4, internal.ast);
5765
+ return constructI32(internal.pos + 4, internal.ast);
5766
5766
  }
5767
5767
 
5768
5768
  get local() {
@@ -5837,12 +5837,12 @@ export class ImportAttribute {
5837
5837
 
5838
5838
  get start() {
5839
5839
  const internal = this.#internal;
5840
- return constructU32(internal.pos, internal.ast);
5840
+ return constructI32(internal.pos, internal.ast);
5841
5841
  }
5842
5842
 
5843
5843
  get end() {
5844
5844
  const internal = this.#internal;
5845
- return constructU32(internal.pos + 4, internal.ast);
5845
+ return constructI32(internal.pos + 4, internal.ast);
5846
5846
  }
5847
5847
 
5848
5848
  get key() {
@@ -5900,12 +5900,12 @@ export class ExportNamedDeclaration {
5900
5900
 
5901
5901
  get start() {
5902
5902
  const internal = this.#internal;
5903
- return constructU32(internal.pos, internal.ast);
5903
+ return constructI32(internal.pos, internal.ast);
5904
5904
  }
5905
5905
 
5906
5906
  get end() {
5907
5907
  const internal = this.#internal;
5908
- return constructU32(internal.pos + 4, internal.ast);
5908
+ return constructI32(internal.pos + 4, internal.ast);
5909
5909
  }
5910
5910
 
5911
5911
  get declaration() {
@@ -5972,12 +5972,12 @@ export class ExportDefaultDeclaration {
5972
5972
 
5973
5973
  get start() {
5974
5974
  const internal = this.#internal;
5975
- return constructU32(internal.pos, internal.ast);
5975
+ return constructI32(internal.pos, internal.ast);
5976
5976
  }
5977
5977
 
5978
5978
  get end() {
5979
5979
  const internal = this.#internal;
5980
- return constructU32(internal.pos + 4, internal.ast);
5980
+ return constructI32(internal.pos + 4, internal.ast);
5981
5981
  }
5982
5982
 
5983
5983
  get declaration() {
@@ -6018,12 +6018,12 @@ export class ExportAllDeclaration {
6018
6018
 
6019
6019
  get start() {
6020
6020
  const internal = this.#internal;
6021
- return constructU32(internal.pos, internal.ast);
6021
+ return constructI32(internal.pos, internal.ast);
6022
6022
  }
6023
6023
 
6024
6024
  get end() {
6025
6025
  const internal = this.#internal;
6026
- return constructU32(internal.pos + 4, internal.ast);
6026
+ return constructI32(internal.pos + 4, internal.ast);
6027
6027
  }
6028
6028
 
6029
6029
  get exported() {
@@ -6082,12 +6082,12 @@ export class ExportSpecifier {
6082
6082
 
6083
6083
  get start() {
6084
6084
  const internal = this.#internal;
6085
- return constructU32(internal.pos, internal.ast);
6085
+ return constructI32(internal.pos, internal.ast);
6086
6086
  }
6087
6087
 
6088
6088
  get end() {
6089
6089
  const internal = this.#internal;
6090
- return constructU32(internal.pos + 4, internal.ast);
6090
+ return constructI32(internal.pos + 4, internal.ast);
6091
6091
  }
6092
6092
 
6093
6093
  get local() {
@@ -6254,12 +6254,12 @@ export class V8IntrinsicExpression {
6254
6254
 
6255
6255
  get start() {
6256
6256
  const internal = this.#internal;
6257
- return constructU32(internal.pos, internal.ast);
6257
+ return constructI32(internal.pos, internal.ast);
6258
6258
  }
6259
6259
 
6260
6260
  get end() {
6261
6261
  const internal = this.#internal;
6262
- return constructU32(internal.pos + 4, internal.ast);
6262
+ return constructI32(internal.pos + 4, internal.ast);
6263
6263
  }
6264
6264
 
6265
6265
  get name() {
@@ -6308,12 +6308,12 @@ export class BooleanLiteral {
6308
6308
 
6309
6309
  get start() {
6310
6310
  const internal = this.#internal;
6311
- return constructU32(internal.pos, internal.ast);
6311
+ return constructI32(internal.pos, internal.ast);
6312
6312
  }
6313
6313
 
6314
6314
  get end() {
6315
6315
  const internal = this.#internal;
6316
- return constructU32(internal.pos + 4, internal.ast);
6316
+ return constructI32(internal.pos + 4, internal.ast);
6317
6317
  }
6318
6318
 
6319
6319
  get value() {
@@ -6354,12 +6354,12 @@ export class NullLiteral {
6354
6354
 
6355
6355
  get start() {
6356
6356
  const internal = this.#internal;
6357
- return constructU32(internal.pos, internal.ast);
6357
+ return constructI32(internal.pos, internal.ast);
6358
6358
  }
6359
6359
 
6360
6360
  get end() {
6361
6361
  const internal = this.#internal;
6362
- return constructU32(internal.pos + 4, internal.ast);
6362
+ return constructI32(internal.pos + 4, internal.ast);
6363
6363
  }
6364
6364
 
6365
6365
  toJSON() {
@@ -6394,12 +6394,12 @@ export class NumericLiteral {
6394
6394
 
6395
6395
  get start() {
6396
6396
  const internal = this.#internal;
6397
- return constructU32(internal.pos, internal.ast);
6397
+ return constructI32(internal.pos, internal.ast);
6398
6398
  }
6399
6399
 
6400
6400
  get end() {
6401
6401
  const internal = this.#internal;
6402
- return constructU32(internal.pos + 4, internal.ast);
6402
+ return constructI32(internal.pos + 4, internal.ast);
6403
6403
  }
6404
6404
 
6405
6405
  get value() {
@@ -6448,12 +6448,12 @@ export class StringLiteral {
6448
6448
 
6449
6449
  get start() {
6450
6450
  const internal = this.#internal;
6451
- return constructU32(internal.pos, internal.ast);
6451
+ return constructI32(internal.pos, internal.ast);
6452
6452
  }
6453
6453
 
6454
6454
  get end() {
6455
6455
  const internal = this.#internal;
6456
- return constructU32(internal.pos + 4, internal.ast);
6456
+ return constructI32(internal.pos + 4, internal.ast);
6457
6457
  }
6458
6458
 
6459
6459
  get value() {
@@ -6504,12 +6504,12 @@ export class BigIntLiteral {
6504
6504
 
6505
6505
  get start() {
6506
6506
  const internal = this.#internal;
6507
- return constructU32(internal.pos, internal.ast);
6507
+ return constructI32(internal.pos, internal.ast);
6508
6508
  }
6509
6509
 
6510
6510
  get end() {
6511
6511
  const internal = this.#internal;
6512
- return constructU32(internal.pos + 4, internal.ast);
6512
+ return constructI32(internal.pos + 4, internal.ast);
6513
6513
  }
6514
6514
 
6515
6515
  get value() {
@@ -6560,12 +6560,12 @@ export class RegExpLiteral {
6560
6560
 
6561
6561
  get start() {
6562
6562
  const internal = this.#internal;
6563
- return constructU32(internal.pos, internal.ast);
6563
+ return constructI32(internal.pos, internal.ast);
6564
6564
  }
6565
6565
 
6566
6566
  get end() {
6567
6567
  const internal = this.#internal;
6568
- return constructU32(internal.pos + 4, internal.ast);
6568
+ return constructI32(internal.pos + 4, internal.ast);
6569
6569
  }
6570
6570
 
6571
6571
  get regex() {
@@ -6712,12 +6712,12 @@ export class JSXElement {
6712
6712
 
6713
6713
  get start() {
6714
6714
  const internal = this.#internal;
6715
- return constructU32(internal.pos, internal.ast);
6715
+ return constructI32(internal.pos, internal.ast);
6716
6716
  }
6717
6717
 
6718
6718
  get end() {
6719
6719
  const internal = this.#internal;
6720
- return constructU32(internal.pos + 4, internal.ast);
6720
+ return constructI32(internal.pos + 4, internal.ast);
6721
6721
  }
6722
6722
 
6723
6723
  get openingElement() {
@@ -6772,12 +6772,12 @@ export class JSXOpeningElement {
6772
6772
 
6773
6773
  get start() {
6774
6774
  const internal = this.#internal;
6775
- return constructU32(internal.pos, internal.ast);
6775
+ return constructI32(internal.pos, internal.ast);
6776
6776
  }
6777
6777
 
6778
6778
  get end() {
6779
6779
  const internal = this.#internal;
6780
- return constructU32(internal.pos + 4, internal.ast);
6780
+ return constructI32(internal.pos + 4, internal.ast);
6781
6781
  }
6782
6782
 
6783
6783
  get name() {
@@ -6832,12 +6832,12 @@ export class JSXClosingElement {
6832
6832
 
6833
6833
  get start() {
6834
6834
  const internal = this.#internal;
6835
- return constructU32(internal.pos, internal.ast);
6835
+ return constructI32(internal.pos, internal.ast);
6836
6836
  }
6837
6837
 
6838
6838
  get end() {
6839
6839
  const internal = this.#internal;
6840
- return constructU32(internal.pos + 4, internal.ast);
6840
+ return constructI32(internal.pos + 4, internal.ast);
6841
6841
  }
6842
6842
 
6843
6843
  get name() {
@@ -6878,12 +6878,12 @@ export class JSXFragment {
6878
6878
 
6879
6879
  get start() {
6880
6880
  const internal = this.#internal;
6881
- return constructU32(internal.pos, internal.ast);
6881
+ return constructI32(internal.pos, internal.ast);
6882
6882
  }
6883
6883
 
6884
6884
  get end() {
6885
6885
  const internal = this.#internal;
6886
- return constructU32(internal.pos + 4, internal.ast);
6886
+ return constructI32(internal.pos + 4, internal.ast);
6887
6887
  }
6888
6888
 
6889
6889
  get openingFragment() {
@@ -6938,12 +6938,12 @@ export class JSXOpeningFragment {
6938
6938
 
6939
6939
  get start() {
6940
6940
  const internal = this.#internal;
6941
- return constructU32(internal.pos, internal.ast);
6941
+ return constructI32(internal.pos, internal.ast);
6942
6942
  }
6943
6943
 
6944
6944
  get end() {
6945
6945
  const internal = this.#internal;
6946
- return constructU32(internal.pos + 4, internal.ast);
6946
+ return constructI32(internal.pos + 4, internal.ast);
6947
6947
  }
6948
6948
 
6949
6949
  toJSON() {
@@ -6978,12 +6978,12 @@ export class JSXClosingFragment {
6978
6978
 
6979
6979
  get start() {
6980
6980
  const internal = this.#internal;
6981
- return constructU32(internal.pos, internal.ast);
6981
+ return constructI32(internal.pos, internal.ast);
6982
6982
  }
6983
6983
 
6984
6984
  get end() {
6985
6985
  const internal = this.#internal;
6986
- return constructU32(internal.pos + 4, internal.ast);
6986
+ return constructI32(internal.pos + 4, internal.ast);
6987
6987
  }
6988
6988
 
6989
6989
  toJSON() {
@@ -7035,12 +7035,12 @@ export class JSXNamespacedName {
7035
7035
 
7036
7036
  get start() {
7037
7037
  const internal = this.#internal;
7038
- return constructU32(internal.pos, internal.ast);
7038
+ return constructI32(internal.pos, internal.ast);
7039
7039
  }
7040
7040
 
7041
7041
  get end() {
7042
7042
  const internal = this.#internal;
7043
- return constructU32(internal.pos + 4, internal.ast);
7043
+ return constructI32(internal.pos + 4, internal.ast);
7044
7044
  }
7045
7045
 
7046
7046
  get namespace() {
@@ -7087,12 +7087,12 @@ export class JSXMemberExpression {
7087
7087
 
7088
7088
  get start() {
7089
7089
  const internal = this.#internal;
7090
- return constructU32(internal.pos, internal.ast);
7090
+ return constructI32(internal.pos, internal.ast);
7091
7091
  }
7092
7092
 
7093
7093
  get end() {
7094
7094
  const internal = this.#internal;
7095
- return constructU32(internal.pos + 4, internal.ast);
7095
+ return constructI32(internal.pos + 4, internal.ast);
7096
7096
  }
7097
7097
 
7098
7098
  get object() {
@@ -7152,12 +7152,12 @@ export class JSXExpressionContainer {
7152
7152
 
7153
7153
  get start() {
7154
7154
  const internal = this.#internal;
7155
- return constructU32(internal.pos, internal.ast);
7155
+ return constructI32(internal.pos, internal.ast);
7156
7156
  }
7157
7157
 
7158
7158
  get end() {
7159
7159
  const internal = this.#internal;
7160
- return constructU32(internal.pos + 4, internal.ast);
7160
+ return constructI32(internal.pos + 4, internal.ast);
7161
7161
  }
7162
7162
 
7163
7163
  get expression() {
@@ -7293,12 +7293,12 @@ export class JSXEmptyExpression {
7293
7293
 
7294
7294
  get start() {
7295
7295
  const internal = this.#internal;
7296
- return constructU32(internal.pos, internal.ast);
7296
+ return constructI32(internal.pos, internal.ast);
7297
7297
  }
7298
7298
 
7299
7299
  get end() {
7300
7300
  const internal = this.#internal;
7301
- return constructU32(internal.pos + 4, internal.ast);
7301
+ return constructI32(internal.pos + 4, internal.ast);
7302
7302
  }
7303
7303
 
7304
7304
  toJSON() {
@@ -7344,12 +7344,12 @@ export class JSXAttribute {
7344
7344
 
7345
7345
  get start() {
7346
7346
  const internal = this.#internal;
7347
- return constructU32(internal.pos, internal.ast);
7347
+ return constructI32(internal.pos, internal.ast);
7348
7348
  }
7349
7349
 
7350
7350
  get end() {
7351
7351
  const internal = this.#internal;
7352
- return constructU32(internal.pos + 4, internal.ast);
7352
+ return constructI32(internal.pos + 4, internal.ast);
7353
7353
  }
7354
7354
 
7355
7355
  get name() {
@@ -7396,12 +7396,12 @@ export class JSXSpreadAttribute {
7396
7396
 
7397
7397
  get start() {
7398
7398
  const internal = this.#internal;
7399
- return constructU32(internal.pos, internal.ast);
7399
+ return constructI32(internal.pos, internal.ast);
7400
7400
  }
7401
7401
 
7402
7402
  get end() {
7403
7403
  const internal = this.#internal;
7404
- return constructU32(internal.pos + 4, internal.ast);
7404
+ return constructI32(internal.pos + 4, internal.ast);
7405
7405
  }
7406
7406
 
7407
7407
  get argument() {
@@ -7468,12 +7468,12 @@ export class JSXIdentifier {
7468
7468
 
7469
7469
  get start() {
7470
7470
  const internal = this.#internal;
7471
- return constructU32(internal.pos, internal.ast);
7471
+ return constructI32(internal.pos, internal.ast);
7472
7472
  }
7473
7473
 
7474
7474
  get end() {
7475
7475
  const internal = this.#internal;
7476
- return constructU32(internal.pos + 4, internal.ast);
7476
+ return constructI32(internal.pos + 4, internal.ast);
7477
7477
  }
7478
7478
 
7479
7479
  get name() {
@@ -7533,12 +7533,12 @@ export class JSXSpreadChild {
7533
7533
 
7534
7534
  get start() {
7535
7535
  const internal = this.#internal;
7536
- return constructU32(internal.pos, internal.ast);
7536
+ return constructI32(internal.pos, internal.ast);
7537
7537
  }
7538
7538
 
7539
7539
  get end() {
7540
7540
  const internal = this.#internal;
7541
- return constructU32(internal.pos + 4, internal.ast);
7541
+ return constructI32(internal.pos + 4, internal.ast);
7542
7542
  }
7543
7543
 
7544
7544
  get expression() {
@@ -7579,12 +7579,12 @@ export class JSXText {
7579
7579
 
7580
7580
  get start() {
7581
7581
  const internal = this.#internal;
7582
- return constructU32(internal.pos, internal.ast);
7582
+ return constructI32(internal.pos, internal.ast);
7583
7583
  }
7584
7584
 
7585
7585
  get end() {
7586
7586
  const internal = this.#internal;
7587
- return constructU32(internal.pos + 4, internal.ast);
7587
+ return constructI32(internal.pos + 4, internal.ast);
7588
7588
  }
7589
7589
 
7590
7590
  get value() {
@@ -7635,12 +7635,12 @@ export class TSThisParameter {
7635
7635
 
7636
7636
  get start() {
7637
7637
  const internal = this.#internal;
7638
- return constructU32(internal.pos, internal.ast);
7638
+ return constructI32(internal.pos, internal.ast);
7639
7639
  }
7640
7640
 
7641
7641
  get end() {
7642
7642
  const internal = this.#internal;
7643
- return constructU32(internal.pos + 4, internal.ast);
7643
+ return constructI32(internal.pos + 4, internal.ast);
7644
7644
  }
7645
7645
 
7646
7646
  get typeAnnotation() {
@@ -7681,12 +7681,12 @@ export class TSEnumDeclaration {
7681
7681
 
7682
7682
  get start() {
7683
7683
  const internal = this.#internal;
7684
- return constructU32(internal.pos, internal.ast);
7684
+ return constructI32(internal.pos, internal.ast);
7685
7685
  }
7686
7686
 
7687
7687
  get end() {
7688
7688
  const internal = this.#internal;
7689
- return constructU32(internal.pos + 4, internal.ast);
7689
+ return constructI32(internal.pos + 4, internal.ast);
7690
7690
  }
7691
7691
 
7692
7692
  get id() {
@@ -7745,12 +7745,12 @@ export class TSEnumBody {
7745
7745
 
7746
7746
  get start() {
7747
7747
  const internal = this.#internal;
7748
- return constructU32(internal.pos, internal.ast);
7748
+ return constructI32(internal.pos, internal.ast);
7749
7749
  }
7750
7750
 
7751
7751
  get end() {
7752
7752
  const internal = this.#internal;
7753
- return constructU32(internal.pos + 4, internal.ast);
7753
+ return constructI32(internal.pos + 4, internal.ast);
7754
7754
  }
7755
7755
 
7756
7756
  get members() {
@@ -7793,12 +7793,12 @@ export class TSEnumMember {
7793
7793
 
7794
7794
  get start() {
7795
7795
  const internal = this.#internal;
7796
- return constructU32(internal.pos, internal.ast);
7796
+ return constructI32(internal.pos, internal.ast);
7797
7797
  }
7798
7798
 
7799
7799
  get end() {
7800
7800
  const internal = this.#internal;
7801
- return constructU32(internal.pos + 4, internal.ast);
7801
+ return constructI32(internal.pos + 4, internal.ast);
7802
7802
  }
7803
7803
 
7804
7804
  get id() {
@@ -7860,12 +7860,12 @@ export class TSTypeAnnotation {
7860
7860
 
7861
7861
  get start() {
7862
7862
  const internal = this.#internal;
7863
- return constructU32(internal.pos, internal.ast);
7863
+ return constructI32(internal.pos, internal.ast);
7864
7864
  }
7865
7865
 
7866
7866
  get end() {
7867
7867
  const internal = this.#internal;
7868
- return constructU32(internal.pos + 4, internal.ast);
7868
+ return constructI32(internal.pos + 4, internal.ast);
7869
7869
  }
7870
7870
 
7871
7871
  get typeAnnotation() {
@@ -7906,12 +7906,12 @@ export class TSLiteralType {
7906
7906
 
7907
7907
  get start() {
7908
7908
  const internal = this.#internal;
7909
- return constructU32(internal.pos, internal.ast);
7909
+ return constructI32(internal.pos, internal.ast);
7910
7910
  }
7911
7911
 
7912
7912
  get end() {
7913
7913
  const internal = this.#internal;
7914
- return constructU32(internal.pos + 4, internal.ast);
7914
+ return constructI32(internal.pos + 4, internal.ast);
7915
7915
  }
7916
7916
 
7917
7917
  get literal() {
@@ -8052,12 +8052,12 @@ export class TSConditionalType {
8052
8052
 
8053
8053
  get start() {
8054
8054
  const internal = this.#internal;
8055
- return constructU32(internal.pos, internal.ast);
8055
+ return constructI32(internal.pos, internal.ast);
8056
8056
  }
8057
8057
 
8058
8058
  get end() {
8059
8059
  const internal = this.#internal;
8060
- return constructU32(internal.pos + 4, internal.ast);
8060
+ return constructI32(internal.pos + 4, internal.ast);
8061
8061
  }
8062
8062
 
8063
8063
  get checkType() {
@@ -8116,12 +8116,12 @@ export class TSUnionType {
8116
8116
 
8117
8117
  get start() {
8118
8118
  const internal = this.#internal;
8119
- return constructU32(internal.pos, internal.ast);
8119
+ return constructI32(internal.pos, internal.ast);
8120
8120
  }
8121
8121
 
8122
8122
  get end() {
8123
8123
  const internal = this.#internal;
8124
- return constructU32(internal.pos + 4, internal.ast);
8124
+ return constructI32(internal.pos + 4, internal.ast);
8125
8125
  }
8126
8126
 
8127
8127
  get types() {
@@ -8164,12 +8164,12 @@ export class TSIntersectionType {
8164
8164
 
8165
8165
  get start() {
8166
8166
  const internal = this.#internal;
8167
- return constructU32(internal.pos, internal.ast);
8167
+ return constructI32(internal.pos, internal.ast);
8168
8168
  }
8169
8169
 
8170
8170
  get end() {
8171
8171
  const internal = this.#internal;
8172
- return constructU32(internal.pos + 4, internal.ast);
8172
+ return constructI32(internal.pos + 4, internal.ast);
8173
8173
  }
8174
8174
 
8175
8175
  get types() {
@@ -8212,12 +8212,12 @@ export class TSParenthesizedType {
8212
8212
 
8213
8213
  get start() {
8214
8214
  const internal = this.#internal;
8215
- return constructU32(internal.pos, internal.ast);
8215
+ return constructI32(internal.pos, internal.ast);
8216
8216
  }
8217
8217
 
8218
8218
  get end() {
8219
8219
  const internal = this.#internal;
8220
- return constructU32(internal.pos + 4, internal.ast);
8220
+ return constructI32(internal.pos + 4, internal.ast);
8221
8221
  }
8222
8222
 
8223
8223
  get typeAnnotation() {
@@ -8258,12 +8258,12 @@ export class TSTypeOperator {
8258
8258
 
8259
8259
  get start() {
8260
8260
  const internal = this.#internal;
8261
- return constructU32(internal.pos, internal.ast);
8261
+ return constructI32(internal.pos, internal.ast);
8262
8262
  }
8263
8263
 
8264
8264
  get end() {
8265
8265
  const internal = this.#internal;
8266
- return constructU32(internal.pos + 4, internal.ast);
8266
+ return constructI32(internal.pos + 4, internal.ast);
8267
8267
  }
8268
8268
 
8269
8269
  get operator() {
@@ -8323,12 +8323,12 @@ export class TSArrayType {
8323
8323
 
8324
8324
  get start() {
8325
8325
  const internal = this.#internal;
8326
- return constructU32(internal.pos, internal.ast);
8326
+ return constructI32(internal.pos, internal.ast);
8327
8327
  }
8328
8328
 
8329
8329
  get end() {
8330
8330
  const internal = this.#internal;
8331
- return constructU32(internal.pos + 4, internal.ast);
8331
+ return constructI32(internal.pos + 4, internal.ast);
8332
8332
  }
8333
8333
 
8334
8334
  get elementType() {
@@ -8369,12 +8369,12 @@ export class TSIndexedAccessType {
8369
8369
 
8370
8370
  get start() {
8371
8371
  const internal = this.#internal;
8372
- return constructU32(internal.pos, internal.ast);
8372
+ return constructI32(internal.pos, internal.ast);
8373
8373
  }
8374
8374
 
8375
8375
  get end() {
8376
8376
  const internal = this.#internal;
8377
- return constructU32(internal.pos + 4, internal.ast);
8377
+ return constructI32(internal.pos + 4, internal.ast);
8378
8378
  }
8379
8379
 
8380
8380
  get objectType() {
@@ -8421,12 +8421,12 @@ export class TSTupleType {
8421
8421
 
8422
8422
  get start() {
8423
8423
  const internal = this.#internal;
8424
- return constructU32(internal.pos, internal.ast);
8424
+ return constructI32(internal.pos, internal.ast);
8425
8425
  }
8426
8426
 
8427
8427
  get end() {
8428
8428
  const internal = this.#internal;
8429
- return constructU32(internal.pos + 4, internal.ast);
8429
+ return constructI32(internal.pos + 4, internal.ast);
8430
8430
  }
8431
8431
 
8432
8432
  get elementTypes() {
@@ -8469,12 +8469,12 @@ export class TSNamedTupleMember {
8469
8469
 
8470
8470
  get start() {
8471
8471
  const internal = this.#internal;
8472
- return constructU32(internal.pos, internal.ast);
8472
+ return constructI32(internal.pos, internal.ast);
8473
8473
  }
8474
8474
 
8475
8475
  get end() {
8476
8476
  const internal = this.#internal;
8477
- return constructU32(internal.pos + 4, internal.ast);
8477
+ return constructI32(internal.pos + 4, internal.ast);
8478
8478
  }
8479
8479
 
8480
8480
  get label() {
@@ -8527,12 +8527,12 @@ export class TSOptionalType {
8527
8527
 
8528
8528
  get start() {
8529
8529
  const internal = this.#internal;
8530
- return constructU32(internal.pos, internal.ast);
8530
+ return constructI32(internal.pos, internal.ast);
8531
8531
  }
8532
8532
 
8533
8533
  get end() {
8534
8534
  const internal = this.#internal;
8535
- return constructU32(internal.pos + 4, internal.ast);
8535
+ return constructI32(internal.pos + 4, internal.ast);
8536
8536
  }
8537
8537
 
8538
8538
  get typeAnnotation() {
@@ -8573,12 +8573,12 @@ export class TSRestType {
8573
8573
 
8574
8574
  get start() {
8575
8575
  const internal = this.#internal;
8576
- return constructU32(internal.pos, internal.ast);
8576
+ return constructI32(internal.pos, internal.ast);
8577
8577
  }
8578
8578
 
8579
8579
  get end() {
8580
8580
  const internal = this.#internal;
8581
- return constructU32(internal.pos + 4, internal.ast);
8581
+ return constructI32(internal.pos + 4, internal.ast);
8582
8582
  }
8583
8583
 
8584
8584
  get typeAnnotation() {
@@ -8704,12 +8704,12 @@ export class TSAnyKeyword {
8704
8704
 
8705
8705
  get start() {
8706
8706
  const internal = this.#internal;
8707
- return constructU32(internal.pos, internal.ast);
8707
+ return constructI32(internal.pos, internal.ast);
8708
8708
  }
8709
8709
 
8710
8710
  get end() {
8711
8711
  const internal = this.#internal;
8712
- return constructU32(internal.pos + 4, internal.ast);
8712
+ return constructI32(internal.pos + 4, internal.ast);
8713
8713
  }
8714
8714
 
8715
8715
  toJSON() {
@@ -8744,12 +8744,12 @@ export class TSStringKeyword {
8744
8744
 
8745
8745
  get start() {
8746
8746
  const internal = this.#internal;
8747
- return constructU32(internal.pos, internal.ast);
8747
+ return constructI32(internal.pos, internal.ast);
8748
8748
  }
8749
8749
 
8750
8750
  get end() {
8751
8751
  const internal = this.#internal;
8752
- return constructU32(internal.pos + 4, internal.ast);
8752
+ return constructI32(internal.pos + 4, internal.ast);
8753
8753
  }
8754
8754
 
8755
8755
  toJSON() {
@@ -8784,12 +8784,12 @@ export class TSBooleanKeyword {
8784
8784
 
8785
8785
  get start() {
8786
8786
  const internal = this.#internal;
8787
- return constructU32(internal.pos, internal.ast);
8787
+ return constructI32(internal.pos, internal.ast);
8788
8788
  }
8789
8789
 
8790
8790
  get end() {
8791
8791
  const internal = this.#internal;
8792
- return constructU32(internal.pos + 4, internal.ast);
8792
+ return constructI32(internal.pos + 4, internal.ast);
8793
8793
  }
8794
8794
 
8795
8795
  toJSON() {
@@ -8824,12 +8824,12 @@ export class TSNumberKeyword {
8824
8824
 
8825
8825
  get start() {
8826
8826
  const internal = this.#internal;
8827
- return constructU32(internal.pos, internal.ast);
8827
+ return constructI32(internal.pos, internal.ast);
8828
8828
  }
8829
8829
 
8830
8830
  get end() {
8831
8831
  const internal = this.#internal;
8832
- return constructU32(internal.pos + 4, internal.ast);
8832
+ return constructI32(internal.pos + 4, internal.ast);
8833
8833
  }
8834
8834
 
8835
8835
  toJSON() {
@@ -8864,12 +8864,12 @@ export class TSNeverKeyword {
8864
8864
 
8865
8865
  get start() {
8866
8866
  const internal = this.#internal;
8867
- return constructU32(internal.pos, internal.ast);
8867
+ return constructI32(internal.pos, internal.ast);
8868
8868
  }
8869
8869
 
8870
8870
  get end() {
8871
8871
  const internal = this.#internal;
8872
- return constructU32(internal.pos + 4, internal.ast);
8872
+ return constructI32(internal.pos + 4, internal.ast);
8873
8873
  }
8874
8874
 
8875
8875
  toJSON() {
@@ -8904,12 +8904,12 @@ export class TSIntrinsicKeyword {
8904
8904
 
8905
8905
  get start() {
8906
8906
  const internal = this.#internal;
8907
- return constructU32(internal.pos, internal.ast);
8907
+ return constructI32(internal.pos, internal.ast);
8908
8908
  }
8909
8909
 
8910
8910
  get end() {
8911
8911
  const internal = this.#internal;
8912
- return constructU32(internal.pos + 4, internal.ast);
8912
+ return constructI32(internal.pos + 4, internal.ast);
8913
8913
  }
8914
8914
 
8915
8915
  toJSON() {
@@ -8944,12 +8944,12 @@ export class TSUnknownKeyword {
8944
8944
 
8945
8945
  get start() {
8946
8946
  const internal = this.#internal;
8947
- return constructU32(internal.pos, internal.ast);
8947
+ return constructI32(internal.pos, internal.ast);
8948
8948
  }
8949
8949
 
8950
8950
  get end() {
8951
8951
  const internal = this.#internal;
8952
- return constructU32(internal.pos + 4, internal.ast);
8952
+ return constructI32(internal.pos + 4, internal.ast);
8953
8953
  }
8954
8954
 
8955
8955
  toJSON() {
@@ -8984,12 +8984,12 @@ export class TSNullKeyword {
8984
8984
 
8985
8985
  get start() {
8986
8986
  const internal = this.#internal;
8987
- return constructU32(internal.pos, internal.ast);
8987
+ return constructI32(internal.pos, internal.ast);
8988
8988
  }
8989
8989
 
8990
8990
  get end() {
8991
8991
  const internal = this.#internal;
8992
- return constructU32(internal.pos + 4, internal.ast);
8992
+ return constructI32(internal.pos + 4, internal.ast);
8993
8993
  }
8994
8994
 
8995
8995
  toJSON() {
@@ -9024,12 +9024,12 @@ export class TSUndefinedKeyword {
9024
9024
 
9025
9025
  get start() {
9026
9026
  const internal = this.#internal;
9027
- return constructU32(internal.pos, internal.ast);
9027
+ return constructI32(internal.pos, internal.ast);
9028
9028
  }
9029
9029
 
9030
9030
  get end() {
9031
9031
  const internal = this.#internal;
9032
- return constructU32(internal.pos + 4, internal.ast);
9032
+ return constructI32(internal.pos + 4, internal.ast);
9033
9033
  }
9034
9034
 
9035
9035
  toJSON() {
@@ -9064,12 +9064,12 @@ export class TSVoidKeyword {
9064
9064
 
9065
9065
  get start() {
9066
9066
  const internal = this.#internal;
9067
- return constructU32(internal.pos, internal.ast);
9067
+ return constructI32(internal.pos, internal.ast);
9068
9068
  }
9069
9069
 
9070
9070
  get end() {
9071
9071
  const internal = this.#internal;
9072
- return constructU32(internal.pos + 4, internal.ast);
9072
+ return constructI32(internal.pos + 4, internal.ast);
9073
9073
  }
9074
9074
 
9075
9075
  toJSON() {
@@ -9104,12 +9104,12 @@ export class TSSymbolKeyword {
9104
9104
 
9105
9105
  get start() {
9106
9106
  const internal = this.#internal;
9107
- return constructU32(internal.pos, internal.ast);
9107
+ return constructI32(internal.pos, internal.ast);
9108
9108
  }
9109
9109
 
9110
9110
  get end() {
9111
9111
  const internal = this.#internal;
9112
- return constructU32(internal.pos + 4, internal.ast);
9112
+ return constructI32(internal.pos + 4, internal.ast);
9113
9113
  }
9114
9114
 
9115
9115
  toJSON() {
@@ -9144,12 +9144,12 @@ export class TSThisType {
9144
9144
 
9145
9145
  get start() {
9146
9146
  const internal = this.#internal;
9147
- return constructU32(internal.pos, internal.ast);
9147
+ return constructI32(internal.pos, internal.ast);
9148
9148
  }
9149
9149
 
9150
9150
  get end() {
9151
9151
  const internal = this.#internal;
9152
- return constructU32(internal.pos + 4, internal.ast);
9152
+ return constructI32(internal.pos + 4, internal.ast);
9153
9153
  }
9154
9154
 
9155
9155
  toJSON() {
@@ -9184,12 +9184,12 @@ export class TSObjectKeyword {
9184
9184
 
9185
9185
  get start() {
9186
9186
  const internal = this.#internal;
9187
- return constructU32(internal.pos, internal.ast);
9187
+ return constructI32(internal.pos, internal.ast);
9188
9188
  }
9189
9189
 
9190
9190
  get end() {
9191
9191
  const internal = this.#internal;
9192
- return constructU32(internal.pos + 4, internal.ast);
9192
+ return constructI32(internal.pos + 4, internal.ast);
9193
9193
  }
9194
9194
 
9195
9195
  toJSON() {
@@ -9224,12 +9224,12 @@ export class TSBigIntKeyword {
9224
9224
 
9225
9225
  get start() {
9226
9226
  const internal = this.#internal;
9227
- return constructU32(internal.pos, internal.ast);
9227
+ return constructI32(internal.pos, internal.ast);
9228
9228
  }
9229
9229
 
9230
9230
  get end() {
9231
9231
  const internal = this.#internal;
9232
- return constructU32(internal.pos + 4, internal.ast);
9232
+ return constructI32(internal.pos + 4, internal.ast);
9233
9233
  }
9234
9234
 
9235
9235
  toJSON() {
@@ -9264,12 +9264,12 @@ export class TSTypeReference {
9264
9264
 
9265
9265
  get start() {
9266
9266
  const internal = this.#internal;
9267
- return constructU32(internal.pos, internal.ast);
9267
+ return constructI32(internal.pos, internal.ast);
9268
9268
  }
9269
9269
 
9270
9270
  get end() {
9271
9271
  const internal = this.#internal;
9272
- return constructU32(internal.pos + 4, internal.ast);
9272
+ return constructI32(internal.pos + 4, internal.ast);
9273
9273
  }
9274
9274
 
9275
9275
  get typeName() {
@@ -9329,12 +9329,12 @@ export class TSQualifiedName {
9329
9329
 
9330
9330
  get start() {
9331
9331
  const internal = this.#internal;
9332
- return constructU32(internal.pos, internal.ast);
9332
+ return constructI32(internal.pos, internal.ast);
9333
9333
  }
9334
9334
 
9335
9335
  get end() {
9336
9336
  const internal = this.#internal;
9337
- return constructU32(internal.pos + 4, internal.ast);
9337
+ return constructI32(internal.pos + 4, internal.ast);
9338
9338
  }
9339
9339
 
9340
9340
  get left() {
@@ -9381,12 +9381,12 @@ export class TSTypeParameterInstantiation {
9381
9381
 
9382
9382
  get start() {
9383
9383
  const internal = this.#internal;
9384
- return constructU32(internal.pos, internal.ast);
9384
+ return constructI32(internal.pos, internal.ast);
9385
9385
  }
9386
9386
 
9387
9387
  get end() {
9388
9388
  const internal = this.#internal;
9389
- return constructU32(internal.pos + 4, internal.ast);
9389
+ return constructI32(internal.pos + 4, internal.ast);
9390
9390
  }
9391
9391
 
9392
9392
  get params() {
@@ -9429,12 +9429,12 @@ export class TSTypeParameter {
9429
9429
 
9430
9430
  get start() {
9431
9431
  const internal = this.#internal;
9432
- return constructU32(internal.pos, internal.ast);
9432
+ return constructI32(internal.pos, internal.ast);
9433
9433
  }
9434
9434
 
9435
9435
  get end() {
9436
9436
  const internal = this.#internal;
9437
- return constructU32(internal.pos + 4, internal.ast);
9437
+ return constructI32(internal.pos + 4, internal.ast);
9438
9438
  }
9439
9439
 
9440
9440
  get name() {
@@ -9505,12 +9505,12 @@ export class TSTypeParameterDeclaration {
9505
9505
 
9506
9506
  get start() {
9507
9507
  const internal = this.#internal;
9508
- return constructU32(internal.pos, internal.ast);
9508
+ return constructI32(internal.pos, internal.ast);
9509
9509
  }
9510
9510
 
9511
9511
  get end() {
9512
9512
  const internal = this.#internal;
9513
- return constructU32(internal.pos + 4, internal.ast);
9513
+ return constructI32(internal.pos + 4, internal.ast);
9514
9514
  }
9515
9515
 
9516
9516
  get params() {
@@ -9553,12 +9553,12 @@ export class TSTypeAliasDeclaration {
9553
9553
 
9554
9554
  get start() {
9555
9555
  const internal = this.#internal;
9556
- return constructU32(internal.pos, internal.ast);
9556
+ return constructI32(internal.pos, internal.ast);
9557
9557
  }
9558
9558
 
9559
9559
  get end() {
9560
9560
  const internal = this.#internal;
9561
- return constructU32(internal.pos + 4, internal.ast);
9561
+ return constructI32(internal.pos + 4, internal.ast);
9562
9562
  }
9563
9563
 
9564
9564
  get id() {
@@ -9630,12 +9630,12 @@ export class TSClassImplements {
9630
9630
 
9631
9631
  get start() {
9632
9632
  const internal = this.#internal;
9633
- return constructU32(internal.pos, internal.ast);
9633
+ return constructI32(internal.pos, internal.ast);
9634
9634
  }
9635
9635
 
9636
9636
  get end() {
9637
9637
  const internal = this.#internal;
9638
- return constructU32(internal.pos + 4, internal.ast);
9638
+ return constructI32(internal.pos + 4, internal.ast);
9639
9639
  }
9640
9640
 
9641
9641
  get expression() {
@@ -9682,12 +9682,12 @@ export class TSInterfaceDeclaration {
9682
9682
 
9683
9683
  get start() {
9684
9684
  const internal = this.#internal;
9685
- return constructU32(internal.pos, internal.ast);
9685
+ return constructI32(internal.pos, internal.ast);
9686
9686
  }
9687
9687
 
9688
9688
  get end() {
9689
9689
  const internal = this.#internal;
9690
- return constructU32(internal.pos + 4, internal.ast);
9690
+ return constructI32(internal.pos + 4, internal.ast);
9691
9691
  }
9692
9692
 
9693
9693
  get id() {
@@ -9754,12 +9754,12 @@ export class TSInterfaceBody {
9754
9754
 
9755
9755
  get start() {
9756
9756
  const internal = this.#internal;
9757
- return constructU32(internal.pos, internal.ast);
9757
+ return constructI32(internal.pos, internal.ast);
9758
9758
  }
9759
9759
 
9760
9760
  get end() {
9761
9761
  const internal = this.#internal;
9762
- return constructU32(internal.pos + 4, internal.ast);
9762
+ return constructI32(internal.pos + 4, internal.ast);
9763
9763
  }
9764
9764
 
9765
9765
  get body() {
@@ -9802,12 +9802,12 @@ export class TSPropertySignature {
9802
9802
 
9803
9803
  get start() {
9804
9804
  const internal = this.#internal;
9805
- return constructU32(internal.pos, internal.ast);
9805
+ return constructI32(internal.pos, internal.ast);
9806
9806
  }
9807
9807
 
9808
9808
  get end() {
9809
9809
  const internal = this.#internal;
9810
- return constructU32(internal.pos + 4, internal.ast);
9810
+ return constructI32(internal.pos + 4, internal.ast);
9811
9811
  }
9812
9812
 
9813
9813
  get computed() {
@@ -9889,12 +9889,12 @@ export class TSIndexSignature {
9889
9889
 
9890
9890
  get start() {
9891
9891
  const internal = this.#internal;
9892
- return constructU32(internal.pos, internal.ast);
9892
+ return constructI32(internal.pos, internal.ast);
9893
9893
  }
9894
9894
 
9895
9895
  get end() {
9896
9896
  const internal = this.#internal;
9897
- return constructU32(internal.pos + 4, internal.ast);
9897
+ return constructI32(internal.pos + 4, internal.ast);
9898
9898
  }
9899
9899
 
9900
9900
  get parameters() {
@@ -9958,12 +9958,12 @@ export class TSCallSignatureDeclaration {
9958
9958
 
9959
9959
  get start() {
9960
9960
  const internal = this.#internal;
9961
- return constructU32(internal.pos, internal.ast);
9961
+ return constructI32(internal.pos, internal.ast);
9962
9962
  }
9963
9963
 
9964
9964
  get end() {
9965
9965
  const internal = this.#internal;
9966
- return constructU32(internal.pos + 4, internal.ast);
9966
+ return constructI32(internal.pos + 4, internal.ast);
9967
9967
  }
9968
9968
 
9969
9969
  get typeParameters() {
@@ -10029,12 +10029,12 @@ export class TSMethodSignature {
10029
10029
 
10030
10030
  get start() {
10031
10031
  const internal = this.#internal;
10032
- return constructU32(internal.pos, internal.ast);
10032
+ return constructI32(internal.pos, internal.ast);
10033
10033
  }
10034
10034
 
10035
10035
  get end() {
10036
10036
  const internal = this.#internal;
10037
- return constructU32(internal.pos + 4, internal.ast);
10037
+ return constructI32(internal.pos + 4, internal.ast);
10038
10038
  }
10039
10039
 
10040
10040
  get key() {
@@ -10111,12 +10111,12 @@ export class TSConstructSignatureDeclaration {
10111
10111
 
10112
10112
  get start() {
10113
10113
  const internal = this.#internal;
10114
- return constructU32(internal.pos, internal.ast);
10114
+ return constructI32(internal.pos, internal.ast);
10115
10115
  }
10116
10116
 
10117
10117
  get end() {
10118
10118
  const internal = this.#internal;
10119
- return constructU32(internal.pos + 4, internal.ast);
10119
+ return constructI32(internal.pos + 4, internal.ast);
10120
10120
  }
10121
10121
 
10122
10122
  get typeParameters() {
@@ -10169,12 +10169,12 @@ export class TSIndexSignatureName {
10169
10169
 
10170
10170
  get start() {
10171
10171
  const internal = this.#internal;
10172
- return constructU32(internal.pos, internal.ast);
10172
+ return constructI32(internal.pos, internal.ast);
10173
10173
  }
10174
10174
 
10175
10175
  get end() {
10176
10176
  const internal = this.#internal;
10177
- return constructU32(internal.pos + 4, internal.ast);
10177
+ return constructI32(internal.pos + 4, internal.ast);
10178
10178
  }
10179
10179
 
10180
10180
  get name() {
@@ -10223,12 +10223,12 @@ export class TSInterfaceHeritage {
10223
10223
 
10224
10224
  get start() {
10225
10225
  const internal = this.#internal;
10226
- return constructU32(internal.pos, internal.ast);
10226
+ return constructI32(internal.pos, internal.ast);
10227
10227
  }
10228
10228
 
10229
10229
  get end() {
10230
10230
  const internal = this.#internal;
10231
- return constructU32(internal.pos + 4, internal.ast);
10231
+ return constructI32(internal.pos + 4, internal.ast);
10232
10232
  }
10233
10233
 
10234
10234
  get expression() {
@@ -10275,12 +10275,12 @@ export class TSTypePredicate {
10275
10275
 
10276
10276
  get start() {
10277
10277
  const internal = this.#internal;
10278
- return constructU32(internal.pos, internal.ast);
10278
+ return constructI32(internal.pos, internal.ast);
10279
10279
  }
10280
10280
 
10281
10281
  get end() {
10282
10282
  const internal = this.#internal;
10283
- return constructU32(internal.pos + 4, internal.ast);
10283
+ return constructI32(internal.pos + 4, internal.ast);
10284
10284
  }
10285
10285
 
10286
10286
  get parameterName() {
@@ -10344,12 +10344,12 @@ export class TSModuleDeclaration {
10344
10344
 
10345
10345
  get start() {
10346
10346
  const internal = this.#internal;
10347
- return constructU32(internal.pos, internal.ast);
10347
+ return constructI32(internal.pos, internal.ast);
10348
10348
  }
10349
10349
 
10350
10350
  get end() {
10351
10351
  const internal = this.#internal;
10352
- return constructU32(internal.pos + 4, internal.ast);
10352
+ return constructI32(internal.pos + 4, internal.ast);
10353
10353
  }
10354
10354
 
10355
10355
  get id() {
@@ -10441,12 +10441,12 @@ export class TSGlobalDeclaration {
10441
10441
 
10442
10442
  get start() {
10443
10443
  const internal = this.#internal;
10444
- return constructU32(internal.pos, internal.ast);
10444
+ return constructI32(internal.pos, internal.ast);
10445
10445
  }
10446
10446
 
10447
10447
  get end() {
10448
10448
  const internal = this.#internal;
10449
- return constructU32(internal.pos + 4, internal.ast);
10449
+ return constructI32(internal.pos + 4, internal.ast);
10450
10450
  }
10451
10451
 
10452
10452
  get body() {
@@ -10493,12 +10493,12 @@ export class TSModuleBlock {
10493
10493
 
10494
10494
  get start() {
10495
10495
  const internal = this.#internal;
10496
- return constructU32(internal.pos, internal.ast);
10496
+ return constructI32(internal.pos, internal.ast);
10497
10497
  }
10498
10498
 
10499
10499
  get end() {
10500
10500
  const internal = this.#internal;
10501
- return constructU32(internal.pos + 4, internal.ast);
10501
+ return constructI32(internal.pos + 4, internal.ast);
10502
10502
  }
10503
10503
 
10504
10504
  get body() {
@@ -10541,12 +10541,12 @@ export class TSTypeLiteral {
10541
10541
 
10542
10542
  get start() {
10543
10543
  const internal = this.#internal;
10544
- return constructU32(internal.pos, internal.ast);
10544
+ return constructI32(internal.pos, internal.ast);
10545
10545
  }
10546
10546
 
10547
10547
  get end() {
10548
10548
  const internal = this.#internal;
10549
- return constructU32(internal.pos + 4, internal.ast);
10549
+ return constructI32(internal.pos + 4, internal.ast);
10550
10550
  }
10551
10551
 
10552
10552
  get members() {
@@ -10589,12 +10589,12 @@ export class TSInferType {
10589
10589
 
10590
10590
  get start() {
10591
10591
  const internal = this.#internal;
10592
- return constructU32(internal.pos, internal.ast);
10592
+ return constructI32(internal.pos, internal.ast);
10593
10593
  }
10594
10594
 
10595
10595
  get end() {
10596
10596
  const internal = this.#internal;
10597
- return constructU32(internal.pos + 4, internal.ast);
10597
+ return constructI32(internal.pos + 4, internal.ast);
10598
10598
  }
10599
10599
 
10600
10600
  get typeParameter() {
@@ -10635,12 +10635,12 @@ export class TSTypeQuery {
10635
10635
 
10636
10636
  get start() {
10637
10637
  const internal = this.#internal;
10638
- return constructU32(internal.pos, internal.ast);
10638
+ return constructI32(internal.pos, internal.ast);
10639
10639
  }
10640
10640
 
10641
10641
  get end() {
10642
10642
  const internal = this.#internal;
10643
- return constructU32(internal.pos + 4, internal.ast);
10643
+ return constructI32(internal.pos + 4, internal.ast);
10644
10644
  }
10645
10645
 
10646
10646
  get exprName() {
@@ -10702,12 +10702,12 @@ export class TSImportType {
10702
10702
 
10703
10703
  get start() {
10704
10704
  const internal = this.#internal;
10705
- return constructU32(internal.pos, internal.ast);
10705
+ return constructI32(internal.pos, internal.ast);
10706
10706
  }
10707
10707
 
10708
10708
  get end() {
10709
10709
  const internal = this.#internal;
10710
- return constructU32(internal.pos + 4, internal.ast);
10710
+ return constructI32(internal.pos + 4, internal.ast);
10711
10711
  }
10712
10712
 
10713
10713
  get source() {
@@ -10777,12 +10777,12 @@ export class TSImportTypeQualifiedName {
10777
10777
 
10778
10778
  get start() {
10779
10779
  const internal = this.#internal;
10780
- return constructU32(internal.pos, internal.ast);
10780
+ return constructI32(internal.pos, internal.ast);
10781
10781
  }
10782
10782
 
10783
10783
  get end() {
10784
10784
  const internal = this.#internal;
10785
- return constructU32(internal.pos + 4, internal.ast);
10785
+ return constructI32(internal.pos + 4, internal.ast);
10786
10786
  }
10787
10787
 
10788
10788
  get left() {
@@ -10829,12 +10829,12 @@ export class TSFunctionType {
10829
10829
 
10830
10830
  get start() {
10831
10831
  const internal = this.#internal;
10832
- return constructU32(internal.pos, internal.ast);
10832
+ return constructI32(internal.pos, internal.ast);
10833
10833
  }
10834
10834
 
10835
10835
  get end() {
10836
10836
  const internal = this.#internal;
10837
- return constructU32(internal.pos + 4, internal.ast);
10837
+ return constructI32(internal.pos + 4, internal.ast);
10838
10838
  }
10839
10839
 
10840
10840
  get typeParameters() {
@@ -10887,12 +10887,12 @@ export class TSConstructorType {
10887
10887
 
10888
10888
  get start() {
10889
10889
  const internal = this.#internal;
10890
- return constructU32(internal.pos, internal.ast);
10890
+ return constructI32(internal.pos, internal.ast);
10891
10891
  }
10892
10892
 
10893
10893
  get end() {
10894
10894
  const internal = this.#internal;
10895
- return constructU32(internal.pos + 4, internal.ast);
10895
+ return constructI32(internal.pos + 4, internal.ast);
10896
10896
  }
10897
10897
 
10898
10898
  get abstract() {
@@ -10951,12 +10951,12 @@ export class TSMappedType {
10951
10951
 
10952
10952
  get start() {
10953
10953
  const internal = this.#internal;
10954
- return constructU32(internal.pos, internal.ast);
10954
+ return constructI32(internal.pos, internal.ast);
10955
10955
  }
10956
10956
 
10957
10957
  get end() {
10958
10958
  const internal = this.#internal;
10959
- return constructU32(internal.pos + 4, internal.ast);
10959
+ return constructI32(internal.pos + 4, internal.ast);
10960
10960
  }
10961
10961
 
10962
10962
  get key() {
@@ -11042,12 +11042,12 @@ export class TSTemplateLiteralType {
11042
11042
 
11043
11043
  get start() {
11044
11044
  const internal = this.#internal;
11045
- return constructU32(internal.pos, internal.ast);
11045
+ return constructI32(internal.pos, internal.ast);
11046
11046
  }
11047
11047
 
11048
11048
  get end() {
11049
11049
  const internal = this.#internal;
11050
- return constructU32(internal.pos + 4, internal.ast);
11050
+ return constructI32(internal.pos + 4, internal.ast);
11051
11051
  }
11052
11052
 
11053
11053
  get quasis() {
@@ -11098,12 +11098,12 @@ export class TSAsExpression {
11098
11098
 
11099
11099
  get start() {
11100
11100
  const internal = this.#internal;
11101
- return constructU32(internal.pos, internal.ast);
11101
+ return constructI32(internal.pos, internal.ast);
11102
11102
  }
11103
11103
 
11104
11104
  get end() {
11105
11105
  const internal = this.#internal;
11106
- return constructU32(internal.pos + 4, internal.ast);
11106
+ return constructI32(internal.pos + 4, internal.ast);
11107
11107
  }
11108
11108
 
11109
11109
  get expression() {
@@ -11150,12 +11150,12 @@ export class TSSatisfiesExpression {
11150
11150
 
11151
11151
  get start() {
11152
11152
  const internal = this.#internal;
11153
- return constructU32(internal.pos, internal.ast);
11153
+ return constructI32(internal.pos, internal.ast);
11154
11154
  }
11155
11155
 
11156
11156
  get end() {
11157
11157
  const internal = this.#internal;
11158
- return constructU32(internal.pos + 4, internal.ast);
11158
+ return constructI32(internal.pos + 4, internal.ast);
11159
11159
  }
11160
11160
 
11161
11161
  get expression() {
@@ -11202,12 +11202,12 @@ export class TSTypeAssertion {
11202
11202
 
11203
11203
  get start() {
11204
11204
  const internal = this.#internal;
11205
- return constructU32(internal.pos, internal.ast);
11205
+ return constructI32(internal.pos, internal.ast);
11206
11206
  }
11207
11207
 
11208
11208
  get end() {
11209
11209
  const internal = this.#internal;
11210
- return constructU32(internal.pos + 4, internal.ast);
11210
+ return constructI32(internal.pos + 4, internal.ast);
11211
11211
  }
11212
11212
 
11213
11213
  get typeAnnotation() {
@@ -11254,12 +11254,12 @@ export class TSImportEqualsDeclaration {
11254
11254
 
11255
11255
  get start() {
11256
11256
  const internal = this.#internal;
11257
- return constructU32(internal.pos, internal.ast);
11257
+ return constructI32(internal.pos, internal.ast);
11258
11258
  }
11259
11259
 
11260
11260
  get end() {
11261
11261
  const internal = this.#internal;
11262
- return constructU32(internal.pos + 4, internal.ast);
11262
+ return constructI32(internal.pos + 4, internal.ast);
11263
11263
  }
11264
11264
 
11265
11265
  get id() {
@@ -11325,12 +11325,12 @@ export class TSExternalModuleReference {
11325
11325
 
11326
11326
  get start() {
11327
11327
  const internal = this.#internal;
11328
- return constructU32(internal.pos, internal.ast);
11328
+ return constructI32(internal.pos, internal.ast);
11329
11329
  }
11330
11330
 
11331
11331
  get end() {
11332
11332
  const internal = this.#internal;
11333
- return constructU32(internal.pos + 4, internal.ast);
11333
+ return constructI32(internal.pos + 4, internal.ast);
11334
11334
  }
11335
11335
 
11336
11336
  get expression() {
@@ -11371,12 +11371,12 @@ export class TSNonNullExpression {
11371
11371
 
11372
11372
  get start() {
11373
11373
  const internal = this.#internal;
11374
- return constructU32(internal.pos, internal.ast);
11374
+ return constructI32(internal.pos, internal.ast);
11375
11375
  }
11376
11376
 
11377
11377
  get end() {
11378
11378
  const internal = this.#internal;
11379
- return constructU32(internal.pos + 4, internal.ast);
11379
+ return constructI32(internal.pos + 4, internal.ast);
11380
11380
  }
11381
11381
 
11382
11382
  get expression() {
@@ -11417,12 +11417,12 @@ export class Decorator {
11417
11417
 
11418
11418
  get start() {
11419
11419
  const internal = this.#internal;
11420
- return constructU32(internal.pos, internal.ast);
11420
+ return constructI32(internal.pos, internal.ast);
11421
11421
  }
11422
11422
 
11423
11423
  get end() {
11424
11424
  const internal = this.#internal;
11425
- return constructU32(internal.pos + 4, internal.ast);
11425
+ return constructI32(internal.pos + 4, internal.ast);
11426
11426
  }
11427
11427
 
11428
11428
  get expression() {
@@ -11463,12 +11463,12 @@ export class TSExportAssignment {
11463
11463
 
11464
11464
  get start() {
11465
11465
  const internal = this.#internal;
11466
- return constructU32(internal.pos, internal.ast);
11466
+ return constructI32(internal.pos, internal.ast);
11467
11467
  }
11468
11468
 
11469
11469
  get end() {
11470
11470
  const internal = this.#internal;
11471
- return constructU32(internal.pos + 4, internal.ast);
11471
+ return constructI32(internal.pos + 4, internal.ast);
11472
11472
  }
11473
11473
 
11474
11474
  get expression() {
@@ -11509,12 +11509,12 @@ export class TSNamespaceExportDeclaration {
11509
11509
 
11510
11510
  get start() {
11511
11511
  const internal = this.#internal;
11512
- return constructU32(internal.pos, internal.ast);
11512
+ return constructI32(internal.pos, internal.ast);
11513
11513
  }
11514
11514
 
11515
11515
  get end() {
11516
11516
  const internal = this.#internal;
11517
- return constructU32(internal.pos + 4, internal.ast);
11517
+ return constructI32(internal.pos + 4, internal.ast);
11518
11518
  }
11519
11519
 
11520
11520
  get id() {
@@ -11555,12 +11555,12 @@ export class TSInstantiationExpression {
11555
11555
 
11556
11556
  get start() {
11557
11557
  const internal = this.#internal;
11558
- return constructU32(internal.pos, internal.ast);
11558
+ return constructI32(internal.pos, internal.ast);
11559
11559
  }
11560
11560
 
11561
11561
  get end() {
11562
11562
  const internal = this.#internal;
11563
- return constructU32(internal.pos + 4, internal.ast);
11563
+ return constructI32(internal.pos + 4, internal.ast);
11564
11564
  }
11565
11565
 
11566
11566
  get expression() {
@@ -11618,12 +11618,12 @@ export class JSDocNullableType {
11618
11618
 
11619
11619
  get start() {
11620
11620
  const internal = this.#internal;
11621
- return constructU32(internal.pos, internal.ast);
11621
+ return constructI32(internal.pos, internal.ast);
11622
11622
  }
11623
11623
 
11624
11624
  get end() {
11625
11625
  const internal = this.#internal;
11626
- return constructU32(internal.pos + 4, internal.ast);
11626
+ return constructI32(internal.pos + 4, internal.ast);
11627
11627
  }
11628
11628
 
11629
11629
  get typeAnnotation() {
@@ -11670,12 +11670,12 @@ export class JSDocNonNullableType {
11670
11670
 
11671
11671
  get start() {
11672
11672
  const internal = this.#internal;
11673
- return constructU32(internal.pos, internal.ast);
11673
+ return constructI32(internal.pos, internal.ast);
11674
11674
  }
11675
11675
 
11676
11676
  get end() {
11677
11677
  const internal = this.#internal;
11678
- return constructU32(internal.pos + 4, internal.ast);
11678
+ return constructI32(internal.pos + 4, internal.ast);
11679
11679
  }
11680
11680
 
11681
11681
  get typeAnnotation() {
@@ -11722,12 +11722,12 @@ export class JSDocUnknownType {
11722
11722
 
11723
11723
  get start() {
11724
11724
  const internal = this.#internal;
11725
- return constructU32(internal.pos, internal.ast);
11725
+ return constructI32(internal.pos, internal.ast);
11726
11726
  }
11727
11727
 
11728
11728
  get end() {
11729
11729
  const internal = this.#internal;
11730
- return constructU32(internal.pos + 4, internal.ast);
11730
+ return constructI32(internal.pos + 4, internal.ast);
11731
11731
  }
11732
11732
 
11733
11733
  toJSON() {
@@ -11774,12 +11774,12 @@ export class Comment {
11774
11774
 
11775
11775
  get start() {
11776
11776
  const internal = this.#internal;
11777
- return constructU32(internal.pos, internal.ast);
11777
+ return constructI32(internal.pos, internal.ast);
11778
11778
  }
11779
11779
 
11780
11780
  get end() {
11781
11781
  const internal = this.#internal;
11782
- return constructU32(internal.pos + 4, internal.ast);
11782
+ return constructI32(internal.pos + 4, internal.ast);
11783
11783
  }
11784
11784
 
11785
11785
  get type() {
@@ -11863,12 +11863,12 @@ export class Span {
11863
11863
 
11864
11864
  get start() {
11865
11865
  const internal = this.#internal;
11866
- return constructU32(internal.pos, internal.ast);
11866
+ return constructI32(internal.pos, internal.ast);
11867
11867
  }
11868
11868
 
11869
11869
  get end() {
11870
11870
  const internal = this.#internal;
11871
- return constructU32(internal.pos + 4, internal.ast);
11871
+ return constructI32(internal.pos + 4, internal.ast);
11872
11872
  }
11873
11873
 
11874
11874
  toJSON() {
@@ -11908,12 +11908,12 @@ export class NameSpan {
11908
11908
 
11909
11909
  get start() {
11910
11910
  const internal = this.#internal;
11911
- return constructU32(internal.pos, internal.ast);
11911
+ return constructI32(internal.pos, internal.ast);
11912
11912
  }
11913
11913
 
11914
11914
  get end() {
11915
11915
  const internal = this.#internal;
11916
- return constructU32(internal.pos + 4, internal.ast);
11916
+ return constructI32(internal.pos + 4, internal.ast);
11917
11917
  }
11918
11918
 
11919
11919
  toJSON() {
@@ -12004,12 +12004,12 @@ export class ExportEntry {
12004
12004
 
12005
12005
  get start() {
12006
12006
  const internal = this.#internal;
12007
- return constructU32(internal.pos, internal.ast);
12007
+ return constructI32(internal.pos, internal.ast);
12008
12008
  }
12009
12009
 
12010
12010
  get end() {
12011
12011
  const internal = this.#internal;
12012
- return constructU32(internal.pos + 4, internal.ast);
12012
+ return constructI32(internal.pos + 4, internal.ast);
12013
12013
  }
12014
12014
 
12015
12015
  get moduleRequest() {
@@ -12113,12 +12113,12 @@ export class DynamicImport {
12113
12113
 
12114
12114
  get start() {
12115
12115
  const internal = this.#internal;
12116
- return constructU32(internal.pos, internal.ast);
12116
+ return constructI32(internal.pos, internal.ast);
12117
12117
  }
12118
12118
 
12119
12119
  get end() {
12120
12120
  const internal = this.#internal;
12121
- return constructU32(internal.pos + 4, internal.ast);
12121
+ return constructI32(internal.pos + 4, internal.ast);
12122
12122
  }
12123
12123
 
12124
12124
  get moduleRequest() {
@@ -12438,12 +12438,12 @@ export class ErrorLabel {
12438
12438
 
12439
12439
  get start() {
12440
12440
  const internal = this.#internal;
12441
- return constructU32(internal.pos, internal.ast);
12441
+ return constructI32(internal.pos, internal.ast);
12442
12442
  }
12443
12443
 
12444
12444
  get end() {
12445
12445
  const internal = this.#internal;
12446
- return constructU32(internal.pos + 4, internal.ast);
12446
+ return constructI32(internal.pos + 4, internal.ast);
12447
12447
  }
12448
12448
 
12449
12449
  toJSON() {
@@ -12548,12 +12548,12 @@ export class StaticImport {
12548
12548
 
12549
12549
  get start() {
12550
12550
  const internal = this.#internal;
12551
- return constructU32(internal.pos, internal.ast);
12551
+ return constructI32(internal.pos, internal.ast);
12552
12552
  }
12553
12553
 
12554
12554
  get end() {
12555
12555
  const internal = this.#internal;
12556
- return constructU32(internal.pos + 4, internal.ast);
12556
+ return constructI32(internal.pos + 4, internal.ast);
12557
12557
  }
12558
12558
 
12559
12559
  get moduleRequest() {
@@ -12600,12 +12600,12 @@ export class StaticExport {
12600
12600
 
12601
12601
  get start() {
12602
12602
  const internal = this.#internal;
12603
- return constructU32(internal.pos, internal.ast);
12603
+ return constructI32(internal.pos, internal.ast);
12604
12604
  }
12605
12605
 
12606
12606
  get end() {
12607
12607
  const internal = this.#internal;
12608
- return constructU32(internal.pos + 4, internal.ast);
12608
+ return constructI32(internal.pos + 4, internal.ast);
12609
12609
  }
12610
12610
 
12611
12611
  get entries() {
@@ -12633,11 +12633,11 @@ const DebugStaticExport = class StaticExport {};
12633
12633
  function constructStr(pos, ast) {
12634
12634
  const pos32 = pos >> 2,
12635
12635
  { buffer } = ast,
12636
- { uint32 } = buffer,
12637
- len = uint32[pos32 + 2];
12636
+ { int32 } = buffer,
12637
+ len = int32[pos32 + 2];
12638
12638
  if (len === 0) return "";
12639
12639
 
12640
- pos = uint32[pos32];
12640
+ pos = int32[pos32];
12641
12641
  if (ast.sourceIsAscii && pos < ast.sourceByteLen) return ast.sourceText.substr(pos, len);
12642
12642
 
12643
12643
  // Longer strings use `TextDecoder`
@@ -12662,9 +12662,9 @@ function constructStr(pos, ast) {
12662
12662
  }
12663
12663
 
12664
12664
  function constructVecComment(pos, ast) {
12665
- const { uint32 } = ast.buffer,
12665
+ const { int32 } = ast.buffer,
12666
12666
  pos32 = pos >> 2;
12667
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructComment, ast);
12667
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructComment, ast);
12668
12668
  }
12669
12669
 
12670
12670
  function constructComment(pos, ast) {
@@ -12672,15 +12672,14 @@ function constructComment(pos, ast) {
12672
12672
  }
12673
12673
 
12674
12674
  function constructOptionHashbang(pos, ast) {
12675
- if (ast.buffer.uint32[(pos + 16) >> 2] === 0 && ast.buffer.uint32[(pos + 20) >> 2] === 0)
12676
- return null;
12675
+ if (ast.buffer.int32[(pos >> 2) + 4] === 0 && ast.buffer.int32[(pos >> 2) + 5] === 0) return null;
12677
12676
  return new Hashbang(pos, ast);
12678
12677
  }
12679
12678
 
12680
12679
  function constructVecDirective(pos, ast) {
12681
- const { uint32 } = ast.buffer,
12680
+ const { int32 } = ast.buffer,
12682
12681
  pos32 = pos >> 2;
12683
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 80, constructDirective, ast);
12682
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 80, constructDirective, ast);
12684
12683
  }
12685
12684
 
12686
12685
  function constructDirective(pos, ast) {
@@ -12688,189 +12687,189 @@ function constructDirective(pos, ast) {
12688
12687
  }
12689
12688
 
12690
12689
  function constructVecStatement(pos, ast) {
12691
- const { uint32 } = ast.buffer,
12690
+ const { int32 } = ast.buffer,
12692
12691
  pos32 = pos >> 2;
12693
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructStatement, ast);
12692
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructStatement, ast);
12694
12693
  }
12695
12694
 
12696
12695
  function constructBoxBooleanLiteral(pos, ast) {
12697
- return new BooleanLiteral(ast.buffer.uint32[pos >> 2], ast);
12696
+ return new BooleanLiteral(ast.buffer.int32[pos >> 2], ast);
12698
12697
  }
12699
12698
 
12700
12699
  function constructBoxNullLiteral(pos, ast) {
12701
- return new NullLiteral(ast.buffer.uint32[pos >> 2], ast);
12700
+ return new NullLiteral(ast.buffer.int32[pos >> 2], ast);
12702
12701
  }
12703
12702
 
12704
12703
  function constructBoxNumericLiteral(pos, ast) {
12705
- return new NumericLiteral(ast.buffer.uint32[pos >> 2], ast);
12704
+ return new NumericLiteral(ast.buffer.int32[pos >> 2], ast);
12706
12705
  }
12707
12706
 
12708
12707
  function constructBoxBigIntLiteral(pos, ast) {
12709
- return new BigIntLiteral(ast.buffer.uint32[pos >> 2], ast);
12708
+ return new BigIntLiteral(ast.buffer.int32[pos >> 2], ast);
12710
12709
  }
12711
12710
 
12712
12711
  function constructBoxRegExpLiteral(pos, ast) {
12713
- return new RegExpLiteral(ast.buffer.uint32[pos >> 2], ast);
12712
+ return new RegExpLiteral(ast.buffer.int32[pos >> 2], ast);
12714
12713
  }
12715
12714
 
12716
12715
  function constructBoxStringLiteral(pos, ast) {
12717
- return new StringLiteral(ast.buffer.uint32[pos >> 2], ast);
12716
+ return new StringLiteral(ast.buffer.int32[pos >> 2], ast);
12718
12717
  }
12719
12718
 
12720
12719
  function constructBoxTemplateLiteral(pos, ast) {
12721
- return new TemplateLiteral(ast.buffer.uint32[pos >> 2], ast);
12720
+ return new TemplateLiteral(ast.buffer.int32[pos >> 2], ast);
12722
12721
  }
12723
12722
 
12724
12723
  function constructBoxIdentifierReference(pos, ast) {
12725
- return new IdentifierReference(ast.buffer.uint32[pos >> 2], ast);
12724
+ return new IdentifierReference(ast.buffer.int32[pos >> 2], ast);
12726
12725
  }
12727
12726
 
12728
12727
  function constructBoxMetaProperty(pos, ast) {
12729
- return new MetaProperty(ast.buffer.uint32[pos >> 2], ast);
12728
+ return new MetaProperty(ast.buffer.int32[pos >> 2], ast);
12730
12729
  }
12731
12730
 
12732
12731
  function constructBoxSuper(pos, ast) {
12733
- return new Super(ast.buffer.uint32[pos >> 2], ast);
12732
+ return new Super(ast.buffer.int32[pos >> 2], ast);
12734
12733
  }
12735
12734
 
12736
12735
  function constructBoxArrayExpression(pos, ast) {
12737
- return new ArrayExpression(ast.buffer.uint32[pos >> 2], ast);
12736
+ return new ArrayExpression(ast.buffer.int32[pos >> 2], ast);
12738
12737
  }
12739
12738
 
12740
12739
  function constructBoxArrowFunctionExpression(pos, ast) {
12741
- return new ArrowFunctionExpression(ast.buffer.uint32[pos >> 2], ast);
12740
+ return new ArrowFunctionExpression(ast.buffer.int32[pos >> 2], ast);
12742
12741
  }
12743
12742
 
12744
12743
  function constructBoxAssignmentExpression(pos, ast) {
12745
- return new AssignmentExpression(ast.buffer.uint32[pos >> 2], ast);
12744
+ return new AssignmentExpression(ast.buffer.int32[pos >> 2], ast);
12746
12745
  }
12747
12746
 
12748
12747
  function constructBoxAwaitExpression(pos, ast) {
12749
- return new AwaitExpression(ast.buffer.uint32[pos >> 2], ast);
12748
+ return new AwaitExpression(ast.buffer.int32[pos >> 2], ast);
12750
12749
  }
12751
12750
 
12752
12751
  function constructBoxBinaryExpression(pos, ast) {
12753
- return new BinaryExpression(ast.buffer.uint32[pos >> 2], ast);
12752
+ return new BinaryExpression(ast.buffer.int32[pos >> 2], ast);
12754
12753
  }
12755
12754
 
12756
12755
  function constructBoxCallExpression(pos, ast) {
12757
- return new CallExpression(ast.buffer.uint32[pos >> 2], ast);
12756
+ return new CallExpression(ast.buffer.int32[pos >> 2], ast);
12758
12757
  }
12759
12758
 
12760
12759
  function constructBoxChainExpression(pos, ast) {
12761
- return new ChainExpression(ast.buffer.uint32[pos >> 2], ast);
12760
+ return new ChainExpression(ast.buffer.int32[pos >> 2], ast);
12762
12761
  }
12763
12762
 
12764
12763
  function constructBoxClass(pos, ast) {
12765
- return new Class(ast.buffer.uint32[pos >> 2], ast);
12764
+ return new Class(ast.buffer.int32[pos >> 2], ast);
12766
12765
  }
12767
12766
 
12768
12767
  function constructBoxConditionalExpression(pos, ast) {
12769
- return new ConditionalExpression(ast.buffer.uint32[pos >> 2], ast);
12768
+ return new ConditionalExpression(ast.buffer.int32[pos >> 2], ast);
12770
12769
  }
12771
12770
 
12772
12771
  function constructBoxFunction(pos, ast) {
12773
- return new Function(ast.buffer.uint32[pos >> 2], ast);
12772
+ return new Function(ast.buffer.int32[pos >> 2], ast);
12774
12773
  }
12775
12774
 
12776
12775
  function constructBoxImportExpression(pos, ast) {
12777
- return new ImportExpression(ast.buffer.uint32[pos >> 2], ast);
12776
+ return new ImportExpression(ast.buffer.int32[pos >> 2], ast);
12778
12777
  }
12779
12778
 
12780
12779
  function constructBoxLogicalExpression(pos, ast) {
12781
- return new LogicalExpression(ast.buffer.uint32[pos >> 2], ast);
12780
+ return new LogicalExpression(ast.buffer.int32[pos >> 2], ast);
12782
12781
  }
12783
12782
 
12784
12783
  function constructBoxNewExpression(pos, ast) {
12785
- return new NewExpression(ast.buffer.uint32[pos >> 2], ast);
12784
+ return new NewExpression(ast.buffer.int32[pos >> 2], ast);
12786
12785
  }
12787
12786
 
12788
12787
  function constructBoxObjectExpression(pos, ast) {
12789
- return new ObjectExpression(ast.buffer.uint32[pos >> 2], ast);
12788
+ return new ObjectExpression(ast.buffer.int32[pos >> 2], ast);
12790
12789
  }
12791
12790
 
12792
12791
  function constructBoxParenthesizedExpression(pos, ast) {
12793
- return new ParenthesizedExpression(ast.buffer.uint32[pos >> 2], ast);
12792
+ return new ParenthesizedExpression(ast.buffer.int32[pos >> 2], ast);
12794
12793
  }
12795
12794
 
12796
12795
  function constructBoxSequenceExpression(pos, ast) {
12797
- return new SequenceExpression(ast.buffer.uint32[pos >> 2], ast);
12796
+ return new SequenceExpression(ast.buffer.int32[pos >> 2], ast);
12798
12797
  }
12799
12798
 
12800
12799
  function constructBoxTaggedTemplateExpression(pos, ast) {
12801
- return new TaggedTemplateExpression(ast.buffer.uint32[pos >> 2], ast);
12800
+ return new TaggedTemplateExpression(ast.buffer.int32[pos >> 2], ast);
12802
12801
  }
12803
12802
 
12804
12803
  function constructBoxThisExpression(pos, ast) {
12805
- return new ThisExpression(ast.buffer.uint32[pos >> 2], ast);
12804
+ return new ThisExpression(ast.buffer.int32[pos >> 2], ast);
12806
12805
  }
12807
12806
 
12808
12807
  function constructBoxUnaryExpression(pos, ast) {
12809
- return new UnaryExpression(ast.buffer.uint32[pos >> 2], ast);
12808
+ return new UnaryExpression(ast.buffer.int32[pos >> 2], ast);
12810
12809
  }
12811
12810
 
12812
12811
  function constructBoxUpdateExpression(pos, ast) {
12813
- return new UpdateExpression(ast.buffer.uint32[pos >> 2], ast);
12812
+ return new UpdateExpression(ast.buffer.int32[pos >> 2], ast);
12814
12813
  }
12815
12814
 
12816
12815
  function constructBoxYieldExpression(pos, ast) {
12817
- return new YieldExpression(ast.buffer.uint32[pos >> 2], ast);
12816
+ return new YieldExpression(ast.buffer.int32[pos >> 2], ast);
12818
12817
  }
12819
12818
 
12820
12819
  function constructBoxPrivateInExpression(pos, ast) {
12821
- return new PrivateInExpression(ast.buffer.uint32[pos >> 2], ast);
12820
+ return new PrivateInExpression(ast.buffer.int32[pos >> 2], ast);
12822
12821
  }
12823
12822
 
12824
12823
  function constructBoxJSXElement(pos, ast) {
12825
- return new JSXElement(ast.buffer.uint32[pos >> 2], ast);
12824
+ return new JSXElement(ast.buffer.int32[pos >> 2], ast);
12826
12825
  }
12827
12826
 
12828
12827
  function constructBoxJSXFragment(pos, ast) {
12829
- return new JSXFragment(ast.buffer.uint32[pos >> 2], ast);
12828
+ return new JSXFragment(ast.buffer.int32[pos >> 2], ast);
12830
12829
  }
12831
12830
 
12832
12831
  function constructBoxTSAsExpression(pos, ast) {
12833
- return new TSAsExpression(ast.buffer.uint32[pos >> 2], ast);
12832
+ return new TSAsExpression(ast.buffer.int32[pos >> 2], ast);
12834
12833
  }
12835
12834
 
12836
12835
  function constructBoxTSSatisfiesExpression(pos, ast) {
12837
- return new TSSatisfiesExpression(ast.buffer.uint32[pos >> 2], ast);
12836
+ return new TSSatisfiesExpression(ast.buffer.int32[pos >> 2], ast);
12838
12837
  }
12839
12838
 
12840
12839
  function constructBoxTSTypeAssertion(pos, ast) {
12841
- return new TSTypeAssertion(ast.buffer.uint32[pos >> 2], ast);
12840
+ return new TSTypeAssertion(ast.buffer.int32[pos >> 2], ast);
12842
12841
  }
12843
12842
 
12844
12843
  function constructBoxTSNonNullExpression(pos, ast) {
12845
- return new TSNonNullExpression(ast.buffer.uint32[pos >> 2], ast);
12844
+ return new TSNonNullExpression(ast.buffer.int32[pos >> 2], ast);
12846
12845
  }
12847
12846
 
12848
12847
  function constructBoxTSInstantiationExpression(pos, ast) {
12849
- return new TSInstantiationExpression(ast.buffer.uint32[pos >> 2], ast);
12848
+ return new TSInstantiationExpression(ast.buffer.int32[pos >> 2], ast);
12850
12849
  }
12851
12850
 
12852
12851
  function constructBoxV8IntrinsicExpression(pos, ast) {
12853
- return new V8IntrinsicExpression(ast.buffer.uint32[pos >> 2], ast);
12852
+ return new V8IntrinsicExpression(ast.buffer.int32[pos >> 2], ast);
12854
12853
  }
12855
12854
 
12856
12855
  function constructVecArrayExpressionElement(pos, ast) {
12857
- const { uint32 } = ast.buffer,
12856
+ const { int32 } = ast.buffer,
12858
12857
  pos32 = pos >> 2;
12859
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 24, constructArrayExpressionElement, ast);
12858
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 24, constructArrayExpressionElement, ast);
12860
12859
  }
12861
12860
 
12862
12861
  function constructBoxSpreadElement(pos, ast) {
12863
- return new SpreadElement(ast.buffer.uint32[pos >> 2], ast);
12862
+ return new SpreadElement(ast.buffer.int32[pos >> 2], ast);
12864
12863
  }
12865
12864
 
12866
12865
  function constructVecObjectPropertyKind(pos, ast) {
12867
- const { uint32 } = ast.buffer,
12866
+ const { int32 } = ast.buffer,
12868
12867
  pos32 = pos >> 2;
12869
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructObjectPropertyKind, ast);
12868
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructObjectPropertyKind, ast);
12870
12869
  }
12871
12870
 
12872
12871
  function constructBoxObjectProperty(pos, ast) {
12873
- return new ObjectProperty(ast.buffer.uint32[pos >> 2], ast);
12872
+ return new ObjectProperty(ast.buffer.int32[pos >> 2], ast);
12874
12873
  }
12875
12874
 
12876
12875
  function constructBool(pos, ast) {
@@ -12878,17 +12877,17 @@ function constructBool(pos, ast) {
12878
12877
  }
12879
12878
 
12880
12879
  function constructBoxIdentifierName(pos, ast) {
12881
- return new IdentifierName(ast.buffer.uint32[pos >> 2], ast);
12880
+ return new IdentifierName(ast.buffer.int32[pos >> 2], ast);
12882
12881
  }
12883
12882
 
12884
12883
  function constructBoxPrivateIdentifier(pos, ast) {
12885
- return new PrivateIdentifier(ast.buffer.uint32[pos >> 2], ast);
12884
+ return new PrivateIdentifier(ast.buffer.int32[pos >> 2], ast);
12886
12885
  }
12887
12886
 
12888
12887
  function constructVecTemplateElement(pos, ast) {
12889
- const { uint32 } = ast.buffer,
12888
+ const { int32 } = ast.buffer,
12890
12889
  pos32 = pos >> 2;
12891
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 48, constructTemplateElement, ast);
12890
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 48, constructTemplateElement, ast);
12892
12891
  }
12893
12892
 
12894
12893
  function constructTemplateElement(pos, ast) {
@@ -12896,49 +12895,49 @@ function constructTemplateElement(pos, ast) {
12896
12895
  }
12897
12896
 
12898
12897
  function constructVecExpression(pos, ast) {
12899
- const { uint32 } = ast.buffer,
12898
+ const { int32 } = ast.buffer,
12900
12899
  pos32 = pos >> 2;
12901
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructExpression, ast);
12900
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructExpression, ast);
12902
12901
  }
12903
12902
 
12904
12903
  function constructBoxTSTypeParameterInstantiation(pos, ast) {
12905
- return new TSTypeParameterInstantiation(ast.buffer.uint32[pos >> 2], ast);
12904
+ return new TSTypeParameterInstantiation(ast.buffer.int32[pos >> 2], ast);
12906
12905
  }
12907
12906
 
12908
12907
  function constructOptionBoxTSTypeParameterInstantiation(pos, ast) {
12909
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
12908
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
12910
12909
  return constructBoxTSTypeParameterInstantiation(pos, ast);
12911
12910
  }
12912
12911
 
12913
12912
  function constructOptionStr(pos, ast) {
12914
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
12913
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
12915
12914
  return constructStr(pos, ast);
12916
12915
  }
12917
12916
 
12918
12917
  function constructBoxComputedMemberExpression(pos, ast) {
12919
- return new ComputedMemberExpression(ast.buffer.uint32[pos >> 2], ast);
12918
+ return new ComputedMemberExpression(ast.buffer.int32[pos >> 2], ast);
12920
12919
  }
12921
12920
 
12922
12921
  function constructBoxStaticMemberExpression(pos, ast) {
12923
- return new StaticMemberExpression(ast.buffer.uint32[pos >> 2], ast);
12922
+ return new StaticMemberExpression(ast.buffer.int32[pos >> 2], ast);
12924
12923
  }
12925
12924
 
12926
12925
  function constructBoxPrivateFieldExpression(pos, ast) {
12927
- return new PrivateFieldExpression(ast.buffer.uint32[pos >> 2], ast);
12926
+ return new PrivateFieldExpression(ast.buffer.int32[pos >> 2], ast);
12928
12927
  }
12929
12928
 
12930
12929
  function constructVecArgument(pos, ast) {
12931
- const { uint32 } = ast.buffer,
12930
+ const { int32 } = ast.buffer,
12932
12931
  pos32 = pos >> 2;
12933
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructArgument, ast);
12932
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructArgument, ast);
12934
12933
  }
12935
12934
 
12936
12935
  function constructBoxArrayAssignmentTarget(pos, ast) {
12937
- return new ArrayAssignmentTarget(ast.buffer.uint32[pos >> 2], ast);
12936
+ return new ArrayAssignmentTarget(ast.buffer.int32[pos >> 2], ast);
12938
12937
  }
12939
12938
 
12940
12939
  function constructBoxObjectAssignmentTarget(pos, ast) {
12941
- return new ObjectAssignmentTarget(ast.buffer.uint32[pos >> 2], ast);
12940
+ return new ObjectAssignmentTarget(ast.buffer.int32[pos >> 2], ast);
12942
12941
  }
12943
12942
 
12944
12943
  function constructOptionAssignmentTargetMaybeDefault(pos, ast) {
@@ -12947,11 +12946,11 @@ function constructOptionAssignmentTargetMaybeDefault(pos, ast) {
12947
12946
  }
12948
12947
 
12949
12948
  function constructVecOptionAssignmentTargetMaybeDefault(pos, ast) {
12950
- const { uint32 } = ast.buffer,
12949
+ const { int32 } = ast.buffer,
12951
12950
  pos32 = pos >> 2;
12952
12951
  return new NodeArray(
12953
- uint32[pos32],
12954
- uint32[pos32 + 2],
12952
+ int32[pos32],
12953
+ int32[pos32 + 2],
12955
12954
  16,
12956
12955
  constructOptionAssignmentTargetMaybeDefault,
12957
12956
  ast,
@@ -12959,36 +12958,30 @@ function constructVecOptionAssignmentTargetMaybeDefault(pos, ast) {
12959
12958
  }
12960
12959
 
12961
12960
  function constructBoxAssignmentTargetRest(pos, ast) {
12962
- return new AssignmentTargetRest(ast.buffer.uint32[pos >> 2], ast);
12961
+ return new AssignmentTargetRest(ast.buffer.int32[pos >> 2], ast);
12963
12962
  }
12964
12963
 
12965
12964
  function constructOptionBoxAssignmentTargetRest(pos, ast) {
12966
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
12965
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
12967
12966
  return constructBoxAssignmentTargetRest(pos, ast);
12968
12967
  }
12969
12968
 
12970
12969
  function constructVecAssignmentTargetProperty(pos, ast) {
12971
- const { uint32 } = ast.buffer,
12970
+ const { int32 } = ast.buffer,
12972
12971
  pos32 = pos >> 2;
12973
- return new NodeArray(
12974
- uint32[pos32],
12975
- uint32[pos32 + 2],
12976
- 16,
12977
- constructAssignmentTargetProperty,
12978
- ast,
12979
- );
12972
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructAssignmentTargetProperty, ast);
12980
12973
  }
12981
12974
 
12982
12975
  function constructBoxAssignmentTargetWithDefault(pos, ast) {
12983
- return new AssignmentTargetWithDefault(ast.buffer.uint32[pos >> 2], ast);
12976
+ return new AssignmentTargetWithDefault(ast.buffer.int32[pos >> 2], ast);
12984
12977
  }
12985
12978
 
12986
12979
  function constructBoxAssignmentTargetPropertyIdentifier(pos, ast) {
12987
- return new AssignmentTargetPropertyIdentifier(ast.buffer.uint32[pos >> 2], ast);
12980
+ return new AssignmentTargetPropertyIdentifier(ast.buffer.int32[pos >> 2], ast);
12988
12981
  }
12989
12982
 
12990
12983
  function constructBoxAssignmentTargetPropertyProperty(pos, ast) {
12991
- return new AssignmentTargetPropertyProperty(ast.buffer.uint32[pos >> 2], ast);
12984
+ return new AssignmentTargetPropertyProperty(ast.buffer.int32[pos >> 2], ast);
12992
12985
  }
12993
12986
 
12994
12987
  function constructOptionExpression(pos, ast) {
@@ -12997,109 +12990,109 @@ function constructOptionExpression(pos, ast) {
12997
12990
  }
12998
12991
 
12999
12992
  function constructBoxBlockStatement(pos, ast) {
13000
- return new BlockStatement(ast.buffer.uint32[pos >> 2], ast);
12993
+ return new BlockStatement(ast.buffer.int32[pos >> 2], ast);
13001
12994
  }
13002
12995
 
13003
12996
  function constructBoxBreakStatement(pos, ast) {
13004
- return new BreakStatement(ast.buffer.uint32[pos >> 2], ast);
12997
+ return new BreakStatement(ast.buffer.int32[pos >> 2], ast);
13005
12998
  }
13006
12999
 
13007
13000
  function constructBoxContinueStatement(pos, ast) {
13008
- return new ContinueStatement(ast.buffer.uint32[pos >> 2], ast);
13001
+ return new ContinueStatement(ast.buffer.int32[pos >> 2], ast);
13009
13002
  }
13010
13003
 
13011
13004
  function constructBoxDebuggerStatement(pos, ast) {
13012
- return new DebuggerStatement(ast.buffer.uint32[pos >> 2], ast);
13005
+ return new DebuggerStatement(ast.buffer.int32[pos >> 2], ast);
13013
13006
  }
13014
13007
 
13015
13008
  function constructBoxDoWhileStatement(pos, ast) {
13016
- return new DoWhileStatement(ast.buffer.uint32[pos >> 2], ast);
13009
+ return new DoWhileStatement(ast.buffer.int32[pos >> 2], ast);
13017
13010
  }
13018
13011
 
13019
13012
  function constructBoxEmptyStatement(pos, ast) {
13020
- return new EmptyStatement(ast.buffer.uint32[pos >> 2], ast);
13013
+ return new EmptyStatement(ast.buffer.int32[pos >> 2], ast);
13021
13014
  }
13022
13015
 
13023
13016
  function constructBoxExpressionStatement(pos, ast) {
13024
- return new ExpressionStatement(ast.buffer.uint32[pos >> 2], ast);
13017
+ return new ExpressionStatement(ast.buffer.int32[pos >> 2], ast);
13025
13018
  }
13026
13019
 
13027
13020
  function constructBoxForInStatement(pos, ast) {
13028
- return new ForInStatement(ast.buffer.uint32[pos >> 2], ast);
13021
+ return new ForInStatement(ast.buffer.int32[pos >> 2], ast);
13029
13022
  }
13030
13023
 
13031
13024
  function constructBoxForOfStatement(pos, ast) {
13032
- return new ForOfStatement(ast.buffer.uint32[pos >> 2], ast);
13025
+ return new ForOfStatement(ast.buffer.int32[pos >> 2], ast);
13033
13026
  }
13034
13027
 
13035
13028
  function constructBoxForStatement(pos, ast) {
13036
- return new ForStatement(ast.buffer.uint32[pos >> 2], ast);
13029
+ return new ForStatement(ast.buffer.int32[pos >> 2], ast);
13037
13030
  }
13038
13031
 
13039
13032
  function constructBoxIfStatement(pos, ast) {
13040
- return new IfStatement(ast.buffer.uint32[pos >> 2], ast);
13033
+ return new IfStatement(ast.buffer.int32[pos >> 2], ast);
13041
13034
  }
13042
13035
 
13043
13036
  function constructBoxLabeledStatement(pos, ast) {
13044
- return new LabeledStatement(ast.buffer.uint32[pos >> 2], ast);
13037
+ return new LabeledStatement(ast.buffer.int32[pos >> 2], ast);
13045
13038
  }
13046
13039
 
13047
13040
  function constructBoxReturnStatement(pos, ast) {
13048
- return new ReturnStatement(ast.buffer.uint32[pos >> 2], ast);
13041
+ return new ReturnStatement(ast.buffer.int32[pos >> 2], ast);
13049
13042
  }
13050
13043
 
13051
13044
  function constructBoxSwitchStatement(pos, ast) {
13052
- return new SwitchStatement(ast.buffer.uint32[pos >> 2], ast);
13045
+ return new SwitchStatement(ast.buffer.int32[pos >> 2], ast);
13053
13046
  }
13054
13047
 
13055
13048
  function constructBoxThrowStatement(pos, ast) {
13056
- return new ThrowStatement(ast.buffer.uint32[pos >> 2], ast);
13049
+ return new ThrowStatement(ast.buffer.int32[pos >> 2], ast);
13057
13050
  }
13058
13051
 
13059
13052
  function constructBoxTryStatement(pos, ast) {
13060
- return new TryStatement(ast.buffer.uint32[pos >> 2], ast);
13053
+ return new TryStatement(ast.buffer.int32[pos >> 2], ast);
13061
13054
  }
13062
13055
 
13063
13056
  function constructBoxWhileStatement(pos, ast) {
13064
- return new WhileStatement(ast.buffer.uint32[pos >> 2], ast);
13057
+ return new WhileStatement(ast.buffer.int32[pos >> 2], ast);
13065
13058
  }
13066
13059
 
13067
13060
  function constructBoxWithStatement(pos, ast) {
13068
- return new WithStatement(ast.buffer.uint32[pos >> 2], ast);
13061
+ return new WithStatement(ast.buffer.int32[pos >> 2], ast);
13069
13062
  }
13070
13063
 
13071
13064
  function constructBoxVariableDeclaration(pos, ast) {
13072
- return new VariableDeclaration(ast.buffer.uint32[pos >> 2], ast);
13065
+ return new VariableDeclaration(ast.buffer.int32[pos >> 2], ast);
13073
13066
  }
13074
13067
 
13075
13068
  function constructBoxTSTypeAliasDeclaration(pos, ast) {
13076
- return new TSTypeAliasDeclaration(ast.buffer.uint32[pos >> 2], ast);
13069
+ return new TSTypeAliasDeclaration(ast.buffer.int32[pos >> 2], ast);
13077
13070
  }
13078
13071
 
13079
13072
  function constructBoxTSInterfaceDeclaration(pos, ast) {
13080
- return new TSInterfaceDeclaration(ast.buffer.uint32[pos >> 2], ast);
13073
+ return new TSInterfaceDeclaration(ast.buffer.int32[pos >> 2], ast);
13081
13074
  }
13082
13075
 
13083
13076
  function constructBoxTSEnumDeclaration(pos, ast) {
13084
- return new TSEnumDeclaration(ast.buffer.uint32[pos >> 2], ast);
13077
+ return new TSEnumDeclaration(ast.buffer.int32[pos >> 2], ast);
13085
13078
  }
13086
13079
 
13087
13080
  function constructBoxTSModuleDeclaration(pos, ast) {
13088
- return new TSModuleDeclaration(ast.buffer.uint32[pos >> 2], ast);
13081
+ return new TSModuleDeclaration(ast.buffer.int32[pos >> 2], ast);
13089
13082
  }
13090
13083
 
13091
13084
  function constructBoxTSGlobalDeclaration(pos, ast) {
13092
- return new TSGlobalDeclaration(ast.buffer.uint32[pos >> 2], ast);
13085
+ return new TSGlobalDeclaration(ast.buffer.int32[pos >> 2], ast);
13093
13086
  }
13094
13087
 
13095
13088
  function constructBoxTSImportEqualsDeclaration(pos, ast) {
13096
- return new TSImportEqualsDeclaration(ast.buffer.uint32[pos >> 2], ast);
13089
+ return new TSImportEqualsDeclaration(ast.buffer.int32[pos >> 2], ast);
13097
13090
  }
13098
13091
 
13099
13092
  function constructVecVariableDeclarator(pos, ast) {
13100
- const { uint32 } = ast.buffer,
13093
+ const { int32 } = ast.buffer,
13101
13094
  pos32 = pos >> 2;
13102
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 56, constructVariableDeclarator, ast);
13095
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 56, constructVariableDeclarator, ast);
13103
13096
  }
13104
13097
 
13105
13098
  function constructVariableDeclarator(pos, ast) {
@@ -13107,11 +13100,11 @@ function constructVariableDeclarator(pos, ast) {
13107
13100
  }
13108
13101
 
13109
13102
  function constructBoxTSTypeAnnotation(pos, ast) {
13110
- return new TSTypeAnnotation(ast.buffer.uint32[pos >> 2], ast);
13103
+ return new TSTypeAnnotation(ast.buffer.int32[pos >> 2], ast);
13111
13104
  }
13112
13105
 
13113
13106
  function constructOptionBoxTSTypeAnnotation(pos, ast) {
13114
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13107
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13115
13108
  return constructBoxTSTypeAnnotation(pos, ast);
13116
13109
  }
13117
13110
 
@@ -13126,15 +13119,14 @@ function constructOptionForStatementInit(pos, ast) {
13126
13119
  }
13127
13120
 
13128
13121
  function constructOptionLabelIdentifier(pos, ast) {
13129
- if (ast.buffer.uint32[(pos + 16) >> 2] === 0 && ast.buffer.uint32[(pos + 20) >> 2] === 0)
13130
- return null;
13122
+ if (ast.buffer.int32[(pos >> 2) + 4] === 0 && ast.buffer.int32[(pos >> 2) + 5] === 0) return null;
13131
13123
  return new LabelIdentifier(pos, ast);
13132
13124
  }
13133
13125
 
13134
13126
  function constructVecSwitchCase(pos, ast) {
13135
- const { uint32 } = ast.buffer,
13127
+ const { int32 } = ast.buffer,
13136
13128
  pos32 = pos >> 2;
13137
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 56, constructSwitchCase, ast);
13129
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 56, constructSwitchCase, ast);
13138
13130
  }
13139
13131
 
13140
13132
  function constructSwitchCase(pos, ast) {
@@ -13142,16 +13134,16 @@ function constructSwitchCase(pos, ast) {
13142
13134
  }
13143
13135
 
13144
13136
  function constructBoxCatchClause(pos, ast) {
13145
- return new CatchClause(ast.buffer.uint32[pos >> 2], ast);
13137
+ return new CatchClause(ast.buffer.int32[pos >> 2], ast);
13146
13138
  }
13147
13139
 
13148
13140
  function constructOptionBoxCatchClause(pos, ast) {
13149
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13141
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13150
13142
  return constructBoxCatchClause(pos, ast);
13151
13143
  }
13152
13144
 
13153
13145
  function constructOptionBoxBlockStatement(pos, ast) {
13154
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13146
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13155
13147
  return constructBoxBlockStatement(pos, ast);
13156
13148
  }
13157
13149
 
@@ -13161,25 +13153,25 @@ function constructOptionCatchParameter(pos, ast) {
13161
13153
  }
13162
13154
 
13163
13155
  function constructBoxBindingIdentifier(pos, ast) {
13164
- return new BindingIdentifier(ast.buffer.uint32[pos >> 2], ast);
13156
+ return new BindingIdentifier(ast.buffer.int32[pos >> 2], ast);
13165
13157
  }
13166
13158
 
13167
13159
  function constructBoxObjectPattern(pos, ast) {
13168
- return new ObjectPattern(ast.buffer.uint32[pos >> 2], ast);
13160
+ return new ObjectPattern(ast.buffer.int32[pos >> 2], ast);
13169
13161
  }
13170
13162
 
13171
13163
  function constructBoxArrayPattern(pos, ast) {
13172
- return new ArrayPattern(ast.buffer.uint32[pos >> 2], ast);
13164
+ return new ArrayPattern(ast.buffer.int32[pos >> 2], ast);
13173
13165
  }
13174
13166
 
13175
13167
  function constructBoxAssignmentPattern(pos, ast) {
13176
- return new AssignmentPattern(ast.buffer.uint32[pos >> 2], ast);
13168
+ return new AssignmentPattern(ast.buffer.int32[pos >> 2], ast);
13177
13169
  }
13178
13170
 
13179
13171
  function constructVecBindingProperty(pos, ast) {
13180
- const { uint32 } = ast.buffer,
13172
+ const { int32 } = ast.buffer,
13181
13173
  pos32 = pos >> 2;
13182
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 48, constructBindingProperty, ast);
13174
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 48, constructBindingProperty, ast);
13183
13175
  }
13184
13176
 
13185
13177
  function constructBindingProperty(pos, ast) {
@@ -13187,11 +13179,11 @@ function constructBindingProperty(pos, ast) {
13187
13179
  }
13188
13180
 
13189
13181
  function constructBoxBindingRestElement(pos, ast) {
13190
- return new BindingRestElement(ast.buffer.uint32[pos >> 2], ast);
13182
+ return new BindingRestElement(ast.buffer.int32[pos >> 2], ast);
13191
13183
  }
13192
13184
 
13193
13185
  function constructOptionBoxBindingRestElement(pos, ast) {
13194
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13186
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13195
13187
  return constructBoxBindingRestElement(pos, ast);
13196
13188
  }
13197
13189
 
@@ -13201,52 +13193,51 @@ function constructOptionBindingPattern(pos, ast) {
13201
13193
  }
13202
13194
 
13203
13195
  function constructVecOptionBindingPattern(pos, ast) {
13204
- const { uint32 } = ast.buffer,
13196
+ const { int32 } = ast.buffer,
13205
13197
  pos32 = pos >> 2;
13206
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructOptionBindingPattern, ast);
13198
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructOptionBindingPattern, ast);
13207
13199
  }
13208
13200
 
13209
13201
  function constructOptionBindingIdentifier(pos, ast) {
13210
- if (ast.buffer.uint32[(pos + 16) >> 2] === 0 && ast.buffer.uint32[(pos + 20) >> 2] === 0)
13211
- return null;
13202
+ if (ast.buffer.int32[(pos >> 2) + 4] === 0 && ast.buffer.int32[(pos >> 2) + 5] === 0) return null;
13212
13203
  return new BindingIdentifier(pos, ast);
13213
13204
  }
13214
13205
 
13215
13206
  function constructBoxTSTypeParameterDeclaration(pos, ast) {
13216
- return new TSTypeParameterDeclaration(ast.buffer.uint32[pos >> 2], ast);
13207
+ return new TSTypeParameterDeclaration(ast.buffer.int32[pos >> 2], ast);
13217
13208
  }
13218
13209
 
13219
13210
  function constructOptionBoxTSTypeParameterDeclaration(pos, ast) {
13220
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13211
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13221
13212
  return constructBoxTSTypeParameterDeclaration(pos, ast);
13222
13213
  }
13223
13214
 
13224
13215
  function constructBoxTSThisParameter(pos, ast) {
13225
- return new TSThisParameter(ast.buffer.uint32[pos >> 2], ast);
13216
+ return new TSThisParameter(ast.buffer.int32[pos >> 2], ast);
13226
13217
  }
13227
13218
 
13228
13219
  function constructOptionBoxTSThisParameter(pos, ast) {
13229
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13220
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13230
13221
  return constructBoxTSThisParameter(pos, ast);
13231
13222
  }
13232
13223
 
13233
13224
  function constructBoxFormalParameters(pos, ast) {
13234
- return new FormalParameters(ast.buffer.uint32[pos >> 2], ast);
13225
+ return new FormalParameters(ast.buffer.int32[pos >> 2], ast);
13235
13226
  }
13236
13227
 
13237
13228
  function constructBoxFunctionBody(pos, ast) {
13238
- return new FunctionBody(ast.buffer.uint32[pos >> 2], ast);
13229
+ return new FunctionBody(ast.buffer.int32[pos >> 2], ast);
13239
13230
  }
13240
13231
 
13241
13232
  function constructOptionBoxFunctionBody(pos, ast) {
13242
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13233
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13243
13234
  return constructBoxFunctionBody(pos, ast);
13244
13235
  }
13245
13236
 
13246
13237
  function constructVecFormalParameter(pos, ast) {
13247
- const { uint32 } = ast.buffer,
13238
+ const { int32 } = ast.buffer,
13248
13239
  pos32 = pos >> 2;
13249
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 72, constructFormalParameter, ast);
13240
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 72, constructFormalParameter, ast);
13250
13241
  }
13251
13242
 
13252
13243
  function constructFormalParameter(pos, ast) {
@@ -13254,9 +13245,9 @@ function constructFormalParameter(pos, ast) {
13254
13245
  }
13255
13246
 
13256
13247
  function constructVecDecorator(pos, ast) {
13257
- const { uint32 } = ast.buffer,
13248
+ const { int32 } = ast.buffer,
13258
13249
  pos32 = pos >> 2;
13259
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 32, constructDecorator, ast);
13250
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 32, constructDecorator, ast);
13260
13251
  }
13261
13252
 
13262
13253
  function constructDecorator(pos, ast) {
@@ -13264,11 +13255,11 @@ function constructDecorator(pos, ast) {
13264
13255
  }
13265
13256
 
13266
13257
  function constructBoxExpression(pos, ast) {
13267
- return constructExpression(ast.buffer.uint32[pos >> 2], ast);
13258
+ return constructExpression(ast.buffer.int32[pos >> 2], ast);
13268
13259
  }
13269
13260
 
13270
13261
  function constructOptionBoxExpression(pos, ast) {
13271
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13262
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13272
13263
  return constructBoxExpression(pos, ast);
13273
13264
  }
13274
13265
 
@@ -13278,9 +13269,9 @@ function constructOptionTSAccessibility(pos, ast) {
13278
13269
  }
13279
13270
 
13280
13271
  function constructVecTSClassImplements(pos, ast) {
13281
- const { uint32 } = ast.buffer,
13272
+ const { int32 } = ast.buffer,
13282
13273
  pos32 = pos >> 2;
13283
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 40, constructTSClassImplements, ast);
13274
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 40, constructTSClassImplements, ast);
13284
13275
  }
13285
13276
 
13286
13277
  function constructTSClassImplements(pos, ast) {
@@ -13288,57 +13279,57 @@ function constructTSClassImplements(pos, ast) {
13288
13279
  }
13289
13280
 
13290
13281
  function constructBoxClassBody(pos, ast) {
13291
- return new ClassBody(ast.buffer.uint32[pos >> 2], ast);
13282
+ return new ClassBody(ast.buffer.int32[pos >> 2], ast);
13292
13283
  }
13293
13284
 
13294
13285
  function constructVecClassElement(pos, ast) {
13295
- const { uint32 } = ast.buffer,
13286
+ const { int32 } = ast.buffer,
13296
13287
  pos32 = pos >> 2;
13297
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructClassElement, ast);
13288
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructClassElement, ast);
13298
13289
  }
13299
13290
 
13300
13291
  function constructBoxStaticBlock(pos, ast) {
13301
- return new StaticBlock(ast.buffer.uint32[pos >> 2], ast);
13292
+ return new StaticBlock(ast.buffer.int32[pos >> 2], ast);
13302
13293
  }
13303
13294
 
13304
13295
  function constructBoxMethodDefinition(pos, ast) {
13305
- return new MethodDefinition(ast.buffer.uint32[pos >> 2], ast);
13296
+ return new MethodDefinition(ast.buffer.int32[pos >> 2], ast);
13306
13297
  }
13307
13298
 
13308
13299
  function constructBoxPropertyDefinition(pos, ast) {
13309
- return new PropertyDefinition(ast.buffer.uint32[pos >> 2], ast);
13300
+ return new PropertyDefinition(ast.buffer.int32[pos >> 2], ast);
13310
13301
  }
13311
13302
 
13312
13303
  function constructBoxAccessorProperty(pos, ast) {
13313
- return new AccessorProperty(ast.buffer.uint32[pos >> 2], ast);
13304
+ return new AccessorProperty(ast.buffer.int32[pos >> 2], ast);
13314
13305
  }
13315
13306
 
13316
13307
  function constructBoxTSIndexSignature(pos, ast) {
13317
- return new TSIndexSignature(ast.buffer.uint32[pos >> 2], ast);
13308
+ return new TSIndexSignature(ast.buffer.int32[pos >> 2], ast);
13318
13309
  }
13319
13310
 
13320
13311
  function constructBoxImportDeclaration(pos, ast) {
13321
- return new ImportDeclaration(ast.buffer.uint32[pos >> 2], ast);
13312
+ return new ImportDeclaration(ast.buffer.int32[pos >> 2], ast);
13322
13313
  }
13323
13314
 
13324
13315
  function constructBoxExportAllDeclaration(pos, ast) {
13325
- return new ExportAllDeclaration(ast.buffer.uint32[pos >> 2], ast);
13316
+ return new ExportAllDeclaration(ast.buffer.int32[pos >> 2], ast);
13326
13317
  }
13327
13318
 
13328
13319
  function constructBoxExportDefaultDeclaration(pos, ast) {
13329
- return new ExportDefaultDeclaration(ast.buffer.uint32[pos >> 2], ast);
13320
+ return new ExportDefaultDeclaration(ast.buffer.int32[pos >> 2], ast);
13330
13321
  }
13331
13322
 
13332
13323
  function constructBoxExportNamedDeclaration(pos, ast) {
13333
- return new ExportNamedDeclaration(ast.buffer.uint32[pos >> 2], ast);
13324
+ return new ExportNamedDeclaration(ast.buffer.int32[pos >> 2], ast);
13334
13325
  }
13335
13326
 
13336
13327
  function constructBoxTSExportAssignment(pos, ast) {
13337
- return new TSExportAssignment(ast.buffer.uint32[pos >> 2], ast);
13328
+ return new TSExportAssignment(ast.buffer.int32[pos >> 2], ast);
13338
13329
  }
13339
13330
 
13340
13331
  function constructBoxTSNamespaceExportDeclaration(pos, ast) {
13341
- return new TSNamespaceExportDeclaration(ast.buffer.uint32[pos >> 2], ast);
13332
+ return new TSNamespaceExportDeclaration(ast.buffer.int32[pos >> 2], ast);
13342
13333
  }
13343
13334
 
13344
13335
  function constructOptionImportPhase(pos, ast) {
@@ -13347,11 +13338,11 @@ function constructOptionImportPhase(pos, ast) {
13347
13338
  }
13348
13339
 
13349
13340
  function constructVecImportDeclarationSpecifier(pos, ast) {
13350
- const { uint32 } = ast.buffer,
13341
+ const { int32 } = ast.buffer,
13351
13342
  pos32 = pos >> 2;
13352
13343
  return new NodeArray(
13353
- uint32[pos32],
13354
- uint32[pos32 + 2],
13344
+ int32[pos32],
13345
+ int32[pos32 + 2],
13355
13346
  16,
13356
13347
  constructImportDeclarationSpecifier,
13357
13348
  ast,
@@ -13359,35 +13350,35 @@ function constructVecImportDeclarationSpecifier(pos, ast) {
13359
13350
  }
13360
13351
 
13361
13352
  function constructOptionVecImportDeclarationSpecifier(pos, ast) {
13362
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13353
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13363
13354
  return constructVecImportDeclarationSpecifier(pos, ast);
13364
13355
  }
13365
13356
 
13366
13357
  function constructBoxWithClause(pos, ast) {
13367
- return new WithClause(ast.buffer.uint32[pos >> 2], ast);
13358
+ return new WithClause(ast.buffer.int32[pos >> 2], ast);
13368
13359
  }
13369
13360
 
13370
13361
  function constructOptionBoxWithClause(pos, ast) {
13371
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13362
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13372
13363
  return constructBoxWithClause(pos, ast);
13373
13364
  }
13374
13365
 
13375
13366
  function constructBoxImportSpecifier(pos, ast) {
13376
- return new ImportSpecifier(ast.buffer.uint32[pos >> 2], ast);
13367
+ return new ImportSpecifier(ast.buffer.int32[pos >> 2], ast);
13377
13368
  }
13378
13369
 
13379
13370
  function constructBoxImportDefaultSpecifier(pos, ast) {
13380
- return new ImportDefaultSpecifier(ast.buffer.uint32[pos >> 2], ast);
13371
+ return new ImportDefaultSpecifier(ast.buffer.int32[pos >> 2], ast);
13381
13372
  }
13382
13373
 
13383
13374
  function constructBoxImportNamespaceSpecifier(pos, ast) {
13384
- return new ImportNamespaceSpecifier(ast.buffer.uint32[pos >> 2], ast);
13375
+ return new ImportNamespaceSpecifier(ast.buffer.int32[pos >> 2], ast);
13385
13376
  }
13386
13377
 
13387
13378
  function constructVecImportAttribute(pos, ast) {
13388
- const { uint32 } = ast.buffer,
13379
+ const { int32 } = ast.buffer,
13389
13380
  pos32 = pos >> 2;
13390
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 120, constructImportAttribute, ast);
13381
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 120, constructImportAttribute, ast);
13391
13382
  }
13392
13383
 
13393
13384
  function constructImportAttribute(pos, ast) {
@@ -13400,9 +13391,9 @@ function constructOptionDeclaration(pos, ast) {
13400
13391
  }
13401
13392
 
13402
13393
  function constructVecExportSpecifier(pos, ast) {
13403
- const { uint32 } = ast.buffer,
13394
+ const { int32 } = ast.buffer,
13404
13395
  pos32 = pos >> 2;
13405
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 128, constructExportSpecifier, ast);
13396
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 128, constructExportSpecifier, ast);
13406
13397
  }
13407
13398
 
13408
13399
  function constructExportSpecifier(pos, ast) {
@@ -13428,48 +13419,48 @@ function constructU8(pos, ast) {
13428
13419
  }
13429
13420
 
13430
13421
  function constructBoxJSXOpeningElement(pos, ast) {
13431
- return new JSXOpeningElement(ast.buffer.uint32[pos >> 2], ast);
13422
+ return new JSXOpeningElement(ast.buffer.int32[pos >> 2], ast);
13432
13423
  }
13433
13424
 
13434
13425
  function constructVecJSXChild(pos, ast) {
13435
- const { uint32 } = ast.buffer,
13426
+ const { int32 } = ast.buffer,
13436
13427
  pos32 = pos >> 2;
13437
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructJSXChild, ast);
13428
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructJSXChild, ast);
13438
13429
  }
13439
13430
 
13440
13431
  function constructBoxJSXClosingElement(pos, ast) {
13441
- return new JSXClosingElement(ast.buffer.uint32[pos >> 2], ast);
13432
+ return new JSXClosingElement(ast.buffer.int32[pos >> 2], ast);
13442
13433
  }
13443
13434
 
13444
13435
  function constructOptionBoxJSXClosingElement(pos, ast) {
13445
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13436
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13446
13437
  return constructBoxJSXClosingElement(pos, ast);
13447
13438
  }
13448
13439
 
13449
13440
  function constructVecJSXAttributeItem(pos, ast) {
13450
- const { uint32 } = ast.buffer,
13441
+ const { int32 } = ast.buffer,
13451
13442
  pos32 = pos >> 2;
13452
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructJSXAttributeItem, ast);
13443
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructJSXAttributeItem, ast);
13453
13444
  }
13454
13445
 
13455
13446
  function constructBoxJSXIdentifier(pos, ast) {
13456
- return new JSXIdentifier(ast.buffer.uint32[pos >> 2], ast);
13447
+ return new JSXIdentifier(ast.buffer.int32[pos >> 2], ast);
13457
13448
  }
13458
13449
 
13459
13450
  function constructBoxJSXNamespacedName(pos, ast) {
13460
- return new JSXNamespacedName(ast.buffer.uint32[pos >> 2], ast);
13451
+ return new JSXNamespacedName(ast.buffer.int32[pos >> 2], ast);
13461
13452
  }
13462
13453
 
13463
13454
  function constructBoxJSXMemberExpression(pos, ast) {
13464
- return new JSXMemberExpression(ast.buffer.uint32[pos >> 2], ast);
13455
+ return new JSXMemberExpression(ast.buffer.int32[pos >> 2], ast);
13465
13456
  }
13466
13457
 
13467
13458
  function constructBoxJSXAttribute(pos, ast) {
13468
- return new JSXAttribute(ast.buffer.uint32[pos >> 2], ast);
13459
+ return new JSXAttribute(ast.buffer.int32[pos >> 2], ast);
13469
13460
  }
13470
13461
 
13471
13462
  function constructBoxJSXSpreadAttribute(pos, ast) {
13472
- return new JSXSpreadAttribute(ast.buffer.uint32[pos >> 2], ast);
13463
+ return new JSXSpreadAttribute(ast.buffer.int32[pos >> 2], ast);
13473
13464
  }
13474
13465
 
13475
13466
  function constructOptionJSXAttributeValue(pos, ast) {
@@ -13478,21 +13469,21 @@ function constructOptionJSXAttributeValue(pos, ast) {
13478
13469
  }
13479
13470
 
13480
13471
  function constructBoxJSXExpressionContainer(pos, ast) {
13481
- return new JSXExpressionContainer(ast.buffer.uint32[pos >> 2], ast);
13472
+ return new JSXExpressionContainer(ast.buffer.int32[pos >> 2], ast);
13482
13473
  }
13483
13474
 
13484
13475
  function constructBoxJSXText(pos, ast) {
13485
- return new JSXText(ast.buffer.uint32[pos >> 2], ast);
13476
+ return new JSXText(ast.buffer.int32[pos >> 2], ast);
13486
13477
  }
13487
13478
 
13488
13479
  function constructBoxJSXSpreadChild(pos, ast) {
13489
- return new JSXSpreadChild(ast.buffer.uint32[pos >> 2], ast);
13480
+ return new JSXSpreadChild(ast.buffer.int32[pos >> 2], ast);
13490
13481
  }
13491
13482
 
13492
13483
  function constructVecTSEnumMember(pos, ast) {
13493
- const { uint32 } = ast.buffer,
13484
+ const { int32 } = ast.buffer,
13494
13485
  pos32 = pos >> 2;
13495
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 48, constructTSEnumMember, ast);
13486
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 48, constructTSEnumMember, ast);
13496
13487
  }
13497
13488
 
13498
13489
  function constructTSEnumMember(pos, ast) {
@@ -13500,175 +13491,175 @@ function constructTSEnumMember(pos, ast) {
13500
13491
  }
13501
13492
 
13502
13493
  function constructBoxTSAnyKeyword(pos, ast) {
13503
- return new TSAnyKeyword(ast.buffer.uint32[pos >> 2], ast);
13494
+ return new TSAnyKeyword(ast.buffer.int32[pos >> 2], ast);
13504
13495
  }
13505
13496
 
13506
13497
  function constructBoxTSBigIntKeyword(pos, ast) {
13507
- return new TSBigIntKeyword(ast.buffer.uint32[pos >> 2], ast);
13498
+ return new TSBigIntKeyword(ast.buffer.int32[pos >> 2], ast);
13508
13499
  }
13509
13500
 
13510
13501
  function constructBoxTSBooleanKeyword(pos, ast) {
13511
- return new TSBooleanKeyword(ast.buffer.uint32[pos >> 2], ast);
13502
+ return new TSBooleanKeyword(ast.buffer.int32[pos >> 2], ast);
13512
13503
  }
13513
13504
 
13514
13505
  function constructBoxTSIntrinsicKeyword(pos, ast) {
13515
- return new TSIntrinsicKeyword(ast.buffer.uint32[pos >> 2], ast);
13506
+ return new TSIntrinsicKeyword(ast.buffer.int32[pos >> 2], ast);
13516
13507
  }
13517
13508
 
13518
13509
  function constructBoxTSNeverKeyword(pos, ast) {
13519
- return new TSNeverKeyword(ast.buffer.uint32[pos >> 2], ast);
13510
+ return new TSNeverKeyword(ast.buffer.int32[pos >> 2], ast);
13520
13511
  }
13521
13512
 
13522
13513
  function constructBoxTSNullKeyword(pos, ast) {
13523
- return new TSNullKeyword(ast.buffer.uint32[pos >> 2], ast);
13514
+ return new TSNullKeyword(ast.buffer.int32[pos >> 2], ast);
13524
13515
  }
13525
13516
 
13526
13517
  function constructBoxTSNumberKeyword(pos, ast) {
13527
- return new TSNumberKeyword(ast.buffer.uint32[pos >> 2], ast);
13518
+ return new TSNumberKeyword(ast.buffer.int32[pos >> 2], ast);
13528
13519
  }
13529
13520
 
13530
13521
  function constructBoxTSObjectKeyword(pos, ast) {
13531
- return new TSObjectKeyword(ast.buffer.uint32[pos >> 2], ast);
13522
+ return new TSObjectKeyword(ast.buffer.int32[pos >> 2], ast);
13532
13523
  }
13533
13524
 
13534
13525
  function constructBoxTSStringKeyword(pos, ast) {
13535
- return new TSStringKeyword(ast.buffer.uint32[pos >> 2], ast);
13526
+ return new TSStringKeyword(ast.buffer.int32[pos >> 2], ast);
13536
13527
  }
13537
13528
 
13538
13529
  function constructBoxTSSymbolKeyword(pos, ast) {
13539
- return new TSSymbolKeyword(ast.buffer.uint32[pos >> 2], ast);
13530
+ return new TSSymbolKeyword(ast.buffer.int32[pos >> 2], ast);
13540
13531
  }
13541
13532
 
13542
13533
  function constructBoxTSUndefinedKeyword(pos, ast) {
13543
- return new TSUndefinedKeyword(ast.buffer.uint32[pos >> 2], ast);
13534
+ return new TSUndefinedKeyword(ast.buffer.int32[pos >> 2], ast);
13544
13535
  }
13545
13536
 
13546
13537
  function constructBoxTSUnknownKeyword(pos, ast) {
13547
- return new TSUnknownKeyword(ast.buffer.uint32[pos >> 2], ast);
13538
+ return new TSUnknownKeyword(ast.buffer.int32[pos >> 2], ast);
13548
13539
  }
13549
13540
 
13550
13541
  function constructBoxTSVoidKeyword(pos, ast) {
13551
- return new TSVoidKeyword(ast.buffer.uint32[pos >> 2], ast);
13542
+ return new TSVoidKeyword(ast.buffer.int32[pos >> 2], ast);
13552
13543
  }
13553
13544
 
13554
13545
  function constructBoxTSArrayType(pos, ast) {
13555
- return new TSArrayType(ast.buffer.uint32[pos >> 2], ast);
13546
+ return new TSArrayType(ast.buffer.int32[pos >> 2], ast);
13556
13547
  }
13557
13548
 
13558
13549
  function constructBoxTSConditionalType(pos, ast) {
13559
- return new TSConditionalType(ast.buffer.uint32[pos >> 2], ast);
13550
+ return new TSConditionalType(ast.buffer.int32[pos >> 2], ast);
13560
13551
  }
13561
13552
 
13562
13553
  function constructBoxTSConstructorType(pos, ast) {
13563
- return new TSConstructorType(ast.buffer.uint32[pos >> 2], ast);
13554
+ return new TSConstructorType(ast.buffer.int32[pos >> 2], ast);
13564
13555
  }
13565
13556
 
13566
13557
  function constructBoxTSFunctionType(pos, ast) {
13567
- return new TSFunctionType(ast.buffer.uint32[pos >> 2], ast);
13558
+ return new TSFunctionType(ast.buffer.int32[pos >> 2], ast);
13568
13559
  }
13569
13560
 
13570
13561
  function constructBoxTSImportType(pos, ast) {
13571
- return new TSImportType(ast.buffer.uint32[pos >> 2], ast);
13562
+ return new TSImportType(ast.buffer.int32[pos >> 2], ast);
13572
13563
  }
13573
13564
 
13574
13565
  function constructBoxTSIndexedAccessType(pos, ast) {
13575
- return new TSIndexedAccessType(ast.buffer.uint32[pos >> 2], ast);
13566
+ return new TSIndexedAccessType(ast.buffer.int32[pos >> 2], ast);
13576
13567
  }
13577
13568
 
13578
13569
  function constructBoxTSInferType(pos, ast) {
13579
- return new TSInferType(ast.buffer.uint32[pos >> 2], ast);
13570
+ return new TSInferType(ast.buffer.int32[pos >> 2], ast);
13580
13571
  }
13581
13572
 
13582
13573
  function constructBoxTSIntersectionType(pos, ast) {
13583
- return new TSIntersectionType(ast.buffer.uint32[pos >> 2], ast);
13574
+ return new TSIntersectionType(ast.buffer.int32[pos >> 2], ast);
13584
13575
  }
13585
13576
 
13586
13577
  function constructBoxTSLiteralType(pos, ast) {
13587
- return new TSLiteralType(ast.buffer.uint32[pos >> 2], ast);
13578
+ return new TSLiteralType(ast.buffer.int32[pos >> 2], ast);
13588
13579
  }
13589
13580
 
13590
13581
  function constructBoxTSMappedType(pos, ast) {
13591
- return new TSMappedType(ast.buffer.uint32[pos >> 2], ast);
13582
+ return new TSMappedType(ast.buffer.int32[pos >> 2], ast);
13592
13583
  }
13593
13584
 
13594
13585
  function constructBoxTSNamedTupleMember(pos, ast) {
13595
- return new TSNamedTupleMember(ast.buffer.uint32[pos >> 2], ast);
13586
+ return new TSNamedTupleMember(ast.buffer.int32[pos >> 2], ast);
13596
13587
  }
13597
13588
 
13598
13589
  function constructBoxTSTemplateLiteralType(pos, ast) {
13599
- return new TSTemplateLiteralType(ast.buffer.uint32[pos >> 2], ast);
13590
+ return new TSTemplateLiteralType(ast.buffer.int32[pos >> 2], ast);
13600
13591
  }
13601
13592
 
13602
13593
  function constructBoxTSThisType(pos, ast) {
13603
- return new TSThisType(ast.buffer.uint32[pos >> 2], ast);
13594
+ return new TSThisType(ast.buffer.int32[pos >> 2], ast);
13604
13595
  }
13605
13596
 
13606
13597
  function constructBoxTSTupleType(pos, ast) {
13607
- return new TSTupleType(ast.buffer.uint32[pos >> 2], ast);
13598
+ return new TSTupleType(ast.buffer.int32[pos >> 2], ast);
13608
13599
  }
13609
13600
 
13610
13601
  function constructBoxTSTypeLiteral(pos, ast) {
13611
- return new TSTypeLiteral(ast.buffer.uint32[pos >> 2], ast);
13602
+ return new TSTypeLiteral(ast.buffer.int32[pos >> 2], ast);
13612
13603
  }
13613
13604
 
13614
13605
  function constructBoxTSTypeOperator(pos, ast) {
13615
- return new TSTypeOperator(ast.buffer.uint32[pos >> 2], ast);
13606
+ return new TSTypeOperator(ast.buffer.int32[pos >> 2], ast);
13616
13607
  }
13617
13608
 
13618
13609
  function constructBoxTSTypePredicate(pos, ast) {
13619
- return new TSTypePredicate(ast.buffer.uint32[pos >> 2], ast);
13610
+ return new TSTypePredicate(ast.buffer.int32[pos >> 2], ast);
13620
13611
  }
13621
13612
 
13622
13613
  function constructBoxTSTypeQuery(pos, ast) {
13623
- return new TSTypeQuery(ast.buffer.uint32[pos >> 2], ast);
13614
+ return new TSTypeQuery(ast.buffer.int32[pos >> 2], ast);
13624
13615
  }
13625
13616
 
13626
13617
  function constructBoxTSTypeReference(pos, ast) {
13627
- return new TSTypeReference(ast.buffer.uint32[pos >> 2], ast);
13618
+ return new TSTypeReference(ast.buffer.int32[pos >> 2], ast);
13628
13619
  }
13629
13620
 
13630
13621
  function constructBoxTSUnionType(pos, ast) {
13631
- return new TSUnionType(ast.buffer.uint32[pos >> 2], ast);
13622
+ return new TSUnionType(ast.buffer.int32[pos >> 2], ast);
13632
13623
  }
13633
13624
 
13634
13625
  function constructBoxTSParenthesizedType(pos, ast) {
13635
- return new TSParenthesizedType(ast.buffer.uint32[pos >> 2], ast);
13626
+ return new TSParenthesizedType(ast.buffer.int32[pos >> 2], ast);
13636
13627
  }
13637
13628
 
13638
13629
  function constructBoxJSDocNullableType(pos, ast) {
13639
- return new JSDocNullableType(ast.buffer.uint32[pos >> 2], ast);
13630
+ return new JSDocNullableType(ast.buffer.int32[pos >> 2], ast);
13640
13631
  }
13641
13632
 
13642
13633
  function constructBoxJSDocNonNullableType(pos, ast) {
13643
- return new JSDocNonNullableType(ast.buffer.uint32[pos >> 2], ast);
13634
+ return new JSDocNonNullableType(ast.buffer.int32[pos >> 2], ast);
13644
13635
  }
13645
13636
 
13646
13637
  function constructBoxJSDocUnknownType(pos, ast) {
13647
- return new JSDocUnknownType(ast.buffer.uint32[pos >> 2], ast);
13638
+ return new JSDocUnknownType(ast.buffer.int32[pos >> 2], ast);
13648
13639
  }
13649
13640
 
13650
13641
  function constructVecTSType(pos, ast) {
13651
- const { uint32 } = ast.buffer,
13642
+ const { int32 } = ast.buffer,
13652
13643
  pos32 = pos >> 2;
13653
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructTSType, ast);
13644
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructTSType, ast);
13654
13645
  }
13655
13646
 
13656
13647
  function constructVecTSTupleElement(pos, ast) {
13657
- const { uint32 } = ast.buffer,
13648
+ const { int32 } = ast.buffer,
13658
13649
  pos32 = pos >> 2;
13659
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructTSTupleElement, ast);
13650
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructTSTupleElement, ast);
13660
13651
  }
13661
13652
 
13662
13653
  function constructBoxTSOptionalType(pos, ast) {
13663
- return new TSOptionalType(ast.buffer.uint32[pos >> 2], ast);
13654
+ return new TSOptionalType(ast.buffer.int32[pos >> 2], ast);
13664
13655
  }
13665
13656
 
13666
13657
  function constructBoxTSRestType(pos, ast) {
13667
- return new TSRestType(ast.buffer.uint32[pos >> 2], ast);
13658
+ return new TSRestType(ast.buffer.int32[pos >> 2], ast);
13668
13659
  }
13669
13660
 
13670
13661
  function constructBoxTSQualifiedName(pos, ast) {
13671
- return new TSQualifiedName(ast.buffer.uint32[pos >> 2], ast);
13662
+ return new TSQualifiedName(ast.buffer.int32[pos >> 2], ast);
13672
13663
  }
13673
13664
 
13674
13665
  function constructOptionTSType(pos, ast) {
@@ -13677,9 +13668,9 @@ function constructOptionTSType(pos, ast) {
13677
13668
  }
13678
13669
 
13679
13670
  function constructVecTSTypeParameter(pos, ast) {
13680
- const { uint32 } = ast.buffer,
13671
+ const { int32 } = ast.buffer,
13681
13672
  pos32 = pos >> 2;
13682
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 80, constructTSTypeParameter, ast);
13673
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 80, constructTSTypeParameter, ast);
13683
13674
  }
13684
13675
 
13685
13676
  function constructTSTypeParameter(pos, ast) {
@@ -13687,9 +13678,9 @@ function constructTSTypeParameter(pos, ast) {
13687
13678
  }
13688
13679
 
13689
13680
  function constructVecTSInterfaceHeritage(pos, ast) {
13690
- const { uint32 } = ast.buffer,
13681
+ const { int32 } = ast.buffer,
13691
13682
  pos32 = pos >> 2;
13692
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 40, constructTSInterfaceHeritage, ast);
13683
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 40, constructTSInterfaceHeritage, ast);
13693
13684
  }
13694
13685
 
13695
13686
  function constructTSInterfaceHeritage(pos, ast) {
@@ -13697,35 +13688,35 @@ function constructTSInterfaceHeritage(pos, ast) {
13697
13688
  }
13698
13689
 
13699
13690
  function constructBoxTSInterfaceBody(pos, ast) {
13700
- return new TSInterfaceBody(ast.buffer.uint32[pos >> 2], ast);
13691
+ return new TSInterfaceBody(ast.buffer.int32[pos >> 2], ast);
13701
13692
  }
13702
13693
 
13703
13694
  function constructVecTSSignature(pos, ast) {
13704
- const { uint32 } = ast.buffer,
13695
+ const { int32 } = ast.buffer,
13705
13696
  pos32 = pos >> 2;
13706
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructTSSignature, ast);
13697
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructTSSignature, ast);
13707
13698
  }
13708
13699
 
13709
13700
  function constructBoxTSPropertySignature(pos, ast) {
13710
- return new TSPropertySignature(ast.buffer.uint32[pos >> 2], ast);
13701
+ return new TSPropertySignature(ast.buffer.int32[pos >> 2], ast);
13711
13702
  }
13712
13703
 
13713
13704
  function constructBoxTSCallSignatureDeclaration(pos, ast) {
13714
- return new TSCallSignatureDeclaration(ast.buffer.uint32[pos >> 2], ast);
13705
+ return new TSCallSignatureDeclaration(ast.buffer.int32[pos >> 2], ast);
13715
13706
  }
13716
13707
 
13717
13708
  function constructBoxTSConstructSignatureDeclaration(pos, ast) {
13718
- return new TSConstructSignatureDeclaration(ast.buffer.uint32[pos >> 2], ast);
13709
+ return new TSConstructSignatureDeclaration(ast.buffer.int32[pos >> 2], ast);
13719
13710
  }
13720
13711
 
13721
13712
  function constructBoxTSMethodSignature(pos, ast) {
13722
- return new TSMethodSignature(ast.buffer.uint32[pos >> 2], ast);
13713
+ return new TSMethodSignature(ast.buffer.int32[pos >> 2], ast);
13723
13714
  }
13724
13715
 
13725
13716
  function constructVecTSIndexSignatureName(pos, ast) {
13726
- const { uint32 } = ast.buffer,
13717
+ const { int32 } = ast.buffer,
13727
13718
  pos32 = pos >> 2;
13728
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 40, constructTSIndexSignatureName, ast);
13719
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 40, constructTSIndexSignatureName, ast);
13729
13720
  }
13730
13721
 
13731
13722
  function constructTSIndexSignatureName(pos, ast) {
@@ -13738,15 +13729,15 @@ function constructOptionTSModuleDeclarationBody(pos, ast) {
13738
13729
  }
13739
13730
 
13740
13731
  function constructBoxTSModuleBlock(pos, ast) {
13741
- return new TSModuleBlock(ast.buffer.uint32[pos >> 2], ast);
13732
+ return new TSModuleBlock(ast.buffer.int32[pos >> 2], ast);
13742
13733
  }
13743
13734
 
13744
13735
  function constructBoxTSTypeParameter(pos, ast) {
13745
- return new TSTypeParameter(ast.buffer.uint32[pos >> 2], ast);
13736
+ return new TSTypeParameter(ast.buffer.int32[pos >> 2], ast);
13746
13737
  }
13747
13738
 
13748
13739
  function constructOptionBoxObjectExpression(pos, ast) {
13749
- if (ast.buffer.uint32[pos >> 2] === 0 && ast.buffer.uint32[(pos + 4) >> 2] === 0) return null;
13740
+ if (ast.buffer.int32[pos >> 2] === 0 && ast.buffer.int32[(pos >> 2) + 1] === 0) return null;
13750
13741
  return constructBoxObjectExpression(pos, ast);
13751
13742
  }
13752
13743
 
@@ -13756,7 +13747,7 @@ function constructOptionTSImportTypeQualifier(pos, ast) {
13756
13747
  }
13757
13748
 
13758
13749
  function constructBoxTSImportTypeQualifiedName(pos, ast) {
13759
- return new TSImportTypeQualifiedName(ast.buffer.uint32[pos >> 2], ast);
13750
+ return new TSImportTypeQualifiedName(ast.buffer.int32[pos >> 2], ast);
13760
13751
  }
13761
13752
 
13762
13753
  function constructOptionTSMappedTypeModifierOperator(pos, ast) {
@@ -13765,17 +13756,17 @@ function constructOptionTSMappedTypeModifierOperator(pos, ast) {
13765
13756
  }
13766
13757
 
13767
13758
  function constructBoxTSExternalModuleReference(pos, ast) {
13768
- return new TSExternalModuleReference(ast.buffer.uint32[pos >> 2], ast);
13759
+ return new TSExternalModuleReference(ast.buffer.int32[pos >> 2], ast);
13769
13760
  }
13770
13761
 
13771
13762
  function constructU32(pos, ast) {
13772
- return ast.buffer.uint32[pos >> 2];
13763
+ return ast.buffer.int32[pos >> 2] >>> 0;
13773
13764
  }
13774
13765
 
13775
13766
  function constructU64(pos, ast) {
13776
- const { uint32 } = ast.buffer,
13767
+ const { int32 } = ast.buffer,
13777
13768
  pos32 = pos >> 2;
13778
- return uint32[pos32] + uint32[pos32 + 1] * /* 2^32 */ 4294967296;
13769
+ return (int32[pos32] >>> 0) + (int32[pos32 + 1] >>> 0) * /* 2^32 */ 4294967296;
13779
13770
  }
13780
13771
 
13781
13772
  function constructOptionU64(pos, ast) {
@@ -13783,16 +13774,19 @@ function constructOptionU64(pos, ast) {
13783
13774
  return constructU64(pos + 8, ast);
13784
13775
  }
13785
13776
 
13777
+ function constructI32(pos, ast) {
13778
+ return ast.buffer.int32[pos >> 2];
13779
+ }
13780
+
13786
13781
  function constructOptionNameSpan(pos, ast) {
13787
- if (ast.buffer.uint32[(pos + 8) >> 2] === 0 && ast.buffer.uint32[(pos + 12) >> 2] === 0)
13788
- return null;
13782
+ if (ast.buffer.int32[(pos >> 2) + 2] === 0 && ast.buffer.int32[(pos >> 2) + 3] === 0) return null;
13789
13783
  return new NameSpan(pos, ast);
13790
13784
  }
13791
13785
 
13792
13786
  function constructVecError(pos, ast) {
13793
- const { uint32 } = ast.buffer,
13787
+ const { int32 } = ast.buffer,
13794
13788
  pos32 = pos >> 2;
13795
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 80, constructError, ast);
13789
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 80, constructError, ast);
13796
13790
  }
13797
13791
 
13798
13792
  function constructError(pos, ast) {
@@ -13800,9 +13794,9 @@ function constructError(pos, ast) {
13800
13794
  }
13801
13795
 
13802
13796
  function constructVecErrorLabel(pos, ast) {
13803
- const { uint32 } = ast.buffer,
13797
+ const { int32 } = ast.buffer,
13804
13798
  pos32 = pos >> 2;
13805
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 24, constructErrorLabel, ast);
13799
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 24, constructErrorLabel, ast);
13806
13800
  }
13807
13801
 
13808
13802
  function constructErrorLabel(pos, ast) {
@@ -13810,9 +13804,9 @@ function constructErrorLabel(pos, ast) {
13810
13804
  }
13811
13805
 
13812
13806
  function constructVecStaticImport(pos, ast) {
13813
- const { uint32 } = ast.buffer,
13807
+ const { int32 } = ast.buffer,
13814
13808
  pos32 = pos >> 2;
13815
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 56, constructStaticImport, ast);
13809
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 56, constructStaticImport, ast);
13816
13810
  }
13817
13811
 
13818
13812
  function constructStaticImport(pos, ast) {
@@ -13820,9 +13814,9 @@ function constructStaticImport(pos, ast) {
13820
13814
  }
13821
13815
 
13822
13816
  function constructVecStaticExport(pos, ast) {
13823
- const { uint32 } = ast.buffer,
13817
+ const { int32 } = ast.buffer,
13824
13818
  pos32 = pos >> 2;
13825
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 32, constructStaticExport, ast);
13819
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 32, constructStaticExport, ast);
13826
13820
  }
13827
13821
 
13828
13822
  function constructStaticExport(pos, ast) {
@@ -13830,9 +13824,9 @@ function constructStaticExport(pos, ast) {
13830
13824
  }
13831
13825
 
13832
13826
  function constructVecDynamicImport(pos, ast) {
13833
- const { uint32 } = ast.buffer,
13827
+ const { int32 } = ast.buffer,
13834
13828
  pos32 = pos >> 2;
13835
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 16, constructDynamicImport, ast);
13829
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructDynamicImport, ast);
13836
13830
  }
13837
13831
 
13838
13832
  function constructDynamicImport(pos, ast) {
@@ -13840,9 +13834,9 @@ function constructDynamicImport(pos, ast) {
13840
13834
  }
13841
13835
 
13842
13836
  function constructVecSpan(pos, ast) {
13843
- const { uint32 } = ast.buffer,
13837
+ const { int32 } = ast.buffer,
13844
13838
  pos32 = pos >> 2;
13845
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 8, constructSpan, ast);
13839
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 8, constructSpan, ast);
13846
13840
  }
13847
13841
 
13848
13842
  function constructSpan(pos, ast) {
@@ -13850,9 +13844,9 @@ function constructSpan(pos, ast) {
13850
13844
  }
13851
13845
 
13852
13846
  function constructVecImportEntry(pos, ast) {
13853
- const { uint32 } = ast.buffer,
13847
+ const { int32 } = ast.buffer,
13854
13848
  pos32 = pos >> 2;
13855
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 96, constructImportEntry, ast);
13849
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 96, constructImportEntry, ast);
13856
13850
  }
13857
13851
 
13858
13852
  function constructImportEntry(pos, ast) {
@@ -13860,9 +13854,9 @@ function constructImportEntry(pos, ast) {
13860
13854
  }
13861
13855
 
13862
13856
  function constructVecExportEntry(pos, ast) {
13863
- const { uint32 } = ast.buffer,
13857
+ const { int32 } = ast.buffer,
13864
13858
  pos32 = pos >> 2;
13865
- return new NodeArray(uint32[pos32], uint32[pos32 + 2], 144, constructExportEntry, ast);
13859
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 144, constructExportEntry, ast);
13866
13860
  }
13867
13861
 
13868
13862
  function constructExportEntry(pos, ast) {