oxc-parser 0.75.0 → 0.76.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.
- package/README.md +11 -0
- package/bindings.js +0 -3
- package/generated/deserialize/js.js +287 -287
- package/generated/deserialize/ts.js +300 -300
- package/generated/{deserialize/lazy.js → lazy/constructors.js} +206 -416
- package/generated/{deserialize/lazy-visit.js → lazy/walk.js} +1 -1
- package/index.d.ts +0 -68
- package/index.js +0 -1
- package/package.json +20 -20
- package/raw-transfer/lazy.js +7 -7
- package/raw-transfer/visitor.js +4 -4
- /package/generated/{deserialize/lazy-types.js → lazy/types.js} +0 -0
|
@@ -6,16 +6,6 @@
|
|
|
6
6
|
const { TOKEN, constructorError } = require('../../raw-transfer/lazy-common.js'),
|
|
7
7
|
NodeArray = require('../../raw-transfer/node-array.js');
|
|
8
8
|
|
|
9
|
-
const constructors = {};
|
|
10
|
-
|
|
11
|
-
module.exports = { construct, constructors };
|
|
12
|
-
|
|
13
|
-
function construct(ast) {
|
|
14
|
-
// (2 * 1024 * 1024 * 1024 - 16) >> 2
|
|
15
|
-
const metadataPos32 = 536870908;
|
|
16
|
-
return new RawTransferData(ast.buffer.uint32[metadataPos32], ast);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
9
|
const textDecoder = new TextDecoder('utf-8', { ignoreBOM: true }),
|
|
20
10
|
decodeStr = textDecoder.decode.bind(textDecoder),
|
|
21
11
|
{ fromCodePoint } = String,
|
|
@@ -81,8 +71,6 @@ class Program {
|
|
|
81
71
|
|
|
82
72
|
const DebugProgram = class Program {};
|
|
83
73
|
|
|
84
|
-
constructors.Program = Program;
|
|
85
|
-
|
|
86
74
|
function constructExpression(pos, ast) {
|
|
87
75
|
switch (ast.buffer[pos]) {
|
|
88
76
|
case 0:
|
|
@@ -224,8 +212,6 @@ class IdentifierName {
|
|
|
224
212
|
|
|
225
213
|
const DebugIdentifierName = class IdentifierName {};
|
|
226
214
|
|
|
227
|
-
constructors.IdentifierName = IdentifierName;
|
|
228
|
-
|
|
229
215
|
class IdentifierReference {
|
|
230
216
|
type = 'IdentifierReference';
|
|
231
217
|
#internal;
|
|
@@ -274,8 +260,6 @@ class IdentifierReference {
|
|
|
274
260
|
|
|
275
261
|
const DebugIdentifierReference = class IdentifierReference {};
|
|
276
262
|
|
|
277
|
-
constructors.IdentifierReference = IdentifierReference;
|
|
278
|
-
|
|
279
263
|
class BindingIdentifier {
|
|
280
264
|
type = 'BindingIdentifier';
|
|
281
265
|
#internal;
|
|
@@ -324,8 +308,6 @@ class BindingIdentifier {
|
|
|
324
308
|
|
|
325
309
|
const DebugBindingIdentifier = class BindingIdentifier {};
|
|
326
310
|
|
|
327
|
-
constructors.BindingIdentifier = BindingIdentifier;
|
|
328
|
-
|
|
329
311
|
class LabelIdentifier {
|
|
330
312
|
type = 'LabelIdentifier';
|
|
331
313
|
#internal;
|
|
@@ -374,8 +356,6 @@ class LabelIdentifier {
|
|
|
374
356
|
|
|
375
357
|
const DebugLabelIdentifier = class LabelIdentifier {};
|
|
376
358
|
|
|
377
|
-
constructors.LabelIdentifier = LabelIdentifier;
|
|
378
|
-
|
|
379
359
|
class ThisExpression {
|
|
380
360
|
type = 'ThisExpression';
|
|
381
361
|
#internal;
|
|
@@ -416,8 +396,6 @@ class ThisExpression {
|
|
|
416
396
|
|
|
417
397
|
const DebugThisExpression = class ThisExpression {};
|
|
418
398
|
|
|
419
|
-
constructors.ThisExpression = ThisExpression;
|
|
420
|
-
|
|
421
399
|
class ArrayExpression {
|
|
422
400
|
type = 'ArrayExpression';
|
|
423
401
|
#internal;
|
|
@@ -466,8 +444,6 @@ class ArrayExpression {
|
|
|
466
444
|
|
|
467
445
|
const DebugArrayExpression = class ArrayExpression {};
|
|
468
446
|
|
|
469
|
-
constructors.ArrayExpression = ArrayExpression;
|
|
470
|
-
|
|
471
447
|
function constructArrayExpressionElement(pos, ast) {
|
|
472
448
|
switch (ast.buffer[pos]) {
|
|
473
449
|
case 0:
|
|
@@ -605,8 +581,6 @@ class Elision {
|
|
|
605
581
|
|
|
606
582
|
const DebugElision = class Elision {};
|
|
607
583
|
|
|
608
|
-
constructors.Elision = Elision;
|
|
609
|
-
|
|
610
584
|
class ObjectExpression {
|
|
611
585
|
type = 'ObjectExpression';
|
|
612
586
|
#internal;
|
|
@@ -655,8 +629,6 @@ class ObjectExpression {
|
|
|
655
629
|
|
|
656
630
|
const DebugObjectExpression = class ObjectExpression {};
|
|
657
631
|
|
|
658
|
-
constructors.ObjectExpression = ObjectExpression;
|
|
659
|
-
|
|
660
632
|
function constructObjectPropertyKind(pos, ast) {
|
|
661
633
|
switch (ast.buffer[pos]) {
|
|
662
634
|
case 0:
|
|
@@ -744,8 +716,6 @@ class ObjectProperty {
|
|
|
744
716
|
|
|
745
717
|
const DebugObjectProperty = class ObjectProperty {};
|
|
746
718
|
|
|
747
|
-
constructors.ObjectProperty = ObjectProperty;
|
|
748
|
-
|
|
749
719
|
function constructPropertyKey(pos, ast) {
|
|
750
720
|
switch (ast.buffer[pos]) {
|
|
751
721
|
case 0:
|
|
@@ -912,8 +882,6 @@ class TemplateLiteral {
|
|
|
912
882
|
|
|
913
883
|
const DebugTemplateLiteral = class TemplateLiteral {};
|
|
914
884
|
|
|
915
|
-
constructors.TemplateLiteral = TemplateLiteral;
|
|
916
|
-
|
|
917
885
|
class TaggedTemplateExpression {
|
|
918
886
|
type = 'TaggedTemplateExpression';
|
|
919
887
|
#internal;
|
|
@@ -972,8 +940,6 @@ class TaggedTemplateExpression {
|
|
|
972
940
|
|
|
973
941
|
const DebugTaggedTemplateExpression = class TaggedTemplateExpression {};
|
|
974
942
|
|
|
975
|
-
constructors.TaggedTemplateExpression = TaggedTemplateExpression;
|
|
976
|
-
|
|
977
943
|
class TemplateElement {
|
|
978
944
|
type = 'TemplateElement';
|
|
979
945
|
#internal;
|
|
@@ -1026,8 +992,6 @@ class TemplateElement {
|
|
|
1026
992
|
|
|
1027
993
|
const DebugTemplateElement = class TemplateElement {};
|
|
1028
994
|
|
|
1029
|
-
constructors.TemplateElement = TemplateElement;
|
|
1030
|
-
|
|
1031
995
|
class TemplateElementValue {
|
|
1032
996
|
#internal;
|
|
1033
997
|
|
|
@@ -1070,8 +1034,6 @@ class TemplateElementValue {
|
|
|
1070
1034
|
|
|
1071
1035
|
const DebugTemplateElementValue = class TemplateElementValue {};
|
|
1072
1036
|
|
|
1073
|
-
constructors.TemplateElementValue = TemplateElementValue;
|
|
1074
|
-
|
|
1075
1037
|
function constructMemberExpression(pos, ast) {
|
|
1076
1038
|
switch (ast.buffer[pos]) {
|
|
1077
1039
|
case 48:
|
|
@@ -1143,8 +1105,6 @@ class ComputedMemberExpression {
|
|
|
1143
1105
|
|
|
1144
1106
|
const DebugComputedMemberExpression = class ComputedMemberExpression {};
|
|
1145
1107
|
|
|
1146
|
-
constructors.ComputedMemberExpression = ComputedMemberExpression;
|
|
1147
|
-
|
|
1148
1108
|
class StaticMemberExpression {
|
|
1149
1109
|
type = 'StaticMemberExpression';
|
|
1150
1110
|
#internal;
|
|
@@ -1203,8 +1163,6 @@ class StaticMemberExpression {
|
|
|
1203
1163
|
|
|
1204
1164
|
const DebugStaticMemberExpression = class StaticMemberExpression {};
|
|
1205
1165
|
|
|
1206
|
-
constructors.StaticMemberExpression = StaticMemberExpression;
|
|
1207
|
-
|
|
1208
1166
|
class PrivateFieldExpression {
|
|
1209
1167
|
type = 'PrivateFieldExpression';
|
|
1210
1168
|
#internal;
|
|
@@ -1263,8 +1221,6 @@ class PrivateFieldExpression {
|
|
|
1263
1221
|
|
|
1264
1222
|
const DebugPrivateFieldExpression = class PrivateFieldExpression {};
|
|
1265
1223
|
|
|
1266
|
-
constructors.PrivateFieldExpression = PrivateFieldExpression;
|
|
1267
|
-
|
|
1268
1224
|
class CallExpression {
|
|
1269
1225
|
type = 'CallExpression';
|
|
1270
1226
|
#internal;
|
|
@@ -1331,8 +1287,6 @@ class CallExpression {
|
|
|
1331
1287
|
|
|
1332
1288
|
const DebugCallExpression = class CallExpression {};
|
|
1333
1289
|
|
|
1334
|
-
constructors.CallExpression = CallExpression;
|
|
1335
|
-
|
|
1336
1290
|
class NewExpression {
|
|
1337
1291
|
type = 'NewExpression';
|
|
1338
1292
|
#internal;
|
|
@@ -1393,8 +1347,6 @@ class NewExpression {
|
|
|
1393
1347
|
|
|
1394
1348
|
const DebugNewExpression = class NewExpression {};
|
|
1395
1349
|
|
|
1396
|
-
constructors.NewExpression = NewExpression;
|
|
1397
|
-
|
|
1398
1350
|
class MetaProperty {
|
|
1399
1351
|
type = 'MetaProperty';
|
|
1400
1352
|
#internal;
|
|
@@ -1447,8 +1399,6 @@ class MetaProperty {
|
|
|
1447
1399
|
|
|
1448
1400
|
const DebugMetaProperty = class MetaProperty {};
|
|
1449
1401
|
|
|
1450
|
-
constructors.MetaProperty = MetaProperty;
|
|
1451
|
-
|
|
1452
1402
|
class SpreadElement {
|
|
1453
1403
|
type = 'SpreadElement';
|
|
1454
1404
|
#internal;
|
|
@@ -1495,8 +1445,6 @@ class SpreadElement {
|
|
|
1495
1445
|
|
|
1496
1446
|
const DebugSpreadElement = class SpreadElement {};
|
|
1497
1447
|
|
|
1498
|
-
constructors.SpreadElement = SpreadElement;
|
|
1499
|
-
|
|
1500
1448
|
function constructArgument(pos, ast) {
|
|
1501
1449
|
switch (ast.buffer[pos]) {
|
|
1502
1450
|
case 0:
|
|
@@ -1650,8 +1598,6 @@ class UpdateExpression {
|
|
|
1650
1598
|
|
|
1651
1599
|
const DebugUpdateExpression = class UpdateExpression {};
|
|
1652
1600
|
|
|
1653
|
-
constructors.UpdateExpression = UpdateExpression;
|
|
1654
|
-
|
|
1655
1601
|
class UnaryExpression {
|
|
1656
1602
|
type = 'UnaryExpression';
|
|
1657
1603
|
#internal;
|
|
@@ -1704,8 +1650,6 @@ class UnaryExpression {
|
|
|
1704
1650
|
|
|
1705
1651
|
const DebugUnaryExpression = class UnaryExpression {};
|
|
1706
1652
|
|
|
1707
|
-
constructors.UnaryExpression = UnaryExpression;
|
|
1708
|
-
|
|
1709
1653
|
class BinaryExpression {
|
|
1710
1654
|
type = 'BinaryExpression';
|
|
1711
1655
|
#internal;
|
|
@@ -1764,8 +1708,6 @@ class BinaryExpression {
|
|
|
1764
1708
|
|
|
1765
1709
|
const DebugBinaryExpression = class BinaryExpression {};
|
|
1766
1710
|
|
|
1767
|
-
constructors.BinaryExpression = BinaryExpression;
|
|
1768
|
-
|
|
1769
1711
|
class PrivateInExpression {
|
|
1770
1712
|
type = 'PrivateInExpression';
|
|
1771
1713
|
#internal;
|
|
@@ -1818,8 +1760,6 @@ class PrivateInExpression {
|
|
|
1818
1760
|
|
|
1819
1761
|
const DebugPrivateInExpression = class PrivateInExpression {};
|
|
1820
1762
|
|
|
1821
|
-
constructors.PrivateInExpression = PrivateInExpression;
|
|
1822
|
-
|
|
1823
1763
|
class LogicalExpression {
|
|
1824
1764
|
type = 'LogicalExpression';
|
|
1825
1765
|
#internal;
|
|
@@ -1878,8 +1818,6 @@ class LogicalExpression {
|
|
|
1878
1818
|
|
|
1879
1819
|
const DebugLogicalExpression = class LogicalExpression {};
|
|
1880
1820
|
|
|
1881
|
-
constructors.LogicalExpression = LogicalExpression;
|
|
1882
|
-
|
|
1883
1821
|
class ConditionalExpression {
|
|
1884
1822
|
type = 'ConditionalExpression';
|
|
1885
1823
|
#internal;
|
|
@@ -1938,8 +1876,6 @@ class ConditionalExpression {
|
|
|
1938
1876
|
|
|
1939
1877
|
const DebugConditionalExpression = class ConditionalExpression {};
|
|
1940
1878
|
|
|
1941
|
-
constructors.ConditionalExpression = ConditionalExpression;
|
|
1942
|
-
|
|
1943
1879
|
class AssignmentExpression {
|
|
1944
1880
|
type = 'AssignmentExpression';
|
|
1945
1881
|
#internal;
|
|
@@ -1998,8 +1934,6 @@ class AssignmentExpression {
|
|
|
1998
1934
|
|
|
1999
1935
|
const DebugAssignmentExpression = class AssignmentExpression {};
|
|
2000
1936
|
|
|
2001
|
-
constructors.AssignmentExpression = AssignmentExpression;
|
|
2002
|
-
|
|
2003
1937
|
function constructAssignmentTarget(pos, ast) {
|
|
2004
1938
|
switch (ast.buffer[pos]) {
|
|
2005
1939
|
case 0:
|
|
@@ -2109,8 +2043,6 @@ class ArrayAssignmentTarget {
|
|
|
2109
2043
|
|
|
2110
2044
|
const DebugArrayAssignmentTarget = class ArrayAssignmentTarget {};
|
|
2111
2045
|
|
|
2112
|
-
constructors.ArrayAssignmentTarget = ArrayAssignmentTarget;
|
|
2113
|
-
|
|
2114
2046
|
class ObjectAssignmentTarget {
|
|
2115
2047
|
type = 'ObjectAssignmentTarget';
|
|
2116
2048
|
#internal;
|
|
@@ -2159,8 +2091,6 @@ class ObjectAssignmentTarget {
|
|
|
2159
2091
|
|
|
2160
2092
|
const DebugObjectAssignmentTarget = class ObjectAssignmentTarget {};
|
|
2161
2093
|
|
|
2162
|
-
constructors.ObjectAssignmentTarget = ObjectAssignmentTarget;
|
|
2163
|
-
|
|
2164
2094
|
class AssignmentTargetRest {
|
|
2165
2095
|
type = 'AssignmentTargetRest';
|
|
2166
2096
|
#internal;
|
|
@@ -2207,8 +2137,6 @@ class AssignmentTargetRest {
|
|
|
2207
2137
|
|
|
2208
2138
|
const DebugAssignmentTargetRest = class AssignmentTargetRest {};
|
|
2209
2139
|
|
|
2210
|
-
constructors.AssignmentTargetRest = AssignmentTargetRest;
|
|
2211
|
-
|
|
2212
2140
|
function constructAssignmentTargetMaybeDefault(pos, ast) {
|
|
2213
2141
|
switch (ast.buffer[pos]) {
|
|
2214
2142
|
case 0:
|
|
@@ -2290,8 +2218,6 @@ class AssignmentTargetWithDefault {
|
|
|
2290
2218
|
|
|
2291
2219
|
const DebugAssignmentTargetWithDefault = class AssignmentTargetWithDefault {};
|
|
2292
2220
|
|
|
2293
|
-
constructors.AssignmentTargetWithDefault = AssignmentTargetWithDefault;
|
|
2294
|
-
|
|
2295
2221
|
function constructAssignmentTargetProperty(pos, ast) {
|
|
2296
2222
|
switch (ast.buffer[pos]) {
|
|
2297
2223
|
case 0:
|
|
@@ -2355,8 +2281,6 @@ class AssignmentTargetPropertyIdentifier {
|
|
|
2355
2281
|
|
|
2356
2282
|
const DebugAssignmentTargetPropertyIdentifier = class AssignmentTargetPropertyIdentifier {};
|
|
2357
2283
|
|
|
2358
|
-
constructors.AssignmentTargetPropertyIdentifier = AssignmentTargetPropertyIdentifier;
|
|
2359
|
-
|
|
2360
2284
|
class AssignmentTargetPropertyProperty {
|
|
2361
2285
|
type = 'AssignmentTargetPropertyProperty';
|
|
2362
2286
|
#internal;
|
|
@@ -2415,8 +2339,6 @@ class AssignmentTargetPropertyProperty {
|
|
|
2415
2339
|
|
|
2416
2340
|
const DebugAssignmentTargetPropertyProperty = class AssignmentTargetPropertyProperty {};
|
|
2417
2341
|
|
|
2418
|
-
constructors.AssignmentTargetPropertyProperty = AssignmentTargetPropertyProperty;
|
|
2419
|
-
|
|
2420
2342
|
class SequenceExpression {
|
|
2421
2343
|
type = 'SequenceExpression';
|
|
2422
2344
|
#internal;
|
|
@@ -2465,8 +2387,6 @@ class SequenceExpression {
|
|
|
2465
2387
|
|
|
2466
2388
|
const DebugSequenceExpression = class SequenceExpression {};
|
|
2467
2389
|
|
|
2468
|
-
constructors.SequenceExpression = SequenceExpression;
|
|
2469
|
-
|
|
2470
2390
|
class Super {
|
|
2471
2391
|
type = 'Super';
|
|
2472
2392
|
#internal;
|
|
@@ -2507,8 +2427,6 @@ class Super {
|
|
|
2507
2427
|
|
|
2508
2428
|
const DebugSuper = class Super {};
|
|
2509
2429
|
|
|
2510
|
-
constructors.Super = Super;
|
|
2511
|
-
|
|
2512
2430
|
class AwaitExpression {
|
|
2513
2431
|
type = 'AwaitExpression';
|
|
2514
2432
|
#internal;
|
|
@@ -2555,8 +2473,6 @@ class AwaitExpression {
|
|
|
2555
2473
|
|
|
2556
2474
|
const DebugAwaitExpression = class AwaitExpression {};
|
|
2557
2475
|
|
|
2558
|
-
constructors.AwaitExpression = AwaitExpression;
|
|
2559
|
-
|
|
2560
2476
|
class ChainExpression {
|
|
2561
2477
|
type = 'ChainExpression';
|
|
2562
2478
|
#internal;
|
|
@@ -2603,8 +2519,6 @@ class ChainExpression {
|
|
|
2603
2519
|
|
|
2604
2520
|
const DebugChainExpression = class ChainExpression {};
|
|
2605
2521
|
|
|
2606
|
-
constructors.ChainExpression = ChainExpression;
|
|
2607
|
-
|
|
2608
2522
|
function constructChainElement(pos, ast) {
|
|
2609
2523
|
switch (ast.buffer[pos]) {
|
|
2610
2524
|
case 0:
|
|
@@ -2668,8 +2582,6 @@ class ParenthesizedExpression {
|
|
|
2668
2582
|
|
|
2669
2583
|
const DebugParenthesizedExpression = class ParenthesizedExpression {};
|
|
2670
2584
|
|
|
2671
|
-
constructors.ParenthesizedExpression = ParenthesizedExpression;
|
|
2672
|
-
|
|
2673
2585
|
function constructStatement(pos, ast) {
|
|
2674
2586
|
switch (ast.buffer[pos]) {
|
|
2675
2587
|
case 0:
|
|
@@ -2795,8 +2707,6 @@ class Directive {
|
|
|
2795
2707
|
|
|
2796
2708
|
const DebugDirective = class Directive {};
|
|
2797
2709
|
|
|
2798
|
-
constructors.Directive = Directive;
|
|
2799
|
-
|
|
2800
2710
|
class Hashbang {
|
|
2801
2711
|
type = 'Hashbang';
|
|
2802
2712
|
#internal;
|
|
@@ -2845,8 +2755,6 @@ class Hashbang {
|
|
|
2845
2755
|
|
|
2846
2756
|
const DebugHashbang = class Hashbang {};
|
|
2847
2757
|
|
|
2848
|
-
constructors.Hashbang = Hashbang;
|
|
2849
|
-
|
|
2850
2758
|
class BlockStatement {
|
|
2851
2759
|
type = 'BlockStatement';
|
|
2852
2760
|
#internal;
|
|
@@ -2895,8 +2803,6 @@ class BlockStatement {
|
|
|
2895
2803
|
|
|
2896
2804
|
const DebugBlockStatement = class BlockStatement {};
|
|
2897
2805
|
|
|
2898
|
-
constructors.BlockStatement = BlockStatement;
|
|
2899
|
-
|
|
2900
2806
|
function constructDeclaration(pos, ast) {
|
|
2901
2807
|
switch (ast.buffer[pos]) {
|
|
2902
2808
|
case 32:
|
|
@@ -2980,8 +2886,6 @@ class VariableDeclaration {
|
|
|
2980
2886
|
|
|
2981
2887
|
const DebugVariableDeclaration = class VariableDeclaration {};
|
|
2982
2888
|
|
|
2983
|
-
constructors.VariableDeclaration = VariableDeclaration;
|
|
2984
|
-
|
|
2985
2889
|
function constructVariableDeclarationKind(pos, ast) {
|
|
2986
2890
|
switch (ast.buffer[pos]) {
|
|
2987
2891
|
case 0:
|
|
@@ -3057,8 +2961,6 @@ class VariableDeclarator {
|
|
|
3057
2961
|
|
|
3058
2962
|
const DebugVariableDeclarator = class VariableDeclarator {};
|
|
3059
2963
|
|
|
3060
|
-
constructors.VariableDeclarator = VariableDeclarator;
|
|
3061
|
-
|
|
3062
2964
|
class EmptyStatement {
|
|
3063
2965
|
type = 'EmptyStatement';
|
|
3064
2966
|
#internal;
|
|
@@ -3099,8 +3001,6 @@ class EmptyStatement {
|
|
|
3099
3001
|
|
|
3100
3002
|
const DebugEmptyStatement = class EmptyStatement {};
|
|
3101
3003
|
|
|
3102
|
-
constructors.EmptyStatement = EmptyStatement;
|
|
3103
|
-
|
|
3104
3004
|
class ExpressionStatement {
|
|
3105
3005
|
type = 'ExpressionStatement';
|
|
3106
3006
|
#internal;
|
|
@@ -3147,8 +3047,6 @@ class ExpressionStatement {
|
|
|
3147
3047
|
|
|
3148
3048
|
const DebugExpressionStatement = class ExpressionStatement {};
|
|
3149
3049
|
|
|
3150
|
-
constructors.ExpressionStatement = ExpressionStatement;
|
|
3151
|
-
|
|
3152
3050
|
class IfStatement {
|
|
3153
3051
|
type = 'IfStatement';
|
|
3154
3052
|
#internal;
|
|
@@ -3207,8 +3105,6 @@ class IfStatement {
|
|
|
3207
3105
|
|
|
3208
3106
|
const DebugIfStatement = class IfStatement {};
|
|
3209
3107
|
|
|
3210
|
-
constructors.IfStatement = IfStatement;
|
|
3211
|
-
|
|
3212
3108
|
class DoWhileStatement {
|
|
3213
3109
|
type = 'DoWhileStatement';
|
|
3214
3110
|
#internal;
|
|
@@ -3261,8 +3157,6 @@ class DoWhileStatement {
|
|
|
3261
3157
|
|
|
3262
3158
|
const DebugDoWhileStatement = class DoWhileStatement {};
|
|
3263
3159
|
|
|
3264
|
-
constructors.DoWhileStatement = DoWhileStatement;
|
|
3265
|
-
|
|
3266
3160
|
class WhileStatement {
|
|
3267
3161
|
type = 'WhileStatement';
|
|
3268
3162
|
#internal;
|
|
@@ -3315,8 +3209,6 @@ class WhileStatement {
|
|
|
3315
3209
|
|
|
3316
3210
|
const DebugWhileStatement = class WhileStatement {};
|
|
3317
3211
|
|
|
3318
|
-
constructors.WhileStatement = WhileStatement;
|
|
3319
|
-
|
|
3320
3212
|
class ForStatement {
|
|
3321
3213
|
type = 'ForStatement';
|
|
3322
3214
|
#internal;
|
|
@@ -3381,8 +3273,6 @@ class ForStatement {
|
|
|
3381
3273
|
|
|
3382
3274
|
const DebugForStatement = class ForStatement {};
|
|
3383
3275
|
|
|
3384
|
-
constructors.ForStatement = ForStatement;
|
|
3385
|
-
|
|
3386
3276
|
function constructForStatementInit(pos, ast) {
|
|
3387
3277
|
switch (ast.buffer[pos]) {
|
|
3388
3278
|
case 0:
|
|
@@ -3536,8 +3426,6 @@ class ForInStatement {
|
|
|
3536
3426
|
|
|
3537
3427
|
const DebugForInStatement = class ForInStatement {};
|
|
3538
3428
|
|
|
3539
|
-
constructors.ForInStatement = ForInStatement;
|
|
3540
|
-
|
|
3541
3429
|
function constructForStatementLeft(pos, ast) {
|
|
3542
3430
|
switch (ast.buffer[pos]) {
|
|
3543
3431
|
case 0:
|
|
@@ -3631,8 +3519,6 @@ class ForOfStatement {
|
|
|
3631
3519
|
|
|
3632
3520
|
const DebugForOfStatement = class ForOfStatement {};
|
|
3633
3521
|
|
|
3634
|
-
constructors.ForOfStatement = ForOfStatement;
|
|
3635
|
-
|
|
3636
3522
|
class ContinueStatement {
|
|
3637
3523
|
type = 'ContinueStatement';
|
|
3638
3524
|
#internal;
|
|
@@ -3679,8 +3565,6 @@ class ContinueStatement {
|
|
|
3679
3565
|
|
|
3680
3566
|
const DebugContinueStatement = class ContinueStatement {};
|
|
3681
3567
|
|
|
3682
|
-
constructors.ContinueStatement = ContinueStatement;
|
|
3683
|
-
|
|
3684
3568
|
class BreakStatement {
|
|
3685
3569
|
type = 'BreakStatement';
|
|
3686
3570
|
#internal;
|
|
@@ -3727,8 +3611,6 @@ class BreakStatement {
|
|
|
3727
3611
|
|
|
3728
3612
|
const DebugBreakStatement = class BreakStatement {};
|
|
3729
3613
|
|
|
3730
|
-
constructors.BreakStatement = BreakStatement;
|
|
3731
|
-
|
|
3732
3614
|
class ReturnStatement {
|
|
3733
3615
|
type = 'ReturnStatement';
|
|
3734
3616
|
#internal;
|
|
@@ -3775,8 +3657,6 @@ class ReturnStatement {
|
|
|
3775
3657
|
|
|
3776
3658
|
const DebugReturnStatement = class ReturnStatement {};
|
|
3777
3659
|
|
|
3778
|
-
constructors.ReturnStatement = ReturnStatement;
|
|
3779
|
-
|
|
3780
3660
|
class WithStatement {
|
|
3781
3661
|
type = 'WithStatement';
|
|
3782
3662
|
#internal;
|
|
@@ -3829,8 +3709,6 @@ class WithStatement {
|
|
|
3829
3709
|
|
|
3830
3710
|
const DebugWithStatement = class WithStatement {};
|
|
3831
3711
|
|
|
3832
|
-
constructors.WithStatement = WithStatement;
|
|
3833
|
-
|
|
3834
3712
|
class SwitchStatement {
|
|
3835
3713
|
type = 'SwitchStatement';
|
|
3836
3714
|
#internal;
|
|
@@ -3885,8 +3763,6 @@ class SwitchStatement {
|
|
|
3885
3763
|
|
|
3886
3764
|
const DebugSwitchStatement = class SwitchStatement {};
|
|
3887
3765
|
|
|
3888
|
-
constructors.SwitchStatement = SwitchStatement;
|
|
3889
|
-
|
|
3890
3766
|
class SwitchCase {
|
|
3891
3767
|
type = 'SwitchCase';
|
|
3892
3768
|
#internal;
|
|
@@ -3941,8 +3817,6 @@ class SwitchCase {
|
|
|
3941
3817
|
|
|
3942
3818
|
const DebugSwitchCase = class SwitchCase {};
|
|
3943
3819
|
|
|
3944
|
-
constructors.SwitchCase = SwitchCase;
|
|
3945
|
-
|
|
3946
3820
|
class LabeledStatement {
|
|
3947
3821
|
type = 'LabeledStatement';
|
|
3948
3822
|
#internal;
|
|
@@ -3995,8 +3869,6 @@ class LabeledStatement {
|
|
|
3995
3869
|
|
|
3996
3870
|
const DebugLabeledStatement = class LabeledStatement {};
|
|
3997
3871
|
|
|
3998
|
-
constructors.LabeledStatement = LabeledStatement;
|
|
3999
|
-
|
|
4000
3872
|
class ThrowStatement {
|
|
4001
3873
|
type = 'ThrowStatement';
|
|
4002
3874
|
#internal;
|
|
@@ -4043,8 +3915,6 @@ class ThrowStatement {
|
|
|
4043
3915
|
|
|
4044
3916
|
const DebugThrowStatement = class ThrowStatement {};
|
|
4045
3917
|
|
|
4046
|
-
constructors.ThrowStatement = ThrowStatement;
|
|
4047
|
-
|
|
4048
3918
|
class TryStatement {
|
|
4049
3919
|
type = 'TryStatement';
|
|
4050
3920
|
#internal;
|
|
@@ -4103,8 +3973,6 @@ class TryStatement {
|
|
|
4103
3973
|
|
|
4104
3974
|
const DebugTryStatement = class TryStatement {};
|
|
4105
3975
|
|
|
4106
|
-
constructors.TryStatement = TryStatement;
|
|
4107
|
-
|
|
4108
3976
|
class CatchClause {
|
|
4109
3977
|
type = 'CatchClause';
|
|
4110
3978
|
#internal;
|
|
@@ -4157,8 +4025,6 @@ class CatchClause {
|
|
|
4157
4025
|
|
|
4158
4026
|
const DebugCatchClause = class CatchClause {};
|
|
4159
4027
|
|
|
4160
|
-
constructors.CatchClause = CatchClause;
|
|
4161
|
-
|
|
4162
4028
|
class CatchParameter {
|
|
4163
4029
|
#internal;
|
|
4164
4030
|
|
|
@@ -4191,8 +4057,6 @@ class CatchParameter {
|
|
|
4191
4057
|
|
|
4192
4058
|
const DebugCatchParameter = class CatchParameter {};
|
|
4193
4059
|
|
|
4194
|
-
constructors.CatchParameter = CatchParameter;
|
|
4195
|
-
|
|
4196
4060
|
class DebuggerStatement {
|
|
4197
4061
|
type = 'DebuggerStatement';
|
|
4198
4062
|
#internal;
|
|
@@ -4233,8 +4097,6 @@ class DebuggerStatement {
|
|
|
4233
4097
|
|
|
4234
4098
|
const DebugDebuggerStatement = class DebuggerStatement {};
|
|
4235
4099
|
|
|
4236
|
-
constructors.DebuggerStatement = DebuggerStatement;
|
|
4237
|
-
|
|
4238
4100
|
class BindingPattern {
|
|
4239
4101
|
#internal;
|
|
4240
4102
|
|
|
@@ -4279,8 +4141,6 @@ class BindingPattern {
|
|
|
4279
4141
|
|
|
4280
4142
|
const DebugBindingPattern = class BindingPattern {};
|
|
4281
4143
|
|
|
4282
|
-
constructors.BindingPattern = BindingPattern;
|
|
4283
|
-
|
|
4284
4144
|
function constructBindingPatternKind(pos, ast) {
|
|
4285
4145
|
switch (ast.buffer[pos]) {
|
|
4286
4146
|
case 0:
|
|
@@ -4348,8 +4208,6 @@ class AssignmentPattern {
|
|
|
4348
4208
|
|
|
4349
4209
|
const DebugAssignmentPattern = class AssignmentPattern {};
|
|
4350
4210
|
|
|
4351
|
-
constructors.AssignmentPattern = AssignmentPattern;
|
|
4352
|
-
|
|
4353
4211
|
class ObjectPattern {
|
|
4354
4212
|
type = 'ObjectPattern';
|
|
4355
4213
|
#internal;
|
|
@@ -4398,8 +4256,6 @@ class ObjectPattern {
|
|
|
4398
4256
|
|
|
4399
4257
|
const DebugObjectPattern = class ObjectPattern {};
|
|
4400
4258
|
|
|
4401
|
-
constructors.ObjectPattern = ObjectPattern;
|
|
4402
|
-
|
|
4403
4259
|
class BindingProperty {
|
|
4404
4260
|
type = 'BindingProperty';
|
|
4405
4261
|
#internal;
|
|
@@ -4464,8 +4320,6 @@ class BindingProperty {
|
|
|
4464
4320
|
|
|
4465
4321
|
const DebugBindingProperty = class BindingProperty {};
|
|
4466
4322
|
|
|
4467
|
-
constructors.BindingProperty = BindingProperty;
|
|
4468
|
-
|
|
4469
4323
|
class ArrayPattern {
|
|
4470
4324
|
type = 'ArrayPattern';
|
|
4471
4325
|
#internal;
|
|
@@ -4514,8 +4368,6 @@ class ArrayPattern {
|
|
|
4514
4368
|
|
|
4515
4369
|
const DebugArrayPattern = class ArrayPattern {};
|
|
4516
4370
|
|
|
4517
|
-
constructors.ArrayPattern = ArrayPattern;
|
|
4518
|
-
|
|
4519
4371
|
class BindingRestElement {
|
|
4520
4372
|
type = 'BindingRestElement';
|
|
4521
4373
|
#internal;
|
|
@@ -4562,8 +4414,6 @@ class BindingRestElement {
|
|
|
4562
4414
|
|
|
4563
4415
|
const DebugBindingRestElement = class BindingRestElement {};
|
|
4564
4416
|
|
|
4565
|
-
constructors.BindingRestElement = BindingRestElement;
|
|
4566
|
-
|
|
4567
4417
|
class Function {
|
|
4568
4418
|
#internal;
|
|
4569
4419
|
|
|
@@ -4656,8 +4506,6 @@ class Function {
|
|
|
4656
4506
|
|
|
4657
4507
|
const DebugFunction = class Function {};
|
|
4658
4508
|
|
|
4659
|
-
constructors.Function = Function;
|
|
4660
|
-
|
|
4661
4509
|
function constructFunctionType(pos, ast) {
|
|
4662
4510
|
switch (ast.buffer[pos]) {
|
|
4663
4511
|
case 0:
|
|
@@ -4727,8 +4575,6 @@ class FormalParameters {
|
|
|
4727
4575
|
|
|
4728
4576
|
const DebugFormalParameters = class FormalParameters {};
|
|
4729
4577
|
|
|
4730
|
-
constructors.FormalParameters = FormalParameters;
|
|
4731
|
-
|
|
4732
4578
|
class FormalParameter {
|
|
4733
4579
|
#internal;
|
|
4734
4580
|
|
|
@@ -4769,8 +4615,6 @@ class FormalParameter {
|
|
|
4769
4615
|
|
|
4770
4616
|
const DebugFormalParameter = class FormalParameter {};
|
|
4771
4617
|
|
|
4772
|
-
constructors.FormalParameter = FormalParameter;
|
|
4773
|
-
|
|
4774
4618
|
function constructFormalParameterKind(pos, ast) {
|
|
4775
4619
|
switch (ast.buffer[pos]) {
|
|
4776
4620
|
case 0:
|
|
@@ -4834,8 +4678,6 @@ class FunctionBody {
|
|
|
4834
4678
|
|
|
4835
4679
|
const DebugFunctionBody = class FunctionBody {};
|
|
4836
4680
|
|
|
4837
|
-
constructors.FunctionBody = FunctionBody;
|
|
4838
|
-
|
|
4839
4681
|
class ArrowFunctionExpression {
|
|
4840
4682
|
type = 'ArrowFunctionExpression';
|
|
4841
4683
|
#internal;
|
|
@@ -4912,8 +4754,6 @@ class ArrowFunctionExpression {
|
|
|
4912
4754
|
|
|
4913
4755
|
const DebugArrowFunctionExpression = class ArrowFunctionExpression {};
|
|
4914
4756
|
|
|
4915
|
-
constructors.ArrowFunctionExpression = ArrowFunctionExpression;
|
|
4916
|
-
|
|
4917
4757
|
class YieldExpression {
|
|
4918
4758
|
type = 'YieldExpression';
|
|
4919
4759
|
#internal;
|
|
@@ -4966,8 +4806,6 @@ class YieldExpression {
|
|
|
4966
4806
|
|
|
4967
4807
|
const DebugYieldExpression = class YieldExpression {};
|
|
4968
4808
|
|
|
4969
|
-
constructors.YieldExpression = YieldExpression;
|
|
4970
|
-
|
|
4971
4809
|
class Class {
|
|
4972
4810
|
#internal;
|
|
4973
4811
|
|
|
@@ -5070,8 +4908,6 @@ class Class {
|
|
|
5070
4908
|
|
|
5071
4909
|
const DebugClass = class Class {};
|
|
5072
4910
|
|
|
5073
|
-
constructors.Class = Class;
|
|
5074
|
-
|
|
5075
4911
|
function constructClassType(pos, ast) {
|
|
5076
4912
|
switch (ast.buffer[pos]) {
|
|
5077
4913
|
case 0:
|
|
@@ -5131,8 +4967,6 @@ class ClassBody {
|
|
|
5131
4967
|
|
|
5132
4968
|
const DebugClassBody = class ClassBody {};
|
|
5133
4969
|
|
|
5134
|
-
constructors.ClassBody = ClassBody;
|
|
5135
|
-
|
|
5136
4970
|
function constructClassElement(pos, ast) {
|
|
5137
4971
|
switch (ast.buffer[pos]) {
|
|
5138
4972
|
case 0:
|
|
@@ -5250,8 +5084,6 @@ class MethodDefinition {
|
|
|
5250
5084
|
|
|
5251
5085
|
const DebugMethodDefinition = class MethodDefinition {};
|
|
5252
5086
|
|
|
5253
|
-
constructors.MethodDefinition = MethodDefinition;
|
|
5254
|
-
|
|
5255
5087
|
function constructMethodDefinitionType(pos, ast) {
|
|
5256
5088
|
switch (ast.buffer[pos]) {
|
|
5257
5089
|
case 0:
|
|
@@ -5381,8 +5213,6 @@ class PropertyDefinition {
|
|
|
5381
5213
|
|
|
5382
5214
|
const DebugPropertyDefinition = class PropertyDefinition {};
|
|
5383
5215
|
|
|
5384
|
-
constructors.PropertyDefinition = PropertyDefinition;
|
|
5385
|
-
|
|
5386
5216
|
function constructPropertyDefinitionType(pos, ast) {
|
|
5387
5217
|
switch (ast.buffer[pos]) {
|
|
5388
5218
|
case 0:
|
|
@@ -5457,8 +5287,6 @@ class PrivateIdentifier {
|
|
|
5457
5287
|
|
|
5458
5288
|
const DebugPrivateIdentifier = class PrivateIdentifier {};
|
|
5459
5289
|
|
|
5460
|
-
constructors.PrivateIdentifier = PrivateIdentifier;
|
|
5461
|
-
|
|
5462
5290
|
class StaticBlock {
|
|
5463
5291
|
type = 'StaticBlock';
|
|
5464
5292
|
#internal;
|
|
@@ -5507,8 +5335,6 @@ class StaticBlock {
|
|
|
5507
5335
|
|
|
5508
5336
|
const DebugStaticBlock = class StaticBlock {};
|
|
5509
5337
|
|
|
5510
|
-
constructors.StaticBlock = StaticBlock;
|
|
5511
|
-
|
|
5512
5338
|
function constructModuleDeclaration(pos, ast) {
|
|
5513
5339
|
switch (ast.buffer[pos]) {
|
|
5514
5340
|
case 64:
|
|
@@ -5639,8 +5465,6 @@ class AccessorProperty {
|
|
|
5639
5465
|
|
|
5640
5466
|
const DebugAccessorProperty = class AccessorProperty {};
|
|
5641
5467
|
|
|
5642
|
-
constructors.AccessorProperty = AccessorProperty;
|
|
5643
|
-
|
|
5644
5468
|
class ImportExpression {
|
|
5645
5469
|
type = 'ImportExpression';
|
|
5646
5470
|
#internal;
|
|
@@ -5699,8 +5523,6 @@ class ImportExpression {
|
|
|
5699
5523
|
|
|
5700
5524
|
const DebugImportExpression = class ImportExpression {};
|
|
5701
5525
|
|
|
5702
|
-
constructors.ImportExpression = ImportExpression;
|
|
5703
|
-
|
|
5704
5526
|
class ImportDeclaration {
|
|
5705
5527
|
type = 'ImportDeclaration';
|
|
5706
5528
|
#internal;
|
|
@@ -5773,8 +5595,6 @@ class ImportDeclaration {
|
|
|
5773
5595
|
|
|
5774
5596
|
const DebugImportDeclaration = class ImportDeclaration {};
|
|
5775
5597
|
|
|
5776
|
-
constructors.ImportDeclaration = ImportDeclaration;
|
|
5777
|
-
|
|
5778
5598
|
function constructImportPhase(pos, ast) {
|
|
5779
5599
|
switch (ast.buffer[pos]) {
|
|
5780
5600
|
case 0:
|
|
@@ -5857,8 +5677,6 @@ class ImportSpecifier {
|
|
|
5857
5677
|
|
|
5858
5678
|
const DebugImportSpecifier = class ImportSpecifier {};
|
|
5859
5679
|
|
|
5860
|
-
constructors.ImportSpecifier = ImportSpecifier;
|
|
5861
|
-
|
|
5862
5680
|
class ImportDefaultSpecifier {
|
|
5863
5681
|
type = 'ImportDefaultSpecifier';
|
|
5864
5682
|
#internal;
|
|
@@ -5905,8 +5723,6 @@ class ImportDefaultSpecifier {
|
|
|
5905
5723
|
|
|
5906
5724
|
const DebugImportDefaultSpecifier = class ImportDefaultSpecifier {};
|
|
5907
5725
|
|
|
5908
|
-
constructors.ImportDefaultSpecifier = ImportDefaultSpecifier;
|
|
5909
|
-
|
|
5910
5726
|
class ImportNamespaceSpecifier {
|
|
5911
5727
|
type = 'ImportNamespaceSpecifier';
|
|
5912
5728
|
#internal;
|
|
@@ -5953,8 +5769,6 @@ class ImportNamespaceSpecifier {
|
|
|
5953
5769
|
|
|
5954
5770
|
const DebugImportNamespaceSpecifier = class ImportNamespaceSpecifier {};
|
|
5955
5771
|
|
|
5956
|
-
constructors.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
|
|
5957
|
-
|
|
5958
5772
|
class WithClause {
|
|
5959
5773
|
#internal;
|
|
5960
5774
|
|
|
@@ -5989,8 +5803,6 @@ class WithClause {
|
|
|
5989
5803
|
|
|
5990
5804
|
const DebugWithClause = class WithClause {};
|
|
5991
5805
|
|
|
5992
|
-
constructors.WithClause = WithClause;
|
|
5993
|
-
|
|
5994
5806
|
class ImportAttribute {
|
|
5995
5807
|
type = 'ImportAttribute';
|
|
5996
5808
|
#internal;
|
|
@@ -6043,8 +5855,6 @@ class ImportAttribute {
|
|
|
6043
5855
|
|
|
6044
5856
|
const DebugImportAttribute = class ImportAttribute {};
|
|
6045
5857
|
|
|
6046
|
-
constructors.ImportAttribute = ImportAttribute;
|
|
6047
|
-
|
|
6048
5858
|
function constructImportAttributeKey(pos, ast) {
|
|
6049
5859
|
switch (ast.buffer[pos]) {
|
|
6050
5860
|
case 0:
|
|
@@ -6128,8 +5938,6 @@ class ExportNamedDeclaration {
|
|
|
6128
5938
|
|
|
6129
5939
|
const DebugExportNamedDeclaration = class ExportNamedDeclaration {};
|
|
6130
5940
|
|
|
6131
|
-
constructors.ExportNamedDeclaration = ExportNamedDeclaration;
|
|
6132
|
-
|
|
6133
5941
|
class ExportDefaultDeclaration {
|
|
6134
5942
|
type = 'ExportDefaultDeclaration';
|
|
6135
5943
|
#internal;
|
|
@@ -6176,8 +5984,6 @@ class ExportDefaultDeclaration {
|
|
|
6176
5984
|
|
|
6177
5985
|
const DebugExportDefaultDeclaration = class ExportDefaultDeclaration {};
|
|
6178
5986
|
|
|
6179
|
-
constructors.ExportDefaultDeclaration = ExportDefaultDeclaration;
|
|
6180
|
-
|
|
6181
5987
|
class ExportAllDeclaration {
|
|
6182
5988
|
type = 'ExportAllDeclaration';
|
|
6183
5989
|
#internal;
|
|
@@ -6242,8 +6048,6 @@ class ExportAllDeclaration {
|
|
|
6242
6048
|
|
|
6243
6049
|
const DebugExportAllDeclaration = class ExportAllDeclaration {};
|
|
6244
6050
|
|
|
6245
|
-
constructors.ExportAllDeclaration = ExportAllDeclaration;
|
|
6246
|
-
|
|
6247
6051
|
class ExportSpecifier {
|
|
6248
6052
|
type = 'ExportSpecifier';
|
|
6249
6053
|
#internal;
|
|
@@ -6302,8 +6106,6 @@ class ExportSpecifier {
|
|
|
6302
6106
|
|
|
6303
6107
|
const DebugExportSpecifier = class ExportSpecifier {};
|
|
6304
6108
|
|
|
6305
|
-
constructors.ExportSpecifier = ExportSpecifier;
|
|
6306
|
-
|
|
6307
6109
|
function constructExportDefaultDeclarationKind(pos, ast) {
|
|
6308
6110
|
switch (ast.buffer[pos]) {
|
|
6309
6111
|
case 0:
|
|
@@ -6470,8 +6272,6 @@ class V8IntrinsicExpression {
|
|
|
6470
6272
|
|
|
6471
6273
|
const DebugV8IntrinsicExpression = class V8IntrinsicExpression {};
|
|
6472
6274
|
|
|
6473
|
-
constructors.V8IntrinsicExpression = V8IntrinsicExpression;
|
|
6474
|
-
|
|
6475
6275
|
class BooleanLiteral {
|
|
6476
6276
|
type = 'BooleanLiteral';
|
|
6477
6277
|
#internal;
|
|
@@ -6518,8 +6318,6 @@ class BooleanLiteral {
|
|
|
6518
6318
|
|
|
6519
6319
|
const DebugBooleanLiteral = class BooleanLiteral {};
|
|
6520
6320
|
|
|
6521
|
-
constructors.BooleanLiteral = BooleanLiteral;
|
|
6522
|
-
|
|
6523
6321
|
class NullLiteral {
|
|
6524
6322
|
type = 'NullLiteral';
|
|
6525
6323
|
#internal;
|
|
@@ -6560,8 +6358,6 @@ class NullLiteral {
|
|
|
6560
6358
|
|
|
6561
6359
|
const DebugNullLiteral = class NullLiteral {};
|
|
6562
6360
|
|
|
6563
|
-
constructors.NullLiteral = NullLiteral;
|
|
6564
|
-
|
|
6565
6361
|
class NumericLiteral {
|
|
6566
6362
|
type = 'NumericLiteral';
|
|
6567
6363
|
#internal;
|
|
@@ -6616,8 +6412,6 @@ class NumericLiteral {
|
|
|
6616
6412
|
|
|
6617
6413
|
const DebugNumericLiteral = class NumericLiteral {};
|
|
6618
6414
|
|
|
6619
|
-
constructors.NumericLiteral = NumericLiteral;
|
|
6620
|
-
|
|
6621
6415
|
class StringLiteral {
|
|
6622
6416
|
type = 'StringLiteral';
|
|
6623
6417
|
#internal;
|
|
@@ -6674,8 +6468,6 @@ class StringLiteral {
|
|
|
6674
6468
|
|
|
6675
6469
|
const DebugStringLiteral = class StringLiteral {};
|
|
6676
6470
|
|
|
6677
|
-
constructors.StringLiteral = StringLiteral;
|
|
6678
|
-
|
|
6679
6471
|
class BigIntLiteral {
|
|
6680
6472
|
type = 'BigIntLiteral';
|
|
6681
6473
|
#internal;
|
|
@@ -6732,8 +6524,6 @@ class BigIntLiteral {
|
|
|
6732
6524
|
|
|
6733
6525
|
const DebugBigIntLiteral = class BigIntLiteral {};
|
|
6734
6526
|
|
|
6735
|
-
constructors.BigIntLiteral = BigIntLiteral;
|
|
6736
|
-
|
|
6737
6527
|
class RegExpLiteral {
|
|
6738
6528
|
type = 'RegExpLiteral';
|
|
6739
6529
|
#internal;
|
|
@@ -6788,8 +6578,6 @@ class RegExpLiteral {
|
|
|
6788
6578
|
|
|
6789
6579
|
const DebugRegExpLiteral = class RegExpLiteral {};
|
|
6790
6580
|
|
|
6791
|
-
constructors.RegExpLiteral = RegExpLiteral;
|
|
6792
|
-
|
|
6793
6581
|
class RegExp {
|
|
6794
6582
|
#internal;
|
|
6795
6583
|
|
|
@@ -6829,8 +6617,6 @@ class RegExp {
|
|
|
6829
6617
|
|
|
6830
6618
|
const DebugRegExp = class RegExp {};
|
|
6831
6619
|
|
|
6832
|
-
constructors.RegExp = RegExp;
|
|
6833
|
-
|
|
6834
6620
|
class RegExpPattern {
|
|
6835
6621
|
#internal;
|
|
6836
6622
|
|
|
@@ -6865,8 +6651,6 @@ class RegExpPattern {
|
|
|
6865
6651
|
|
|
6866
6652
|
const DebugRegExpPattern = class RegExpPattern {};
|
|
6867
6653
|
|
|
6868
|
-
constructors.RegExpPattern = RegExpPattern;
|
|
6869
|
-
|
|
6870
6654
|
class RegExpFlags {
|
|
6871
6655
|
#internal;
|
|
6872
6656
|
|
|
@@ -6892,8 +6676,6 @@ class RegExpFlags {
|
|
|
6892
6676
|
|
|
6893
6677
|
const DebugRegExpFlags = class RegExpFlags {};
|
|
6894
6678
|
|
|
6895
|
-
constructors.RegExpFlags = RegExpFlags;
|
|
6896
|
-
|
|
6897
6679
|
class JSXElement {
|
|
6898
6680
|
type = 'JSXElement';
|
|
6899
6681
|
#internal;
|
|
@@ -6954,8 +6736,6 @@ class JSXElement {
|
|
|
6954
6736
|
|
|
6955
6737
|
const DebugJSXElement = class JSXElement {};
|
|
6956
6738
|
|
|
6957
|
-
constructors.JSXElement = JSXElement;
|
|
6958
|
-
|
|
6959
6739
|
class JSXOpeningElement {
|
|
6960
6740
|
type = 'JSXOpeningElement';
|
|
6961
6741
|
#internal;
|
|
@@ -7016,8 +6796,6 @@ class JSXOpeningElement {
|
|
|
7016
6796
|
|
|
7017
6797
|
const DebugJSXOpeningElement = class JSXOpeningElement {};
|
|
7018
6798
|
|
|
7019
|
-
constructors.JSXOpeningElement = JSXOpeningElement;
|
|
7020
|
-
|
|
7021
6799
|
class JSXClosingElement {
|
|
7022
6800
|
type = 'JSXClosingElement';
|
|
7023
6801
|
#internal;
|
|
@@ -7064,8 +6842,6 @@ class JSXClosingElement {
|
|
|
7064
6842
|
|
|
7065
6843
|
const DebugJSXClosingElement = class JSXClosingElement {};
|
|
7066
6844
|
|
|
7067
|
-
constructors.JSXClosingElement = JSXClosingElement;
|
|
7068
|
-
|
|
7069
6845
|
class JSXFragment {
|
|
7070
6846
|
type = 'JSXFragment';
|
|
7071
6847
|
#internal;
|
|
@@ -7126,8 +6902,6 @@ class JSXFragment {
|
|
|
7126
6902
|
|
|
7127
6903
|
const DebugJSXFragment = class JSXFragment {};
|
|
7128
6904
|
|
|
7129
|
-
constructors.JSXFragment = JSXFragment;
|
|
7130
|
-
|
|
7131
6905
|
class JSXOpeningFragment {
|
|
7132
6906
|
type = 'JSXOpeningFragment';
|
|
7133
6907
|
#internal;
|
|
@@ -7168,8 +6942,6 @@ class JSXOpeningFragment {
|
|
|
7168
6942
|
|
|
7169
6943
|
const DebugJSXOpeningFragment = class JSXOpeningFragment {};
|
|
7170
6944
|
|
|
7171
|
-
constructors.JSXOpeningFragment = JSXOpeningFragment;
|
|
7172
|
-
|
|
7173
6945
|
class JSXClosingFragment {
|
|
7174
6946
|
type = 'JSXClosingFragment';
|
|
7175
6947
|
#internal;
|
|
@@ -7210,8 +6982,6 @@ class JSXClosingFragment {
|
|
|
7210
6982
|
|
|
7211
6983
|
const DebugJSXClosingFragment = class JSXClosingFragment {};
|
|
7212
6984
|
|
|
7213
|
-
constructors.JSXClosingFragment = JSXClosingFragment;
|
|
7214
|
-
|
|
7215
6985
|
function constructJSXElementName(pos, ast) {
|
|
7216
6986
|
switch (ast.buffer[pos]) {
|
|
7217
6987
|
case 0:
|
|
@@ -7281,8 +7051,6 @@ class JSXNamespacedName {
|
|
|
7281
7051
|
|
|
7282
7052
|
const DebugJSXNamespacedName = class JSXNamespacedName {};
|
|
7283
7053
|
|
|
7284
|
-
constructors.JSXNamespacedName = JSXNamespacedName;
|
|
7285
|
-
|
|
7286
7054
|
class JSXMemberExpression {
|
|
7287
7055
|
type = 'JSXMemberExpression';
|
|
7288
7056
|
#internal;
|
|
@@ -7335,8 +7103,6 @@ class JSXMemberExpression {
|
|
|
7335
7103
|
|
|
7336
7104
|
const DebugJSXMemberExpression = class JSXMemberExpression {};
|
|
7337
7105
|
|
|
7338
|
-
constructors.JSXMemberExpression = JSXMemberExpression;
|
|
7339
|
-
|
|
7340
7106
|
function constructJSXMemberExpressionObject(pos, ast) {
|
|
7341
7107
|
switch (ast.buffer[pos]) {
|
|
7342
7108
|
case 0:
|
|
@@ -7396,8 +7162,6 @@ class JSXExpressionContainer {
|
|
|
7396
7162
|
|
|
7397
7163
|
const DebugJSXExpressionContainer = class JSXExpressionContainer {};
|
|
7398
7164
|
|
|
7399
|
-
constructors.JSXExpressionContainer = JSXExpressionContainer;
|
|
7400
|
-
|
|
7401
7165
|
function constructJSXExpression(pos, ast) {
|
|
7402
7166
|
switch (ast.buffer[pos]) {
|
|
7403
7167
|
case 0:
|
|
@@ -7533,8 +7297,6 @@ class JSXEmptyExpression {
|
|
|
7533
7297
|
|
|
7534
7298
|
const DebugJSXEmptyExpression = class JSXEmptyExpression {};
|
|
7535
7299
|
|
|
7536
|
-
constructors.JSXEmptyExpression = JSXEmptyExpression;
|
|
7537
|
-
|
|
7538
7300
|
function constructJSXAttributeItem(pos, ast) {
|
|
7539
7301
|
switch (ast.buffer[pos]) {
|
|
7540
7302
|
case 0:
|
|
@@ -7598,8 +7360,6 @@ class JSXAttribute {
|
|
|
7598
7360
|
|
|
7599
7361
|
const DebugJSXAttribute = class JSXAttribute {};
|
|
7600
7362
|
|
|
7601
|
-
constructors.JSXAttribute = JSXAttribute;
|
|
7602
|
-
|
|
7603
7363
|
class JSXSpreadAttribute {
|
|
7604
7364
|
type = 'JSXSpreadAttribute';
|
|
7605
7365
|
#internal;
|
|
@@ -7646,8 +7406,6 @@ class JSXSpreadAttribute {
|
|
|
7646
7406
|
|
|
7647
7407
|
const DebugJSXSpreadAttribute = class JSXSpreadAttribute {};
|
|
7648
7408
|
|
|
7649
|
-
constructors.JSXSpreadAttribute = JSXSpreadAttribute;
|
|
7650
|
-
|
|
7651
7409
|
function constructJSXAttributeName(pos, ast) {
|
|
7652
7410
|
switch (ast.buffer[pos]) {
|
|
7653
7411
|
case 0:
|
|
@@ -7722,8 +7480,6 @@ class JSXIdentifier {
|
|
|
7722
7480
|
|
|
7723
7481
|
const DebugJSXIdentifier = class JSXIdentifier {};
|
|
7724
7482
|
|
|
7725
|
-
constructors.JSXIdentifier = JSXIdentifier;
|
|
7726
|
-
|
|
7727
7483
|
function constructJSXChild(pos, ast) {
|
|
7728
7484
|
switch (ast.buffer[pos]) {
|
|
7729
7485
|
case 0:
|
|
@@ -7787,8 +7543,6 @@ class JSXSpreadChild {
|
|
|
7787
7543
|
|
|
7788
7544
|
const DebugJSXSpreadChild = class JSXSpreadChild {};
|
|
7789
7545
|
|
|
7790
|
-
constructors.JSXSpreadChild = JSXSpreadChild;
|
|
7791
|
-
|
|
7792
7546
|
class JSXText {
|
|
7793
7547
|
type = 'JSXText';
|
|
7794
7548
|
#internal;
|
|
@@ -7845,8 +7599,6 @@ class JSXText {
|
|
|
7845
7599
|
|
|
7846
7600
|
const DebugJSXText = class JSXText {};
|
|
7847
7601
|
|
|
7848
|
-
constructors.JSXText = JSXText;
|
|
7849
|
-
|
|
7850
7602
|
class TSThisParameter {
|
|
7851
7603
|
type = 'TSThisParameter';
|
|
7852
7604
|
#internal;
|
|
@@ -7893,8 +7645,6 @@ class TSThisParameter {
|
|
|
7893
7645
|
|
|
7894
7646
|
const DebugTSThisParameter = class TSThisParameter {};
|
|
7895
7647
|
|
|
7896
|
-
constructors.TSThisParameter = TSThisParameter;
|
|
7897
|
-
|
|
7898
7648
|
class TSEnumDeclaration {
|
|
7899
7649
|
type = 'TSEnumDeclaration';
|
|
7900
7650
|
#internal;
|
|
@@ -7959,8 +7709,6 @@ class TSEnumDeclaration {
|
|
|
7959
7709
|
|
|
7960
7710
|
const DebugTSEnumDeclaration = class TSEnumDeclaration {};
|
|
7961
7711
|
|
|
7962
|
-
constructors.TSEnumDeclaration = TSEnumDeclaration;
|
|
7963
|
-
|
|
7964
7712
|
class TSEnumBody {
|
|
7965
7713
|
type = 'TSEnumBody';
|
|
7966
7714
|
#internal;
|
|
@@ -8009,8 +7757,6 @@ class TSEnumBody {
|
|
|
8009
7757
|
|
|
8010
7758
|
const DebugTSEnumBody = class TSEnumBody {};
|
|
8011
7759
|
|
|
8012
|
-
constructors.TSEnumBody = TSEnumBody;
|
|
8013
|
-
|
|
8014
7760
|
class TSEnumMember {
|
|
8015
7761
|
type = 'TSEnumMember';
|
|
8016
7762
|
#internal;
|
|
@@ -8063,8 +7809,6 @@ class TSEnumMember {
|
|
|
8063
7809
|
|
|
8064
7810
|
const DebugTSEnumMember = class TSEnumMember {};
|
|
8065
7811
|
|
|
8066
|
-
constructors.TSEnumMember = TSEnumMember;
|
|
8067
|
-
|
|
8068
7812
|
function constructTSEnumMemberName(pos, ast) {
|
|
8069
7813
|
switch (ast.buffer[pos]) {
|
|
8070
7814
|
case 0:
|
|
@@ -8126,8 +7870,6 @@ class TSTypeAnnotation {
|
|
|
8126
7870
|
|
|
8127
7871
|
const DebugTSTypeAnnotation = class TSTypeAnnotation {};
|
|
8128
7872
|
|
|
8129
|
-
constructors.TSTypeAnnotation = TSTypeAnnotation;
|
|
8130
|
-
|
|
8131
7873
|
class TSLiteralType {
|
|
8132
7874
|
type = 'TSLiteralType';
|
|
8133
7875
|
#internal;
|
|
@@ -8174,8 +7916,6 @@ class TSLiteralType {
|
|
|
8174
7916
|
|
|
8175
7917
|
const DebugTSLiteralType = class TSLiteralType {};
|
|
8176
7918
|
|
|
8177
|
-
constructors.TSLiteralType = TSLiteralType;
|
|
8178
|
-
|
|
8179
7919
|
function constructTSLiteral(pos, ast) {
|
|
8180
7920
|
switch (ast.buffer[pos]) {
|
|
8181
7921
|
case 0:
|
|
@@ -8340,8 +8080,6 @@ class TSConditionalType {
|
|
|
8340
8080
|
|
|
8341
8081
|
const DebugTSConditionalType = class TSConditionalType {};
|
|
8342
8082
|
|
|
8343
|
-
constructors.TSConditionalType = TSConditionalType;
|
|
8344
|
-
|
|
8345
8083
|
class TSUnionType {
|
|
8346
8084
|
type = 'TSUnionType';
|
|
8347
8085
|
#internal;
|
|
@@ -8390,8 +8128,6 @@ class TSUnionType {
|
|
|
8390
8128
|
|
|
8391
8129
|
const DebugTSUnionType = class TSUnionType {};
|
|
8392
8130
|
|
|
8393
|
-
constructors.TSUnionType = TSUnionType;
|
|
8394
|
-
|
|
8395
8131
|
class TSIntersectionType {
|
|
8396
8132
|
type = 'TSIntersectionType';
|
|
8397
8133
|
#internal;
|
|
@@ -8440,8 +8176,6 @@ class TSIntersectionType {
|
|
|
8440
8176
|
|
|
8441
8177
|
const DebugTSIntersectionType = class TSIntersectionType {};
|
|
8442
8178
|
|
|
8443
|
-
constructors.TSIntersectionType = TSIntersectionType;
|
|
8444
|
-
|
|
8445
8179
|
class TSParenthesizedType {
|
|
8446
8180
|
type = 'TSParenthesizedType';
|
|
8447
8181
|
#internal;
|
|
@@ -8488,8 +8222,6 @@ class TSParenthesizedType {
|
|
|
8488
8222
|
|
|
8489
8223
|
const DebugTSParenthesizedType = class TSParenthesizedType {};
|
|
8490
8224
|
|
|
8491
|
-
constructors.TSParenthesizedType = TSParenthesizedType;
|
|
8492
|
-
|
|
8493
8225
|
class TSTypeOperator {
|
|
8494
8226
|
type = 'TSTypeOperator';
|
|
8495
8227
|
#internal;
|
|
@@ -8542,8 +8274,6 @@ class TSTypeOperator {
|
|
|
8542
8274
|
|
|
8543
8275
|
const DebugTSTypeOperator = class TSTypeOperator {};
|
|
8544
8276
|
|
|
8545
|
-
constructors.TSTypeOperator = TSTypeOperator;
|
|
8546
|
-
|
|
8547
8277
|
function constructTSTypeOperatorOperator(pos, ast) {
|
|
8548
8278
|
switch (ast.buffer[pos]) {
|
|
8549
8279
|
case 0:
|
|
@@ -8603,8 +8333,6 @@ class TSArrayType {
|
|
|
8603
8333
|
|
|
8604
8334
|
const DebugTSArrayType = class TSArrayType {};
|
|
8605
8335
|
|
|
8606
|
-
constructors.TSArrayType = TSArrayType;
|
|
8607
|
-
|
|
8608
8336
|
class TSIndexedAccessType {
|
|
8609
8337
|
type = 'TSIndexedAccessType';
|
|
8610
8338
|
#internal;
|
|
@@ -8657,8 +8385,6 @@ class TSIndexedAccessType {
|
|
|
8657
8385
|
|
|
8658
8386
|
const DebugTSIndexedAccessType = class TSIndexedAccessType {};
|
|
8659
8387
|
|
|
8660
|
-
constructors.TSIndexedAccessType = TSIndexedAccessType;
|
|
8661
|
-
|
|
8662
8388
|
class TSTupleType {
|
|
8663
8389
|
type = 'TSTupleType';
|
|
8664
8390
|
#internal;
|
|
@@ -8707,8 +8433,6 @@ class TSTupleType {
|
|
|
8707
8433
|
|
|
8708
8434
|
const DebugTSTupleType = class TSTupleType {};
|
|
8709
8435
|
|
|
8710
|
-
constructors.TSTupleType = TSTupleType;
|
|
8711
|
-
|
|
8712
8436
|
class TSNamedTupleMember {
|
|
8713
8437
|
type = 'TSNamedTupleMember';
|
|
8714
8438
|
#internal;
|
|
@@ -8767,8 +8491,6 @@ class TSNamedTupleMember {
|
|
|
8767
8491
|
|
|
8768
8492
|
const DebugTSNamedTupleMember = class TSNamedTupleMember {};
|
|
8769
8493
|
|
|
8770
|
-
constructors.TSNamedTupleMember = TSNamedTupleMember;
|
|
8771
|
-
|
|
8772
8494
|
class TSOptionalType {
|
|
8773
8495
|
type = 'TSOptionalType';
|
|
8774
8496
|
#internal;
|
|
@@ -8815,8 +8537,6 @@ class TSOptionalType {
|
|
|
8815
8537
|
|
|
8816
8538
|
const DebugTSOptionalType = class TSOptionalType {};
|
|
8817
8539
|
|
|
8818
|
-
constructors.TSOptionalType = TSOptionalType;
|
|
8819
|
-
|
|
8820
8540
|
class TSRestType {
|
|
8821
8541
|
type = 'TSRestType';
|
|
8822
8542
|
#internal;
|
|
@@ -8863,8 +8583,6 @@ class TSRestType {
|
|
|
8863
8583
|
|
|
8864
8584
|
const DebugTSRestType = class TSRestType {};
|
|
8865
8585
|
|
|
8866
|
-
constructors.TSRestType = TSRestType;
|
|
8867
|
-
|
|
8868
8586
|
function constructTSTupleElement(pos, ast) {
|
|
8869
8587
|
switch (ast.buffer[pos]) {
|
|
8870
8588
|
case 0:
|
|
@@ -8990,8 +8708,6 @@ class TSAnyKeyword {
|
|
|
8990
8708
|
|
|
8991
8709
|
const DebugTSAnyKeyword = class TSAnyKeyword {};
|
|
8992
8710
|
|
|
8993
|
-
constructors.TSAnyKeyword = TSAnyKeyword;
|
|
8994
|
-
|
|
8995
8711
|
class TSStringKeyword {
|
|
8996
8712
|
type = 'TSStringKeyword';
|
|
8997
8713
|
#internal;
|
|
@@ -9032,8 +8748,6 @@ class TSStringKeyword {
|
|
|
9032
8748
|
|
|
9033
8749
|
const DebugTSStringKeyword = class TSStringKeyword {};
|
|
9034
8750
|
|
|
9035
|
-
constructors.TSStringKeyword = TSStringKeyword;
|
|
9036
|
-
|
|
9037
8751
|
class TSBooleanKeyword {
|
|
9038
8752
|
type = 'TSBooleanKeyword';
|
|
9039
8753
|
#internal;
|
|
@@ -9074,8 +8788,6 @@ class TSBooleanKeyword {
|
|
|
9074
8788
|
|
|
9075
8789
|
const DebugTSBooleanKeyword = class TSBooleanKeyword {};
|
|
9076
8790
|
|
|
9077
|
-
constructors.TSBooleanKeyword = TSBooleanKeyword;
|
|
9078
|
-
|
|
9079
8791
|
class TSNumberKeyword {
|
|
9080
8792
|
type = 'TSNumberKeyword';
|
|
9081
8793
|
#internal;
|
|
@@ -9116,8 +8828,6 @@ class TSNumberKeyword {
|
|
|
9116
8828
|
|
|
9117
8829
|
const DebugTSNumberKeyword = class TSNumberKeyword {};
|
|
9118
8830
|
|
|
9119
|
-
constructors.TSNumberKeyword = TSNumberKeyword;
|
|
9120
|
-
|
|
9121
8831
|
class TSNeverKeyword {
|
|
9122
8832
|
type = 'TSNeverKeyword';
|
|
9123
8833
|
#internal;
|
|
@@ -9158,8 +8868,6 @@ class TSNeverKeyword {
|
|
|
9158
8868
|
|
|
9159
8869
|
const DebugTSNeverKeyword = class TSNeverKeyword {};
|
|
9160
8870
|
|
|
9161
|
-
constructors.TSNeverKeyword = TSNeverKeyword;
|
|
9162
|
-
|
|
9163
8871
|
class TSIntrinsicKeyword {
|
|
9164
8872
|
type = 'TSIntrinsicKeyword';
|
|
9165
8873
|
#internal;
|
|
@@ -9200,8 +8908,6 @@ class TSIntrinsicKeyword {
|
|
|
9200
8908
|
|
|
9201
8909
|
const DebugTSIntrinsicKeyword = class TSIntrinsicKeyword {};
|
|
9202
8910
|
|
|
9203
|
-
constructors.TSIntrinsicKeyword = TSIntrinsicKeyword;
|
|
9204
|
-
|
|
9205
8911
|
class TSUnknownKeyword {
|
|
9206
8912
|
type = 'TSUnknownKeyword';
|
|
9207
8913
|
#internal;
|
|
@@ -9242,8 +8948,6 @@ class TSUnknownKeyword {
|
|
|
9242
8948
|
|
|
9243
8949
|
const DebugTSUnknownKeyword = class TSUnknownKeyword {};
|
|
9244
8950
|
|
|
9245
|
-
constructors.TSUnknownKeyword = TSUnknownKeyword;
|
|
9246
|
-
|
|
9247
8951
|
class TSNullKeyword {
|
|
9248
8952
|
type = 'TSNullKeyword';
|
|
9249
8953
|
#internal;
|
|
@@ -9284,8 +8988,6 @@ class TSNullKeyword {
|
|
|
9284
8988
|
|
|
9285
8989
|
const DebugTSNullKeyword = class TSNullKeyword {};
|
|
9286
8990
|
|
|
9287
|
-
constructors.TSNullKeyword = TSNullKeyword;
|
|
9288
|
-
|
|
9289
8991
|
class TSUndefinedKeyword {
|
|
9290
8992
|
type = 'TSUndefinedKeyword';
|
|
9291
8993
|
#internal;
|
|
@@ -9326,8 +9028,6 @@ class TSUndefinedKeyword {
|
|
|
9326
9028
|
|
|
9327
9029
|
const DebugTSUndefinedKeyword = class TSUndefinedKeyword {};
|
|
9328
9030
|
|
|
9329
|
-
constructors.TSUndefinedKeyword = TSUndefinedKeyword;
|
|
9330
|
-
|
|
9331
9031
|
class TSVoidKeyword {
|
|
9332
9032
|
type = 'TSVoidKeyword';
|
|
9333
9033
|
#internal;
|
|
@@ -9368,8 +9068,6 @@ class TSVoidKeyword {
|
|
|
9368
9068
|
|
|
9369
9069
|
const DebugTSVoidKeyword = class TSVoidKeyword {};
|
|
9370
9070
|
|
|
9371
|
-
constructors.TSVoidKeyword = TSVoidKeyword;
|
|
9372
|
-
|
|
9373
9071
|
class TSSymbolKeyword {
|
|
9374
9072
|
type = 'TSSymbolKeyword';
|
|
9375
9073
|
#internal;
|
|
@@ -9410,8 +9108,6 @@ class TSSymbolKeyword {
|
|
|
9410
9108
|
|
|
9411
9109
|
const DebugTSSymbolKeyword = class TSSymbolKeyword {};
|
|
9412
9110
|
|
|
9413
|
-
constructors.TSSymbolKeyword = TSSymbolKeyword;
|
|
9414
|
-
|
|
9415
9111
|
class TSThisType {
|
|
9416
9112
|
type = 'TSThisType';
|
|
9417
9113
|
#internal;
|
|
@@ -9452,8 +9148,6 @@ class TSThisType {
|
|
|
9452
9148
|
|
|
9453
9149
|
const DebugTSThisType = class TSThisType {};
|
|
9454
9150
|
|
|
9455
|
-
constructors.TSThisType = TSThisType;
|
|
9456
|
-
|
|
9457
9151
|
class TSObjectKeyword {
|
|
9458
9152
|
type = 'TSObjectKeyword';
|
|
9459
9153
|
#internal;
|
|
@@ -9494,8 +9188,6 @@ class TSObjectKeyword {
|
|
|
9494
9188
|
|
|
9495
9189
|
const DebugTSObjectKeyword = class TSObjectKeyword {};
|
|
9496
9190
|
|
|
9497
|
-
constructors.TSObjectKeyword = TSObjectKeyword;
|
|
9498
|
-
|
|
9499
9191
|
class TSBigIntKeyword {
|
|
9500
9192
|
type = 'TSBigIntKeyword';
|
|
9501
9193
|
#internal;
|
|
@@ -9536,8 +9228,6 @@ class TSBigIntKeyword {
|
|
|
9536
9228
|
|
|
9537
9229
|
const DebugTSBigIntKeyword = class TSBigIntKeyword {};
|
|
9538
9230
|
|
|
9539
|
-
constructors.TSBigIntKeyword = TSBigIntKeyword;
|
|
9540
|
-
|
|
9541
9231
|
class TSTypeReference {
|
|
9542
9232
|
type = 'TSTypeReference';
|
|
9543
9233
|
#internal;
|
|
@@ -9590,8 +9280,6 @@ class TSTypeReference {
|
|
|
9590
9280
|
|
|
9591
9281
|
const DebugTSTypeReference = class TSTypeReference {};
|
|
9592
9282
|
|
|
9593
|
-
constructors.TSTypeReference = TSTypeReference;
|
|
9594
|
-
|
|
9595
9283
|
function constructTSTypeName(pos, ast) {
|
|
9596
9284
|
switch (ast.buffer[pos]) {
|
|
9597
9285
|
case 0:
|
|
@@ -9655,8 +9343,6 @@ class TSQualifiedName {
|
|
|
9655
9343
|
|
|
9656
9344
|
const DebugTSQualifiedName = class TSQualifiedName {};
|
|
9657
9345
|
|
|
9658
|
-
constructors.TSQualifiedName = TSQualifiedName;
|
|
9659
|
-
|
|
9660
9346
|
class TSTypeParameterInstantiation {
|
|
9661
9347
|
type = 'TSTypeParameterInstantiation';
|
|
9662
9348
|
#internal;
|
|
@@ -9705,8 +9391,6 @@ class TSTypeParameterInstantiation {
|
|
|
9705
9391
|
|
|
9706
9392
|
const DebugTSTypeParameterInstantiation = class TSTypeParameterInstantiation {};
|
|
9707
9393
|
|
|
9708
|
-
constructors.TSTypeParameterInstantiation = TSTypeParameterInstantiation;
|
|
9709
|
-
|
|
9710
9394
|
class TSTypeParameter {
|
|
9711
9395
|
type = 'TSTypeParameter';
|
|
9712
9396
|
#internal;
|
|
@@ -9783,8 +9467,6 @@ class TSTypeParameter {
|
|
|
9783
9467
|
|
|
9784
9468
|
const DebugTSTypeParameter = class TSTypeParameter {};
|
|
9785
9469
|
|
|
9786
|
-
constructors.TSTypeParameter = TSTypeParameter;
|
|
9787
|
-
|
|
9788
9470
|
class TSTypeParameterDeclaration {
|
|
9789
9471
|
type = 'TSTypeParameterDeclaration';
|
|
9790
9472
|
#internal;
|
|
@@ -9833,8 +9515,6 @@ class TSTypeParameterDeclaration {
|
|
|
9833
9515
|
|
|
9834
9516
|
const DebugTSTypeParameterDeclaration = class TSTypeParameterDeclaration {};
|
|
9835
9517
|
|
|
9836
|
-
constructors.TSTypeParameterDeclaration = TSTypeParameterDeclaration;
|
|
9837
|
-
|
|
9838
9518
|
class TSTypeAliasDeclaration {
|
|
9839
9519
|
type = 'TSTypeAliasDeclaration';
|
|
9840
9520
|
#internal;
|
|
@@ -9899,8 +9579,6 @@ class TSTypeAliasDeclaration {
|
|
|
9899
9579
|
|
|
9900
9580
|
const DebugTSTypeAliasDeclaration = class TSTypeAliasDeclaration {};
|
|
9901
9581
|
|
|
9902
|
-
constructors.TSTypeAliasDeclaration = TSTypeAliasDeclaration;
|
|
9903
|
-
|
|
9904
9582
|
function constructTSAccessibility(pos, ast) {
|
|
9905
9583
|
switch (ast.buffer[pos]) {
|
|
9906
9584
|
case 0:
|
|
@@ -9966,8 +9644,6 @@ class TSClassImplements {
|
|
|
9966
9644
|
|
|
9967
9645
|
const DebugTSClassImplements = class TSClassImplements {};
|
|
9968
9646
|
|
|
9969
|
-
constructors.TSClassImplements = TSClassImplements;
|
|
9970
|
-
|
|
9971
9647
|
class TSInterfaceDeclaration {
|
|
9972
9648
|
type = 'TSInterfaceDeclaration';
|
|
9973
9649
|
#internal;
|
|
@@ -10040,8 +9716,6 @@ class TSInterfaceDeclaration {
|
|
|
10040
9716
|
|
|
10041
9717
|
const DebugTSInterfaceDeclaration = class TSInterfaceDeclaration {};
|
|
10042
9718
|
|
|
10043
|
-
constructors.TSInterfaceDeclaration = TSInterfaceDeclaration;
|
|
10044
|
-
|
|
10045
9719
|
class TSInterfaceBody {
|
|
10046
9720
|
type = 'TSInterfaceBody';
|
|
10047
9721
|
#internal;
|
|
@@ -10090,8 +9764,6 @@ class TSInterfaceBody {
|
|
|
10090
9764
|
|
|
10091
9765
|
const DebugTSInterfaceBody = class TSInterfaceBody {};
|
|
10092
9766
|
|
|
10093
|
-
constructors.TSInterfaceBody = TSInterfaceBody;
|
|
10094
|
-
|
|
10095
9767
|
class TSPropertySignature {
|
|
10096
9768
|
type = 'TSPropertySignature';
|
|
10097
9769
|
#internal;
|
|
@@ -10162,8 +9834,6 @@ class TSPropertySignature {
|
|
|
10162
9834
|
|
|
10163
9835
|
const DebugTSPropertySignature = class TSPropertySignature {};
|
|
10164
9836
|
|
|
10165
|
-
constructors.TSPropertySignature = TSPropertySignature;
|
|
10166
|
-
|
|
10167
9837
|
function constructTSSignature(pos, ast) {
|
|
10168
9838
|
switch (ast.buffer[pos]) {
|
|
10169
9839
|
case 0:
|
|
@@ -10247,8 +9917,6 @@ class TSIndexSignature {
|
|
|
10247
9917
|
|
|
10248
9918
|
const DebugTSIndexSignature = class TSIndexSignature {};
|
|
10249
9919
|
|
|
10250
|
-
constructors.TSIndexSignature = TSIndexSignature;
|
|
10251
|
-
|
|
10252
9920
|
class TSCallSignatureDeclaration {
|
|
10253
9921
|
type = 'TSCallSignatureDeclaration';
|
|
10254
9922
|
#internal;
|
|
@@ -10307,8 +9975,6 @@ class TSCallSignatureDeclaration {
|
|
|
10307
9975
|
|
|
10308
9976
|
const DebugTSCallSignatureDeclaration = class TSCallSignatureDeclaration {};
|
|
10309
9977
|
|
|
10310
|
-
constructors.TSCallSignatureDeclaration = TSCallSignatureDeclaration;
|
|
10311
|
-
|
|
10312
9978
|
function constructTSMethodSignatureKind(pos, ast) {
|
|
10313
9979
|
switch (ast.buffer[pos]) {
|
|
10314
9980
|
case 0:
|
|
@@ -10404,8 +10070,6 @@ class TSMethodSignature {
|
|
|
10404
10070
|
|
|
10405
10071
|
const DebugTSMethodSignature = class TSMethodSignature {};
|
|
10406
10072
|
|
|
10407
|
-
constructors.TSMethodSignature = TSMethodSignature;
|
|
10408
|
-
|
|
10409
10073
|
class TSConstructSignatureDeclaration {
|
|
10410
10074
|
type = 'TSConstructSignatureDeclaration';
|
|
10411
10075
|
#internal;
|
|
@@ -10464,8 +10128,6 @@ class TSConstructSignatureDeclaration {
|
|
|
10464
10128
|
|
|
10465
10129
|
const DebugTSConstructSignatureDeclaration = class TSConstructSignatureDeclaration {};
|
|
10466
10130
|
|
|
10467
|
-
constructors.TSConstructSignatureDeclaration = TSConstructSignatureDeclaration;
|
|
10468
|
-
|
|
10469
10131
|
class TSIndexSignatureName {
|
|
10470
10132
|
type = 'TSIndexSignatureName';
|
|
10471
10133
|
#internal;
|
|
@@ -10520,8 +10182,6 @@ class TSIndexSignatureName {
|
|
|
10520
10182
|
|
|
10521
10183
|
const DebugTSIndexSignatureName = class TSIndexSignatureName {};
|
|
10522
10184
|
|
|
10523
|
-
constructors.TSIndexSignatureName = TSIndexSignatureName;
|
|
10524
|
-
|
|
10525
10185
|
class TSInterfaceHeritage {
|
|
10526
10186
|
type = 'TSInterfaceHeritage';
|
|
10527
10187
|
#internal;
|
|
@@ -10574,8 +10234,6 @@ class TSInterfaceHeritage {
|
|
|
10574
10234
|
|
|
10575
10235
|
const DebugTSInterfaceHeritage = class TSInterfaceHeritage {};
|
|
10576
10236
|
|
|
10577
|
-
constructors.TSInterfaceHeritage = TSInterfaceHeritage;
|
|
10578
|
-
|
|
10579
10237
|
class TSTypePredicate {
|
|
10580
10238
|
type = 'TSTypePredicate';
|
|
10581
10239
|
#internal;
|
|
@@ -10634,8 +10292,6 @@ class TSTypePredicate {
|
|
|
10634
10292
|
|
|
10635
10293
|
const DebugTSTypePredicate = class TSTypePredicate {};
|
|
10636
10294
|
|
|
10637
|
-
constructors.TSTypePredicate = TSTypePredicate;
|
|
10638
|
-
|
|
10639
10295
|
function constructTSTypePredicateName(pos, ast) {
|
|
10640
10296
|
switch (ast.buffer[pos]) {
|
|
10641
10297
|
case 0:
|
|
@@ -10711,8 +10367,6 @@ class TSModuleDeclaration {
|
|
|
10711
10367
|
|
|
10712
10368
|
const DebugTSModuleDeclaration = class TSModuleDeclaration {};
|
|
10713
10369
|
|
|
10714
|
-
constructors.TSModuleDeclaration = TSModuleDeclaration;
|
|
10715
|
-
|
|
10716
10370
|
function constructTSModuleDeclarationKind(pos, ast) {
|
|
10717
10371
|
switch (ast.buffer[pos]) {
|
|
10718
10372
|
case 0:
|
|
@@ -10796,8 +10450,6 @@ class TSModuleBlock {
|
|
|
10796
10450
|
|
|
10797
10451
|
const DebugTSModuleBlock = class TSModuleBlock {};
|
|
10798
10452
|
|
|
10799
|
-
constructors.TSModuleBlock = TSModuleBlock;
|
|
10800
|
-
|
|
10801
10453
|
class TSTypeLiteral {
|
|
10802
10454
|
type = 'TSTypeLiteral';
|
|
10803
10455
|
#internal;
|
|
@@ -10846,8 +10498,6 @@ class TSTypeLiteral {
|
|
|
10846
10498
|
|
|
10847
10499
|
const DebugTSTypeLiteral = class TSTypeLiteral {};
|
|
10848
10500
|
|
|
10849
|
-
constructors.TSTypeLiteral = TSTypeLiteral;
|
|
10850
|
-
|
|
10851
10501
|
class TSInferType {
|
|
10852
10502
|
type = 'TSInferType';
|
|
10853
10503
|
#internal;
|
|
@@ -10894,8 +10544,6 @@ class TSInferType {
|
|
|
10894
10544
|
|
|
10895
10545
|
const DebugTSInferType = class TSInferType {};
|
|
10896
10546
|
|
|
10897
|
-
constructors.TSInferType = TSInferType;
|
|
10898
|
-
|
|
10899
10547
|
class TSTypeQuery {
|
|
10900
10548
|
type = 'TSTypeQuery';
|
|
10901
10549
|
#internal;
|
|
@@ -10948,8 +10596,6 @@ class TSTypeQuery {
|
|
|
10948
10596
|
|
|
10949
10597
|
const DebugTSTypeQuery = class TSTypeQuery {};
|
|
10950
10598
|
|
|
10951
|
-
constructors.TSTypeQuery = TSTypeQuery;
|
|
10952
|
-
|
|
10953
10599
|
function constructTSTypeQueryExprName(pos, ast) {
|
|
10954
10600
|
switch (ast.buffer[pos]) {
|
|
10955
10601
|
case 0:
|
|
@@ -11027,8 +10673,6 @@ class TSImportType {
|
|
|
11027
10673
|
|
|
11028
10674
|
const DebugTSImportType = class TSImportType {};
|
|
11029
10675
|
|
|
11030
|
-
constructors.TSImportType = TSImportType;
|
|
11031
|
-
|
|
11032
10676
|
class TSFunctionType {
|
|
11033
10677
|
type = 'TSFunctionType';
|
|
11034
10678
|
#internal;
|
|
@@ -11087,8 +10731,6 @@ class TSFunctionType {
|
|
|
11087
10731
|
|
|
11088
10732
|
const DebugTSFunctionType = class TSFunctionType {};
|
|
11089
10733
|
|
|
11090
|
-
constructors.TSFunctionType = TSFunctionType;
|
|
11091
|
-
|
|
11092
10734
|
class TSConstructorType {
|
|
11093
10735
|
type = 'TSConstructorType';
|
|
11094
10736
|
#internal;
|
|
@@ -11153,8 +10795,6 @@ class TSConstructorType {
|
|
|
11153
10795
|
|
|
11154
10796
|
const DebugTSConstructorType = class TSConstructorType {};
|
|
11155
10797
|
|
|
11156
|
-
constructors.TSConstructorType = TSConstructorType;
|
|
11157
|
-
|
|
11158
10798
|
class TSMappedType {
|
|
11159
10799
|
type = 'TSMappedType';
|
|
11160
10800
|
#internal;
|
|
@@ -11219,8 +10859,6 @@ class TSMappedType {
|
|
|
11219
10859
|
|
|
11220
10860
|
const DebugTSMappedType = class TSMappedType {};
|
|
11221
10861
|
|
|
11222
|
-
constructors.TSMappedType = TSMappedType;
|
|
11223
|
-
|
|
11224
10862
|
function constructTSMappedTypeModifierOperator(pos, ast) {
|
|
11225
10863
|
switch (ast.buffer[pos]) {
|
|
11226
10864
|
case 0:
|
|
@@ -11290,8 +10928,6 @@ class TSTemplateLiteralType {
|
|
|
11290
10928
|
|
|
11291
10929
|
const DebugTSTemplateLiteralType = class TSTemplateLiteralType {};
|
|
11292
10930
|
|
|
11293
|
-
constructors.TSTemplateLiteralType = TSTemplateLiteralType;
|
|
11294
|
-
|
|
11295
10931
|
class TSAsExpression {
|
|
11296
10932
|
type = 'TSAsExpression';
|
|
11297
10933
|
#internal;
|
|
@@ -11344,8 +10980,6 @@ class TSAsExpression {
|
|
|
11344
10980
|
|
|
11345
10981
|
const DebugTSAsExpression = class TSAsExpression {};
|
|
11346
10982
|
|
|
11347
|
-
constructors.TSAsExpression = TSAsExpression;
|
|
11348
|
-
|
|
11349
10983
|
class TSSatisfiesExpression {
|
|
11350
10984
|
type = 'TSSatisfiesExpression';
|
|
11351
10985
|
#internal;
|
|
@@ -11398,8 +11032,6 @@ class TSSatisfiesExpression {
|
|
|
11398
11032
|
|
|
11399
11033
|
const DebugTSSatisfiesExpression = class TSSatisfiesExpression {};
|
|
11400
11034
|
|
|
11401
|
-
constructors.TSSatisfiesExpression = TSSatisfiesExpression;
|
|
11402
|
-
|
|
11403
11035
|
class TSTypeAssertion {
|
|
11404
11036
|
type = 'TSTypeAssertion';
|
|
11405
11037
|
#internal;
|
|
@@ -11452,8 +11084,6 @@ class TSTypeAssertion {
|
|
|
11452
11084
|
|
|
11453
11085
|
const DebugTSTypeAssertion = class TSTypeAssertion {};
|
|
11454
11086
|
|
|
11455
|
-
constructors.TSTypeAssertion = TSTypeAssertion;
|
|
11456
|
-
|
|
11457
11087
|
class TSImportEqualsDeclaration {
|
|
11458
11088
|
type = 'TSImportEqualsDeclaration';
|
|
11459
11089
|
#internal;
|
|
@@ -11512,8 +11142,6 @@ class TSImportEqualsDeclaration {
|
|
|
11512
11142
|
|
|
11513
11143
|
const DebugTSImportEqualsDeclaration = class TSImportEqualsDeclaration {};
|
|
11514
11144
|
|
|
11515
|
-
constructors.TSImportEqualsDeclaration = TSImportEqualsDeclaration;
|
|
11516
|
-
|
|
11517
11145
|
function constructTSModuleReference(pos, ast) {
|
|
11518
11146
|
switch (ast.buffer[pos]) {
|
|
11519
11147
|
case 0:
|
|
@@ -11573,8 +11201,6 @@ class TSExternalModuleReference {
|
|
|
11573
11201
|
|
|
11574
11202
|
const DebugTSExternalModuleReference = class TSExternalModuleReference {};
|
|
11575
11203
|
|
|
11576
|
-
constructors.TSExternalModuleReference = TSExternalModuleReference;
|
|
11577
|
-
|
|
11578
11204
|
class TSNonNullExpression {
|
|
11579
11205
|
type = 'TSNonNullExpression';
|
|
11580
11206
|
#internal;
|
|
@@ -11621,8 +11247,6 @@ class TSNonNullExpression {
|
|
|
11621
11247
|
|
|
11622
11248
|
const DebugTSNonNullExpression = class TSNonNullExpression {};
|
|
11623
11249
|
|
|
11624
|
-
constructors.TSNonNullExpression = TSNonNullExpression;
|
|
11625
|
-
|
|
11626
11250
|
class Decorator {
|
|
11627
11251
|
type = 'Decorator';
|
|
11628
11252
|
#internal;
|
|
@@ -11669,8 +11293,6 @@ class Decorator {
|
|
|
11669
11293
|
|
|
11670
11294
|
const DebugDecorator = class Decorator {};
|
|
11671
11295
|
|
|
11672
|
-
constructors.Decorator = Decorator;
|
|
11673
|
-
|
|
11674
11296
|
class TSExportAssignment {
|
|
11675
11297
|
type = 'TSExportAssignment';
|
|
11676
11298
|
#internal;
|
|
@@ -11717,8 +11339,6 @@ class TSExportAssignment {
|
|
|
11717
11339
|
|
|
11718
11340
|
const DebugTSExportAssignment = class TSExportAssignment {};
|
|
11719
11341
|
|
|
11720
|
-
constructors.TSExportAssignment = TSExportAssignment;
|
|
11721
|
-
|
|
11722
11342
|
class TSNamespaceExportDeclaration {
|
|
11723
11343
|
type = 'TSNamespaceExportDeclaration';
|
|
11724
11344
|
#internal;
|
|
@@ -11765,8 +11385,6 @@ class TSNamespaceExportDeclaration {
|
|
|
11765
11385
|
|
|
11766
11386
|
const DebugTSNamespaceExportDeclaration = class TSNamespaceExportDeclaration {};
|
|
11767
11387
|
|
|
11768
|
-
constructors.TSNamespaceExportDeclaration = TSNamespaceExportDeclaration;
|
|
11769
|
-
|
|
11770
11388
|
class TSInstantiationExpression {
|
|
11771
11389
|
type = 'TSInstantiationExpression';
|
|
11772
11390
|
#internal;
|
|
@@ -11819,8 +11437,6 @@ class TSInstantiationExpression {
|
|
|
11819
11437
|
|
|
11820
11438
|
const DebugTSInstantiationExpression = class TSInstantiationExpression {};
|
|
11821
11439
|
|
|
11822
|
-
constructors.TSInstantiationExpression = TSInstantiationExpression;
|
|
11823
|
-
|
|
11824
11440
|
function constructImportOrExportKind(pos, ast) {
|
|
11825
11441
|
switch (ast.buffer[pos]) {
|
|
11826
11442
|
case 0:
|
|
@@ -11884,8 +11500,6 @@ class JSDocNullableType {
|
|
|
11884
11500
|
|
|
11885
11501
|
const DebugJSDocNullableType = class JSDocNullableType {};
|
|
11886
11502
|
|
|
11887
|
-
constructors.JSDocNullableType = JSDocNullableType;
|
|
11888
|
-
|
|
11889
11503
|
class JSDocNonNullableType {
|
|
11890
11504
|
type = 'JSDocNonNullableType';
|
|
11891
11505
|
#internal;
|
|
@@ -11938,8 +11552,6 @@ class JSDocNonNullableType {
|
|
|
11938
11552
|
|
|
11939
11553
|
const DebugJSDocNonNullableType = class JSDocNonNullableType {};
|
|
11940
11554
|
|
|
11941
|
-
constructors.JSDocNonNullableType = JSDocNonNullableType;
|
|
11942
|
-
|
|
11943
11555
|
class JSDocUnknownType {
|
|
11944
11556
|
type = 'JSDocUnknownType';
|
|
11945
11557
|
#internal;
|
|
@@ -11980,8 +11592,6 @@ class JSDocUnknownType {
|
|
|
11980
11592
|
|
|
11981
11593
|
const DebugJSDocUnknownType = class JSDocUnknownType {};
|
|
11982
11594
|
|
|
11983
|
-
constructors.JSDocUnknownType = JSDocUnknownType;
|
|
11984
|
-
|
|
11985
11595
|
function constructCommentKind(pos, ast) {
|
|
11986
11596
|
switch (ast.buffer[pos]) {
|
|
11987
11597
|
case 0:
|
|
@@ -12037,8 +11647,6 @@ class Comment {
|
|
|
12037
11647
|
|
|
12038
11648
|
const DebugComment = class Comment {};
|
|
12039
11649
|
|
|
12040
|
-
constructors.Comment = Comment;
|
|
12041
|
-
|
|
12042
11650
|
class NameSpan {
|
|
12043
11651
|
#internal;
|
|
12044
11652
|
|
|
@@ -12085,8 +11693,6 @@ class NameSpan {
|
|
|
12085
11693
|
|
|
12086
11694
|
const DebugNameSpan = class NameSpan {};
|
|
12087
11695
|
|
|
12088
|
-
constructors.NameSpan = NameSpan;
|
|
12089
|
-
|
|
12090
11696
|
class ImportEntry {
|
|
12091
11697
|
#internal;
|
|
12092
11698
|
|
|
@@ -12131,8 +11737,6 @@ class ImportEntry {
|
|
|
12131
11737
|
|
|
12132
11738
|
const DebugImportEntry = class ImportEntry {};
|
|
12133
11739
|
|
|
12134
|
-
constructors.ImportEntry = ImportEntry;
|
|
12135
|
-
|
|
12136
11740
|
function constructImportImportName(pos, ast) {
|
|
12137
11741
|
switch (ast.buffer[pos]) {
|
|
12138
11742
|
case 0:
|
|
@@ -12214,8 +11818,6 @@ class ExportEntry {
|
|
|
12214
11818
|
|
|
12215
11819
|
const DebugExportEntry = class ExportEntry {};
|
|
12216
11820
|
|
|
12217
|
-
constructors.ExportEntry = ExportEntry;
|
|
12218
|
-
|
|
12219
11821
|
function constructExportImportName(pos, ast) {
|
|
12220
11822
|
switch (ast.buffer[pos]) {
|
|
12221
11823
|
case 0:
|
|
@@ -12301,8 +11903,6 @@ class DynamicImport {
|
|
|
12301
11903
|
|
|
12302
11904
|
const DebugDynamicImport = class DynamicImport {};
|
|
12303
11905
|
|
|
12304
|
-
constructors.DynamicImport = DynamicImport;
|
|
12305
|
-
|
|
12306
11906
|
function constructAssignmentOperator(pos, ast) {
|
|
12307
11907
|
switch (ast.buffer[pos]) {
|
|
12308
11908
|
case 0:
|
|
@@ -12476,8 +12076,6 @@ class Span {
|
|
|
12476
12076
|
|
|
12477
12077
|
const DebugSpan = class Span {};
|
|
12478
12078
|
|
|
12479
|
-
constructors.Span = Span;
|
|
12480
|
-
|
|
12481
12079
|
class SourceType {
|
|
12482
12080
|
#internal;
|
|
12483
12081
|
|
|
@@ -12510,8 +12108,6 @@ class SourceType {
|
|
|
12510
12108
|
|
|
12511
12109
|
const DebugSourceType = class SourceType {};
|
|
12512
12110
|
|
|
12513
|
-
constructors.SourceType = SourceType;
|
|
12514
|
-
|
|
12515
12111
|
function constructModuleKind(pos, ast) {
|
|
12516
12112
|
switch (ast.buffer[pos]) {
|
|
12517
12113
|
case 0:
|
|
@@ -12578,8 +12174,6 @@ class RawTransferData {
|
|
|
12578
12174
|
|
|
12579
12175
|
const DebugRawTransferData = class RawTransferData {};
|
|
12580
12176
|
|
|
12581
|
-
constructors.RawTransferData = RawTransferData;
|
|
12582
|
-
|
|
12583
12177
|
class Error {
|
|
12584
12178
|
#internal;
|
|
12585
12179
|
|
|
@@ -12644,8 +12238,6 @@ class Error {
|
|
|
12644
12238
|
|
|
12645
12239
|
const DebugError = class Error {};
|
|
12646
12240
|
|
|
12647
|
-
constructors.Error = Error;
|
|
12648
|
-
|
|
12649
12241
|
function constructErrorSeverity(pos, ast) {
|
|
12650
12242
|
switch (ast.buffer[pos]) {
|
|
12651
12243
|
case 0:
|
|
@@ -12705,8 +12297,6 @@ class ErrorLabel {
|
|
|
12705
12297
|
|
|
12706
12298
|
const DebugErrorLabel = class ErrorLabel {};
|
|
12707
12299
|
|
|
12708
|
-
constructors.ErrorLabel = ErrorLabel;
|
|
12709
|
-
|
|
12710
12300
|
class EcmaScriptModule {
|
|
12711
12301
|
#internal;
|
|
12712
12302
|
|
|
@@ -12778,8 +12368,6 @@ class EcmaScriptModule {
|
|
|
12778
12368
|
|
|
12779
12369
|
const DebugEcmaScriptModule = class EcmaScriptModule {};
|
|
12780
12370
|
|
|
12781
|
-
constructors.EcmaScriptModule = EcmaScriptModule;
|
|
12782
|
-
|
|
12783
12371
|
class StaticImport {
|
|
12784
12372
|
#internal;
|
|
12785
12373
|
|
|
@@ -12832,8 +12420,6 @@ class StaticImport {
|
|
|
12832
12420
|
|
|
12833
12421
|
const DebugStaticImport = class StaticImport {};
|
|
12834
12422
|
|
|
12835
|
-
constructors.StaticImport = StaticImport;
|
|
12836
|
-
|
|
12837
12423
|
class StaticExport {
|
|
12838
12424
|
#internal;
|
|
12839
12425
|
|
|
@@ -12880,8 +12466,6 @@ class StaticExport {
|
|
|
12880
12466
|
|
|
12881
12467
|
const DebugStaticExport = class StaticExport {};
|
|
12882
12468
|
|
|
12883
|
-
constructors.StaticExport = StaticExport;
|
|
12884
|
-
|
|
12885
12469
|
function constructStr(pos, ast) {
|
|
12886
12470
|
const pos32 = pos >> 2,
|
|
12887
12471
|
{ buffer } = ast,
|
|
@@ -14305,3 +13889,209 @@ function constructVecExportEntry(pos, ast) {
|
|
|
14305
13889
|
function constructExportEntry(pos, ast) {
|
|
14306
13890
|
return new ExportEntry(pos, ast);
|
|
14307
13891
|
}
|
|
13892
|
+
|
|
13893
|
+
module.exports = {
|
|
13894
|
+
Program,
|
|
13895
|
+
IdentifierName,
|
|
13896
|
+
IdentifierReference,
|
|
13897
|
+
BindingIdentifier,
|
|
13898
|
+
LabelIdentifier,
|
|
13899
|
+
ThisExpression,
|
|
13900
|
+
ArrayExpression,
|
|
13901
|
+
Elision,
|
|
13902
|
+
ObjectExpression,
|
|
13903
|
+
ObjectProperty,
|
|
13904
|
+
TemplateLiteral,
|
|
13905
|
+
TaggedTemplateExpression,
|
|
13906
|
+
TemplateElement,
|
|
13907
|
+
TemplateElementValue,
|
|
13908
|
+
ComputedMemberExpression,
|
|
13909
|
+
StaticMemberExpression,
|
|
13910
|
+
PrivateFieldExpression,
|
|
13911
|
+
CallExpression,
|
|
13912
|
+
NewExpression,
|
|
13913
|
+
MetaProperty,
|
|
13914
|
+
SpreadElement,
|
|
13915
|
+
UpdateExpression,
|
|
13916
|
+
UnaryExpression,
|
|
13917
|
+
BinaryExpression,
|
|
13918
|
+
PrivateInExpression,
|
|
13919
|
+
LogicalExpression,
|
|
13920
|
+
ConditionalExpression,
|
|
13921
|
+
AssignmentExpression,
|
|
13922
|
+
ArrayAssignmentTarget,
|
|
13923
|
+
ObjectAssignmentTarget,
|
|
13924
|
+
AssignmentTargetRest,
|
|
13925
|
+
AssignmentTargetWithDefault,
|
|
13926
|
+
AssignmentTargetPropertyIdentifier,
|
|
13927
|
+
AssignmentTargetPropertyProperty,
|
|
13928
|
+
SequenceExpression,
|
|
13929
|
+
Super,
|
|
13930
|
+
AwaitExpression,
|
|
13931
|
+
ChainExpression,
|
|
13932
|
+
ParenthesizedExpression,
|
|
13933
|
+
Directive,
|
|
13934
|
+
Hashbang,
|
|
13935
|
+
BlockStatement,
|
|
13936
|
+
VariableDeclaration,
|
|
13937
|
+
VariableDeclarator,
|
|
13938
|
+
EmptyStatement,
|
|
13939
|
+
ExpressionStatement,
|
|
13940
|
+
IfStatement,
|
|
13941
|
+
DoWhileStatement,
|
|
13942
|
+
WhileStatement,
|
|
13943
|
+
ForStatement,
|
|
13944
|
+
ForInStatement,
|
|
13945
|
+
ForOfStatement,
|
|
13946
|
+
ContinueStatement,
|
|
13947
|
+
BreakStatement,
|
|
13948
|
+
ReturnStatement,
|
|
13949
|
+
WithStatement,
|
|
13950
|
+
SwitchStatement,
|
|
13951
|
+
SwitchCase,
|
|
13952
|
+
LabeledStatement,
|
|
13953
|
+
ThrowStatement,
|
|
13954
|
+
TryStatement,
|
|
13955
|
+
CatchClause,
|
|
13956
|
+
CatchParameter,
|
|
13957
|
+
DebuggerStatement,
|
|
13958
|
+
BindingPattern,
|
|
13959
|
+
AssignmentPattern,
|
|
13960
|
+
ObjectPattern,
|
|
13961
|
+
BindingProperty,
|
|
13962
|
+
ArrayPattern,
|
|
13963
|
+
BindingRestElement,
|
|
13964
|
+
Function,
|
|
13965
|
+
FormalParameters,
|
|
13966
|
+
FormalParameter,
|
|
13967
|
+
FunctionBody,
|
|
13968
|
+
ArrowFunctionExpression,
|
|
13969
|
+
YieldExpression,
|
|
13970
|
+
Class,
|
|
13971
|
+
ClassBody,
|
|
13972
|
+
MethodDefinition,
|
|
13973
|
+
PropertyDefinition,
|
|
13974
|
+
PrivateIdentifier,
|
|
13975
|
+
StaticBlock,
|
|
13976
|
+
AccessorProperty,
|
|
13977
|
+
ImportExpression,
|
|
13978
|
+
ImportDeclaration,
|
|
13979
|
+
ImportSpecifier,
|
|
13980
|
+
ImportDefaultSpecifier,
|
|
13981
|
+
ImportNamespaceSpecifier,
|
|
13982
|
+
WithClause,
|
|
13983
|
+
ImportAttribute,
|
|
13984
|
+
ExportNamedDeclaration,
|
|
13985
|
+
ExportDefaultDeclaration,
|
|
13986
|
+
ExportAllDeclaration,
|
|
13987
|
+
ExportSpecifier,
|
|
13988
|
+
V8IntrinsicExpression,
|
|
13989
|
+
BooleanLiteral,
|
|
13990
|
+
NullLiteral,
|
|
13991
|
+
NumericLiteral,
|
|
13992
|
+
StringLiteral,
|
|
13993
|
+
BigIntLiteral,
|
|
13994
|
+
RegExpLiteral,
|
|
13995
|
+
RegExp,
|
|
13996
|
+
RegExpPattern,
|
|
13997
|
+
RegExpFlags,
|
|
13998
|
+
JSXElement,
|
|
13999
|
+
JSXOpeningElement,
|
|
14000
|
+
JSXClosingElement,
|
|
14001
|
+
JSXFragment,
|
|
14002
|
+
JSXOpeningFragment,
|
|
14003
|
+
JSXClosingFragment,
|
|
14004
|
+
JSXNamespacedName,
|
|
14005
|
+
JSXMemberExpression,
|
|
14006
|
+
JSXExpressionContainer,
|
|
14007
|
+
JSXEmptyExpression,
|
|
14008
|
+
JSXAttribute,
|
|
14009
|
+
JSXSpreadAttribute,
|
|
14010
|
+
JSXIdentifier,
|
|
14011
|
+
JSXSpreadChild,
|
|
14012
|
+
JSXText,
|
|
14013
|
+
TSThisParameter,
|
|
14014
|
+
TSEnumDeclaration,
|
|
14015
|
+
TSEnumBody,
|
|
14016
|
+
TSEnumMember,
|
|
14017
|
+
TSTypeAnnotation,
|
|
14018
|
+
TSLiteralType,
|
|
14019
|
+
TSConditionalType,
|
|
14020
|
+
TSUnionType,
|
|
14021
|
+
TSIntersectionType,
|
|
14022
|
+
TSParenthesizedType,
|
|
14023
|
+
TSTypeOperator,
|
|
14024
|
+
TSArrayType,
|
|
14025
|
+
TSIndexedAccessType,
|
|
14026
|
+
TSTupleType,
|
|
14027
|
+
TSNamedTupleMember,
|
|
14028
|
+
TSOptionalType,
|
|
14029
|
+
TSRestType,
|
|
14030
|
+
TSAnyKeyword,
|
|
14031
|
+
TSStringKeyword,
|
|
14032
|
+
TSBooleanKeyword,
|
|
14033
|
+
TSNumberKeyword,
|
|
14034
|
+
TSNeverKeyword,
|
|
14035
|
+
TSIntrinsicKeyword,
|
|
14036
|
+
TSUnknownKeyword,
|
|
14037
|
+
TSNullKeyword,
|
|
14038
|
+
TSUndefinedKeyword,
|
|
14039
|
+
TSVoidKeyword,
|
|
14040
|
+
TSSymbolKeyword,
|
|
14041
|
+
TSThisType,
|
|
14042
|
+
TSObjectKeyword,
|
|
14043
|
+
TSBigIntKeyword,
|
|
14044
|
+
TSTypeReference,
|
|
14045
|
+
TSQualifiedName,
|
|
14046
|
+
TSTypeParameterInstantiation,
|
|
14047
|
+
TSTypeParameter,
|
|
14048
|
+
TSTypeParameterDeclaration,
|
|
14049
|
+
TSTypeAliasDeclaration,
|
|
14050
|
+
TSClassImplements,
|
|
14051
|
+
TSInterfaceDeclaration,
|
|
14052
|
+
TSInterfaceBody,
|
|
14053
|
+
TSPropertySignature,
|
|
14054
|
+
TSIndexSignature,
|
|
14055
|
+
TSCallSignatureDeclaration,
|
|
14056
|
+
TSMethodSignature,
|
|
14057
|
+
TSConstructSignatureDeclaration,
|
|
14058
|
+
TSIndexSignatureName,
|
|
14059
|
+
TSInterfaceHeritage,
|
|
14060
|
+
TSTypePredicate,
|
|
14061
|
+
TSModuleDeclaration,
|
|
14062
|
+
TSModuleBlock,
|
|
14063
|
+
TSTypeLiteral,
|
|
14064
|
+
TSInferType,
|
|
14065
|
+
TSTypeQuery,
|
|
14066
|
+
TSImportType,
|
|
14067
|
+
TSFunctionType,
|
|
14068
|
+
TSConstructorType,
|
|
14069
|
+
TSMappedType,
|
|
14070
|
+
TSTemplateLiteralType,
|
|
14071
|
+
TSAsExpression,
|
|
14072
|
+
TSSatisfiesExpression,
|
|
14073
|
+
TSTypeAssertion,
|
|
14074
|
+
TSImportEqualsDeclaration,
|
|
14075
|
+
TSExternalModuleReference,
|
|
14076
|
+
TSNonNullExpression,
|
|
14077
|
+
Decorator,
|
|
14078
|
+
TSExportAssignment,
|
|
14079
|
+
TSNamespaceExportDeclaration,
|
|
14080
|
+
TSInstantiationExpression,
|
|
14081
|
+
JSDocNullableType,
|
|
14082
|
+
JSDocNonNullableType,
|
|
14083
|
+
JSDocUnknownType,
|
|
14084
|
+
Comment,
|
|
14085
|
+
NameSpan,
|
|
14086
|
+
ImportEntry,
|
|
14087
|
+
ExportEntry,
|
|
14088
|
+
DynamicImport,
|
|
14089
|
+
Span,
|
|
14090
|
+
SourceType,
|
|
14091
|
+
RawTransferData,
|
|
14092
|
+
Error,
|
|
14093
|
+
ErrorLabel,
|
|
14094
|
+
EcmaScriptModule,
|
|
14095
|
+
StaticImport,
|
|
14096
|
+
StaticExport,
|
|
14097
|
+
};
|