oxc-parser 0.86.0 → 0.88.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/{bindings.js → bindings.mjs} +15 -12
- package/generated/constants.mjs +9 -0
- package/generated/deserialize/{js.js → js.mjs} +1 -5
- package/generated/deserialize/{ts.js → ts.mjs} +1 -5
- package/generated/lazy/{constructors.js → constructors.mjs} +206 -415
- package/generated/lazy/{types.js → types.mjs} +3 -11
- package/generated/lazy/{walk.js → walk.mjs} +148 -150
- package/{index.js → index.mjs} +18 -22
- package/package.json +35 -36
- package/raw-transfer/{common.js → common.mjs} +8 -16
- package/raw-transfer/{eager.js → eager.mjs} +7 -8
- package/raw-transfer/{lazy-common.js → lazy-common.mjs} +2 -6
- package/raw-transfer/{lazy.js → lazy.mjs} +9 -12
- package/raw-transfer/{node-array.js → node-array.mjs} +2 -6
- package/raw-transfer/{supported.js → supported.mjs} +2 -6
- package/raw-transfer/{visitor.js → visitor.mjs} +5 -11
- package/generated/constants.js +0 -18
- package/wrap.cjs +0 -58
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
// Auto-generated code, DO NOT EDIT DIRECTLY!
|
|
2
2
|
// To edit this generated file you have to edit `tasks/ast_tools/src/generators/raw_transfer_lazy.rs`.
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const { TOKEN, constructorError } = require('../../raw-transfer/lazy-common.js'),
|
|
7
|
-
NodeArray = require('../../raw-transfer/node-array.js');
|
|
4
|
+
import { constructorError, TOKEN } from '../../raw-transfer/lazy-common.mjs';
|
|
5
|
+
import { NodeArray } from '../../raw-transfer/node-array.mjs';
|
|
8
6
|
|
|
9
7
|
const textDecoder = new TextDecoder('utf-8', { ignoreBOM: true }),
|
|
10
8
|
decodeStr = textDecoder.decode.bind(textDecoder),
|
|
11
9
|
{ fromCodePoint } = String,
|
|
12
10
|
inspectSymbol = Symbol.for('nodejs.util.inspect.custom');
|
|
13
11
|
|
|
14
|
-
class Program {
|
|
12
|
+
export class Program {
|
|
15
13
|
type = 'Program';
|
|
16
14
|
#internal;
|
|
17
15
|
|
|
@@ -164,7 +162,7 @@ function constructExpression(pos, ast) {
|
|
|
164
162
|
}
|
|
165
163
|
}
|
|
166
164
|
|
|
167
|
-
class IdentifierName {
|
|
165
|
+
export class IdentifierName {
|
|
168
166
|
type = 'IdentifierName';
|
|
169
167
|
#internal;
|
|
170
168
|
|
|
@@ -212,7 +210,7 @@ class IdentifierName {
|
|
|
212
210
|
|
|
213
211
|
const DebugIdentifierName = class IdentifierName {};
|
|
214
212
|
|
|
215
|
-
class IdentifierReference {
|
|
213
|
+
export class IdentifierReference {
|
|
216
214
|
type = 'IdentifierReference';
|
|
217
215
|
#internal;
|
|
218
216
|
|
|
@@ -260,7 +258,7 @@ class IdentifierReference {
|
|
|
260
258
|
|
|
261
259
|
const DebugIdentifierReference = class IdentifierReference {};
|
|
262
260
|
|
|
263
|
-
class BindingIdentifier {
|
|
261
|
+
export class BindingIdentifier {
|
|
264
262
|
type = 'BindingIdentifier';
|
|
265
263
|
#internal;
|
|
266
264
|
|
|
@@ -308,7 +306,7 @@ class BindingIdentifier {
|
|
|
308
306
|
|
|
309
307
|
const DebugBindingIdentifier = class BindingIdentifier {};
|
|
310
308
|
|
|
311
|
-
class LabelIdentifier {
|
|
309
|
+
export class LabelIdentifier {
|
|
312
310
|
type = 'LabelIdentifier';
|
|
313
311
|
#internal;
|
|
314
312
|
|
|
@@ -356,7 +354,7 @@ class LabelIdentifier {
|
|
|
356
354
|
|
|
357
355
|
const DebugLabelIdentifier = class LabelIdentifier {};
|
|
358
356
|
|
|
359
|
-
class ThisExpression {
|
|
357
|
+
export class ThisExpression {
|
|
360
358
|
type = 'ThisExpression';
|
|
361
359
|
#internal;
|
|
362
360
|
|
|
@@ -396,7 +394,7 @@ class ThisExpression {
|
|
|
396
394
|
|
|
397
395
|
const DebugThisExpression = class ThisExpression {};
|
|
398
396
|
|
|
399
|
-
class ArrayExpression {
|
|
397
|
+
export class ArrayExpression {
|
|
400
398
|
type = 'ArrayExpression';
|
|
401
399
|
#internal;
|
|
402
400
|
|
|
@@ -541,7 +539,7 @@ function constructArrayExpressionElement(pos, ast) {
|
|
|
541
539
|
}
|
|
542
540
|
}
|
|
543
541
|
|
|
544
|
-
class Elision {
|
|
542
|
+
export class Elision {
|
|
545
543
|
type = 'Elision';
|
|
546
544
|
#internal;
|
|
547
545
|
|
|
@@ -581,7 +579,7 @@ class Elision {
|
|
|
581
579
|
|
|
582
580
|
const DebugElision = class Elision {};
|
|
583
581
|
|
|
584
|
-
class ObjectExpression {
|
|
582
|
+
export class ObjectExpression {
|
|
585
583
|
type = 'ObjectExpression';
|
|
586
584
|
#internal;
|
|
587
585
|
|
|
@@ -640,7 +638,7 @@ function constructObjectPropertyKind(pos, ast) {
|
|
|
640
638
|
}
|
|
641
639
|
}
|
|
642
640
|
|
|
643
|
-
class ObjectProperty {
|
|
641
|
+
export class ObjectProperty {
|
|
644
642
|
type = 'ObjectProperty';
|
|
645
643
|
#internal;
|
|
646
644
|
|
|
@@ -826,7 +824,7 @@ function constructPropertyKind(pos, ast) {
|
|
|
826
824
|
}
|
|
827
825
|
}
|
|
828
826
|
|
|
829
|
-
class TemplateLiteral {
|
|
827
|
+
export class TemplateLiteral {
|
|
830
828
|
type = 'TemplateLiteral';
|
|
831
829
|
#internal;
|
|
832
830
|
|
|
@@ -882,7 +880,7 @@ class TemplateLiteral {
|
|
|
882
880
|
|
|
883
881
|
const DebugTemplateLiteral = class TemplateLiteral {};
|
|
884
882
|
|
|
885
|
-
class TaggedTemplateExpression {
|
|
883
|
+
export class TaggedTemplateExpression {
|
|
886
884
|
type = 'TaggedTemplateExpression';
|
|
887
885
|
#internal;
|
|
888
886
|
|
|
@@ -940,7 +938,7 @@ class TaggedTemplateExpression {
|
|
|
940
938
|
|
|
941
939
|
const DebugTaggedTemplateExpression = class TaggedTemplateExpression {};
|
|
942
940
|
|
|
943
|
-
class TemplateElement {
|
|
941
|
+
export class TemplateElement {
|
|
944
942
|
type = 'TemplateElement';
|
|
945
943
|
#internal;
|
|
946
944
|
|
|
@@ -992,7 +990,7 @@ class TemplateElement {
|
|
|
992
990
|
|
|
993
991
|
const DebugTemplateElement = class TemplateElement {};
|
|
994
992
|
|
|
995
|
-
class TemplateElementValue {
|
|
993
|
+
export class TemplateElementValue {
|
|
996
994
|
#internal;
|
|
997
995
|
|
|
998
996
|
constructor(pos, ast) {
|
|
@@ -1047,7 +1045,7 @@ function constructMemberExpression(pos, ast) {
|
|
|
1047
1045
|
}
|
|
1048
1046
|
}
|
|
1049
1047
|
|
|
1050
|
-
class ComputedMemberExpression {
|
|
1048
|
+
export class ComputedMemberExpression {
|
|
1051
1049
|
type = 'ComputedMemberExpression';
|
|
1052
1050
|
#internal;
|
|
1053
1051
|
|
|
@@ -1105,7 +1103,7 @@ class ComputedMemberExpression {
|
|
|
1105
1103
|
|
|
1106
1104
|
const DebugComputedMemberExpression = class ComputedMemberExpression {};
|
|
1107
1105
|
|
|
1108
|
-
class StaticMemberExpression {
|
|
1106
|
+
export class StaticMemberExpression {
|
|
1109
1107
|
type = 'StaticMemberExpression';
|
|
1110
1108
|
#internal;
|
|
1111
1109
|
|
|
@@ -1163,7 +1161,7 @@ class StaticMemberExpression {
|
|
|
1163
1161
|
|
|
1164
1162
|
const DebugStaticMemberExpression = class StaticMemberExpression {};
|
|
1165
1163
|
|
|
1166
|
-
class PrivateFieldExpression {
|
|
1164
|
+
export class PrivateFieldExpression {
|
|
1167
1165
|
type = 'PrivateFieldExpression';
|
|
1168
1166
|
#internal;
|
|
1169
1167
|
|
|
@@ -1221,7 +1219,7 @@ class PrivateFieldExpression {
|
|
|
1221
1219
|
|
|
1222
1220
|
const DebugPrivateFieldExpression = class PrivateFieldExpression {};
|
|
1223
1221
|
|
|
1224
|
-
class CallExpression {
|
|
1222
|
+
export class CallExpression {
|
|
1225
1223
|
type = 'CallExpression';
|
|
1226
1224
|
#internal;
|
|
1227
1225
|
|
|
@@ -1287,7 +1285,7 @@ class CallExpression {
|
|
|
1287
1285
|
|
|
1288
1286
|
const DebugCallExpression = class CallExpression {};
|
|
1289
1287
|
|
|
1290
|
-
class NewExpression {
|
|
1288
|
+
export class NewExpression {
|
|
1291
1289
|
type = 'NewExpression';
|
|
1292
1290
|
#internal;
|
|
1293
1291
|
|
|
@@ -1347,7 +1345,7 @@ class NewExpression {
|
|
|
1347
1345
|
|
|
1348
1346
|
const DebugNewExpression = class NewExpression {};
|
|
1349
1347
|
|
|
1350
|
-
class MetaProperty {
|
|
1348
|
+
export class MetaProperty {
|
|
1351
1349
|
type = 'MetaProperty';
|
|
1352
1350
|
#internal;
|
|
1353
1351
|
|
|
@@ -1399,7 +1397,7 @@ class MetaProperty {
|
|
|
1399
1397
|
|
|
1400
1398
|
const DebugMetaProperty = class MetaProperty {};
|
|
1401
1399
|
|
|
1402
|
-
class SpreadElement {
|
|
1400
|
+
export class SpreadElement {
|
|
1403
1401
|
type = 'SpreadElement';
|
|
1404
1402
|
#internal;
|
|
1405
1403
|
|
|
@@ -1540,7 +1538,7 @@ function constructArgument(pos, ast) {
|
|
|
1540
1538
|
}
|
|
1541
1539
|
}
|
|
1542
1540
|
|
|
1543
|
-
class UpdateExpression {
|
|
1541
|
+
export class UpdateExpression {
|
|
1544
1542
|
type = 'UpdateExpression';
|
|
1545
1543
|
#internal;
|
|
1546
1544
|
|
|
@@ -1598,7 +1596,7 @@ class UpdateExpression {
|
|
|
1598
1596
|
|
|
1599
1597
|
const DebugUpdateExpression = class UpdateExpression {};
|
|
1600
1598
|
|
|
1601
|
-
class UnaryExpression {
|
|
1599
|
+
export class UnaryExpression {
|
|
1602
1600
|
type = 'UnaryExpression';
|
|
1603
1601
|
#internal;
|
|
1604
1602
|
|
|
@@ -1650,7 +1648,7 @@ class UnaryExpression {
|
|
|
1650
1648
|
|
|
1651
1649
|
const DebugUnaryExpression = class UnaryExpression {};
|
|
1652
1650
|
|
|
1653
|
-
class BinaryExpression {
|
|
1651
|
+
export class BinaryExpression {
|
|
1654
1652
|
type = 'BinaryExpression';
|
|
1655
1653
|
#internal;
|
|
1656
1654
|
|
|
@@ -1708,7 +1706,7 @@ class BinaryExpression {
|
|
|
1708
1706
|
|
|
1709
1707
|
const DebugBinaryExpression = class BinaryExpression {};
|
|
1710
1708
|
|
|
1711
|
-
class PrivateInExpression {
|
|
1709
|
+
export class PrivateInExpression {
|
|
1712
1710
|
type = 'PrivateInExpression';
|
|
1713
1711
|
#internal;
|
|
1714
1712
|
|
|
@@ -1760,7 +1758,7 @@ class PrivateInExpression {
|
|
|
1760
1758
|
|
|
1761
1759
|
const DebugPrivateInExpression = class PrivateInExpression {};
|
|
1762
1760
|
|
|
1763
|
-
class LogicalExpression {
|
|
1761
|
+
export class LogicalExpression {
|
|
1764
1762
|
type = 'LogicalExpression';
|
|
1765
1763
|
#internal;
|
|
1766
1764
|
|
|
@@ -1818,7 +1816,7 @@ class LogicalExpression {
|
|
|
1818
1816
|
|
|
1819
1817
|
const DebugLogicalExpression = class LogicalExpression {};
|
|
1820
1818
|
|
|
1821
|
-
class ConditionalExpression {
|
|
1819
|
+
export class ConditionalExpression {
|
|
1822
1820
|
type = 'ConditionalExpression';
|
|
1823
1821
|
#internal;
|
|
1824
1822
|
|
|
@@ -1876,7 +1874,7 @@ class ConditionalExpression {
|
|
|
1876
1874
|
|
|
1877
1875
|
const DebugConditionalExpression = class ConditionalExpression {};
|
|
1878
1876
|
|
|
1879
|
-
class AssignmentExpression {
|
|
1877
|
+
export class AssignmentExpression {
|
|
1880
1878
|
type = 'AssignmentExpression';
|
|
1881
1879
|
#internal;
|
|
1882
1880
|
|
|
@@ -1995,7 +1993,7 @@ function constructAssignmentTargetPattern(pos, ast) {
|
|
|
1995
1993
|
}
|
|
1996
1994
|
}
|
|
1997
1995
|
|
|
1998
|
-
class ArrayAssignmentTarget {
|
|
1996
|
+
export class ArrayAssignmentTarget {
|
|
1999
1997
|
type = 'ArrayAssignmentTarget';
|
|
2000
1998
|
#internal;
|
|
2001
1999
|
|
|
@@ -2043,7 +2041,7 @@ class ArrayAssignmentTarget {
|
|
|
2043
2041
|
|
|
2044
2042
|
const DebugArrayAssignmentTarget = class ArrayAssignmentTarget {};
|
|
2045
2043
|
|
|
2046
|
-
class ObjectAssignmentTarget {
|
|
2044
|
+
export class ObjectAssignmentTarget {
|
|
2047
2045
|
type = 'ObjectAssignmentTarget';
|
|
2048
2046
|
#internal;
|
|
2049
2047
|
|
|
@@ -2091,7 +2089,7 @@ class ObjectAssignmentTarget {
|
|
|
2091
2089
|
|
|
2092
2090
|
const DebugObjectAssignmentTarget = class ObjectAssignmentTarget {};
|
|
2093
2091
|
|
|
2094
|
-
class AssignmentTargetRest {
|
|
2092
|
+
export class AssignmentTargetRest {
|
|
2095
2093
|
type = 'AssignmentTargetRest';
|
|
2096
2094
|
#internal;
|
|
2097
2095
|
|
|
@@ -2166,7 +2164,7 @@ function constructAssignmentTargetMaybeDefault(pos, ast) {
|
|
|
2166
2164
|
}
|
|
2167
2165
|
}
|
|
2168
2166
|
|
|
2169
|
-
class AssignmentTargetWithDefault {
|
|
2167
|
+
export class AssignmentTargetWithDefault {
|
|
2170
2168
|
type = 'AssignmentTargetWithDefault';
|
|
2171
2169
|
#internal;
|
|
2172
2170
|
|
|
@@ -2229,7 +2227,7 @@ function constructAssignmentTargetProperty(pos, ast) {
|
|
|
2229
2227
|
}
|
|
2230
2228
|
}
|
|
2231
2229
|
|
|
2232
|
-
class AssignmentTargetPropertyIdentifier {
|
|
2230
|
+
export class AssignmentTargetPropertyIdentifier {
|
|
2233
2231
|
type = 'AssignmentTargetPropertyIdentifier';
|
|
2234
2232
|
#internal;
|
|
2235
2233
|
|
|
@@ -2281,7 +2279,7 @@ class AssignmentTargetPropertyIdentifier {
|
|
|
2281
2279
|
|
|
2282
2280
|
const DebugAssignmentTargetPropertyIdentifier = class AssignmentTargetPropertyIdentifier {};
|
|
2283
2281
|
|
|
2284
|
-
class AssignmentTargetPropertyProperty {
|
|
2282
|
+
export class AssignmentTargetPropertyProperty {
|
|
2285
2283
|
type = 'AssignmentTargetPropertyProperty';
|
|
2286
2284
|
#internal;
|
|
2287
2285
|
|
|
@@ -2339,7 +2337,7 @@ class AssignmentTargetPropertyProperty {
|
|
|
2339
2337
|
|
|
2340
2338
|
const DebugAssignmentTargetPropertyProperty = class AssignmentTargetPropertyProperty {};
|
|
2341
2339
|
|
|
2342
|
-
class SequenceExpression {
|
|
2340
|
+
export class SequenceExpression {
|
|
2343
2341
|
type = 'SequenceExpression';
|
|
2344
2342
|
#internal;
|
|
2345
2343
|
|
|
@@ -2387,7 +2385,7 @@ class SequenceExpression {
|
|
|
2387
2385
|
|
|
2388
2386
|
const DebugSequenceExpression = class SequenceExpression {};
|
|
2389
2387
|
|
|
2390
|
-
class Super {
|
|
2388
|
+
export class Super {
|
|
2391
2389
|
type = 'Super';
|
|
2392
2390
|
#internal;
|
|
2393
2391
|
|
|
@@ -2427,7 +2425,7 @@ class Super {
|
|
|
2427
2425
|
|
|
2428
2426
|
const DebugSuper = class Super {};
|
|
2429
2427
|
|
|
2430
|
-
class AwaitExpression {
|
|
2428
|
+
export class AwaitExpression {
|
|
2431
2429
|
type = 'AwaitExpression';
|
|
2432
2430
|
#internal;
|
|
2433
2431
|
|
|
@@ -2473,7 +2471,7 @@ class AwaitExpression {
|
|
|
2473
2471
|
|
|
2474
2472
|
const DebugAwaitExpression = class AwaitExpression {};
|
|
2475
2473
|
|
|
2476
|
-
class ChainExpression {
|
|
2474
|
+
export class ChainExpression {
|
|
2477
2475
|
type = 'ChainExpression';
|
|
2478
2476
|
#internal;
|
|
2479
2477
|
|
|
@@ -2536,7 +2534,7 @@ function constructChainElement(pos, ast) {
|
|
|
2536
2534
|
}
|
|
2537
2535
|
}
|
|
2538
2536
|
|
|
2539
|
-
class ParenthesizedExpression {
|
|
2537
|
+
export class ParenthesizedExpression {
|
|
2540
2538
|
type = 'ParenthesizedExpression';
|
|
2541
2539
|
#internal;
|
|
2542
2540
|
|
|
@@ -2653,7 +2651,7 @@ function constructStatement(pos, ast) {
|
|
|
2653
2651
|
}
|
|
2654
2652
|
}
|
|
2655
2653
|
|
|
2656
|
-
class Directive {
|
|
2654
|
+
export class Directive {
|
|
2657
2655
|
type = 'Directive';
|
|
2658
2656
|
#internal;
|
|
2659
2657
|
|
|
@@ -2707,7 +2705,7 @@ class Directive {
|
|
|
2707
2705
|
|
|
2708
2706
|
const DebugDirective = class Directive {};
|
|
2709
2707
|
|
|
2710
|
-
class Hashbang {
|
|
2708
|
+
export class Hashbang {
|
|
2711
2709
|
type = 'Hashbang';
|
|
2712
2710
|
#internal;
|
|
2713
2711
|
|
|
@@ -2755,7 +2753,7 @@ class Hashbang {
|
|
|
2755
2753
|
|
|
2756
2754
|
const DebugHashbang = class Hashbang {};
|
|
2757
2755
|
|
|
2758
|
-
class BlockStatement {
|
|
2756
|
+
export class BlockStatement {
|
|
2759
2757
|
type = 'BlockStatement';
|
|
2760
2758
|
#internal;
|
|
2761
2759
|
|
|
@@ -2826,7 +2824,7 @@ function constructDeclaration(pos, ast) {
|
|
|
2826
2824
|
}
|
|
2827
2825
|
}
|
|
2828
2826
|
|
|
2829
|
-
class VariableDeclaration {
|
|
2827
|
+
export class VariableDeclaration {
|
|
2830
2828
|
type = 'VariableDeclaration';
|
|
2831
2829
|
#internal;
|
|
2832
2830
|
|
|
@@ -2903,7 +2901,7 @@ function constructVariableDeclarationKind(pos, ast) {
|
|
|
2903
2901
|
}
|
|
2904
2902
|
}
|
|
2905
2903
|
|
|
2906
|
-
class VariableDeclarator {
|
|
2904
|
+
export class VariableDeclarator {
|
|
2907
2905
|
type = 'VariableDeclarator';
|
|
2908
2906
|
#internal;
|
|
2909
2907
|
|
|
@@ -2961,7 +2959,7 @@ class VariableDeclarator {
|
|
|
2961
2959
|
|
|
2962
2960
|
const DebugVariableDeclarator = class VariableDeclarator {};
|
|
2963
2961
|
|
|
2964
|
-
class EmptyStatement {
|
|
2962
|
+
export class EmptyStatement {
|
|
2965
2963
|
type = 'EmptyStatement';
|
|
2966
2964
|
#internal;
|
|
2967
2965
|
|
|
@@ -3001,7 +2999,7 @@ class EmptyStatement {
|
|
|
3001
2999
|
|
|
3002
3000
|
const DebugEmptyStatement = class EmptyStatement {};
|
|
3003
3001
|
|
|
3004
|
-
class ExpressionStatement {
|
|
3002
|
+
export class ExpressionStatement {
|
|
3005
3003
|
type = 'ExpressionStatement';
|
|
3006
3004
|
#internal;
|
|
3007
3005
|
|
|
@@ -3047,7 +3045,7 @@ class ExpressionStatement {
|
|
|
3047
3045
|
|
|
3048
3046
|
const DebugExpressionStatement = class ExpressionStatement {};
|
|
3049
3047
|
|
|
3050
|
-
class IfStatement {
|
|
3048
|
+
export class IfStatement {
|
|
3051
3049
|
type = 'IfStatement';
|
|
3052
3050
|
#internal;
|
|
3053
3051
|
|
|
@@ -3105,7 +3103,7 @@ class IfStatement {
|
|
|
3105
3103
|
|
|
3106
3104
|
const DebugIfStatement = class IfStatement {};
|
|
3107
3105
|
|
|
3108
|
-
class DoWhileStatement {
|
|
3106
|
+
export class DoWhileStatement {
|
|
3109
3107
|
type = 'DoWhileStatement';
|
|
3110
3108
|
#internal;
|
|
3111
3109
|
|
|
@@ -3157,7 +3155,7 @@ class DoWhileStatement {
|
|
|
3157
3155
|
|
|
3158
3156
|
const DebugDoWhileStatement = class DoWhileStatement {};
|
|
3159
3157
|
|
|
3160
|
-
class WhileStatement {
|
|
3158
|
+
export class WhileStatement {
|
|
3161
3159
|
type = 'WhileStatement';
|
|
3162
3160
|
#internal;
|
|
3163
3161
|
|
|
@@ -3209,7 +3207,7 @@ class WhileStatement {
|
|
|
3209
3207
|
|
|
3210
3208
|
const DebugWhileStatement = class WhileStatement {};
|
|
3211
3209
|
|
|
3212
|
-
class ForStatement {
|
|
3210
|
+
export class ForStatement {
|
|
3213
3211
|
type = 'ForStatement';
|
|
3214
3212
|
#internal;
|
|
3215
3213
|
|
|
@@ -3368,7 +3366,7 @@ function constructForStatementInit(pos, ast) {
|
|
|
3368
3366
|
}
|
|
3369
3367
|
}
|
|
3370
3368
|
|
|
3371
|
-
class ForInStatement {
|
|
3369
|
+
export class ForInStatement {
|
|
3372
3370
|
type = 'ForInStatement';
|
|
3373
3371
|
#internal;
|
|
3374
3372
|
|
|
@@ -3455,7 +3453,7 @@ function constructForStatementLeft(pos, ast) {
|
|
|
3455
3453
|
}
|
|
3456
3454
|
}
|
|
3457
3455
|
|
|
3458
|
-
class ForOfStatement {
|
|
3456
|
+
export class ForOfStatement {
|
|
3459
3457
|
type = 'ForOfStatement';
|
|
3460
3458
|
#internal;
|
|
3461
3459
|
|
|
@@ -3519,7 +3517,7 @@ class ForOfStatement {
|
|
|
3519
3517
|
|
|
3520
3518
|
const DebugForOfStatement = class ForOfStatement {};
|
|
3521
3519
|
|
|
3522
|
-
class ContinueStatement {
|
|
3520
|
+
export class ContinueStatement {
|
|
3523
3521
|
type = 'ContinueStatement';
|
|
3524
3522
|
#internal;
|
|
3525
3523
|
|
|
@@ -3565,7 +3563,7 @@ class ContinueStatement {
|
|
|
3565
3563
|
|
|
3566
3564
|
const DebugContinueStatement = class ContinueStatement {};
|
|
3567
3565
|
|
|
3568
|
-
class BreakStatement {
|
|
3566
|
+
export class BreakStatement {
|
|
3569
3567
|
type = 'BreakStatement';
|
|
3570
3568
|
#internal;
|
|
3571
3569
|
|
|
@@ -3611,7 +3609,7 @@ class BreakStatement {
|
|
|
3611
3609
|
|
|
3612
3610
|
const DebugBreakStatement = class BreakStatement {};
|
|
3613
3611
|
|
|
3614
|
-
class ReturnStatement {
|
|
3612
|
+
export class ReturnStatement {
|
|
3615
3613
|
type = 'ReturnStatement';
|
|
3616
3614
|
#internal;
|
|
3617
3615
|
|
|
@@ -3657,7 +3655,7 @@ class ReturnStatement {
|
|
|
3657
3655
|
|
|
3658
3656
|
const DebugReturnStatement = class ReturnStatement {};
|
|
3659
3657
|
|
|
3660
|
-
class WithStatement {
|
|
3658
|
+
export class WithStatement {
|
|
3661
3659
|
type = 'WithStatement';
|
|
3662
3660
|
#internal;
|
|
3663
3661
|
|
|
@@ -3709,7 +3707,7 @@ class WithStatement {
|
|
|
3709
3707
|
|
|
3710
3708
|
const DebugWithStatement = class WithStatement {};
|
|
3711
3709
|
|
|
3712
|
-
class SwitchStatement {
|
|
3710
|
+
export class SwitchStatement {
|
|
3713
3711
|
type = 'SwitchStatement';
|
|
3714
3712
|
#internal;
|
|
3715
3713
|
|
|
@@ -3763,7 +3761,7 @@ class SwitchStatement {
|
|
|
3763
3761
|
|
|
3764
3762
|
const DebugSwitchStatement = class SwitchStatement {};
|
|
3765
3763
|
|
|
3766
|
-
class SwitchCase {
|
|
3764
|
+
export class SwitchCase {
|
|
3767
3765
|
type = 'SwitchCase';
|
|
3768
3766
|
#internal;
|
|
3769
3767
|
|
|
@@ -3817,7 +3815,7 @@ class SwitchCase {
|
|
|
3817
3815
|
|
|
3818
3816
|
const DebugSwitchCase = class SwitchCase {};
|
|
3819
3817
|
|
|
3820
|
-
class LabeledStatement {
|
|
3818
|
+
export class LabeledStatement {
|
|
3821
3819
|
type = 'LabeledStatement';
|
|
3822
3820
|
#internal;
|
|
3823
3821
|
|
|
@@ -3869,7 +3867,7 @@ class LabeledStatement {
|
|
|
3869
3867
|
|
|
3870
3868
|
const DebugLabeledStatement = class LabeledStatement {};
|
|
3871
3869
|
|
|
3872
|
-
class ThrowStatement {
|
|
3870
|
+
export class ThrowStatement {
|
|
3873
3871
|
type = 'ThrowStatement';
|
|
3874
3872
|
#internal;
|
|
3875
3873
|
|
|
@@ -3915,7 +3913,7 @@ class ThrowStatement {
|
|
|
3915
3913
|
|
|
3916
3914
|
const DebugThrowStatement = class ThrowStatement {};
|
|
3917
3915
|
|
|
3918
|
-
class TryStatement {
|
|
3916
|
+
export class TryStatement {
|
|
3919
3917
|
type = 'TryStatement';
|
|
3920
3918
|
#internal;
|
|
3921
3919
|
|
|
@@ -3973,7 +3971,7 @@ class TryStatement {
|
|
|
3973
3971
|
|
|
3974
3972
|
const DebugTryStatement = class TryStatement {};
|
|
3975
3973
|
|
|
3976
|
-
class CatchClause {
|
|
3974
|
+
export class CatchClause {
|
|
3977
3975
|
type = 'CatchClause';
|
|
3978
3976
|
#internal;
|
|
3979
3977
|
|
|
@@ -4025,7 +4023,7 @@ class CatchClause {
|
|
|
4025
4023
|
|
|
4026
4024
|
const DebugCatchClause = class CatchClause {};
|
|
4027
4025
|
|
|
4028
|
-
class CatchParameter {
|
|
4026
|
+
export class CatchParameter {
|
|
4029
4027
|
#internal;
|
|
4030
4028
|
|
|
4031
4029
|
constructor(pos, ast) {
|
|
@@ -4057,7 +4055,7 @@ class CatchParameter {
|
|
|
4057
4055
|
|
|
4058
4056
|
const DebugCatchParameter = class CatchParameter {};
|
|
4059
4057
|
|
|
4060
|
-
class DebuggerStatement {
|
|
4058
|
+
export class DebuggerStatement {
|
|
4061
4059
|
type = 'DebuggerStatement';
|
|
4062
4060
|
#internal;
|
|
4063
4061
|
|
|
@@ -4097,7 +4095,7 @@ class DebuggerStatement {
|
|
|
4097
4095
|
|
|
4098
4096
|
const DebugDebuggerStatement = class DebuggerStatement {};
|
|
4099
4097
|
|
|
4100
|
-
class BindingPattern {
|
|
4098
|
+
export class BindingPattern {
|
|
4101
4099
|
#internal;
|
|
4102
4100
|
|
|
4103
4101
|
constructor(pos, ast) {
|
|
@@ -4156,7 +4154,7 @@ function constructBindingPatternKind(pos, ast) {
|
|
|
4156
4154
|
}
|
|
4157
4155
|
}
|
|
4158
4156
|
|
|
4159
|
-
class AssignmentPattern {
|
|
4157
|
+
export class AssignmentPattern {
|
|
4160
4158
|
type = 'AssignmentPattern';
|
|
4161
4159
|
#internal;
|
|
4162
4160
|
|
|
@@ -4208,7 +4206,7 @@ class AssignmentPattern {
|
|
|
4208
4206
|
|
|
4209
4207
|
const DebugAssignmentPattern = class AssignmentPattern {};
|
|
4210
4208
|
|
|
4211
|
-
class ObjectPattern {
|
|
4209
|
+
export class ObjectPattern {
|
|
4212
4210
|
type = 'ObjectPattern';
|
|
4213
4211
|
#internal;
|
|
4214
4212
|
|
|
@@ -4256,7 +4254,7 @@ class ObjectPattern {
|
|
|
4256
4254
|
|
|
4257
4255
|
const DebugObjectPattern = class ObjectPattern {};
|
|
4258
4256
|
|
|
4259
|
-
class BindingProperty {
|
|
4257
|
+
export class BindingProperty {
|
|
4260
4258
|
type = 'BindingProperty';
|
|
4261
4259
|
#internal;
|
|
4262
4260
|
|
|
@@ -4320,7 +4318,7 @@ class BindingProperty {
|
|
|
4320
4318
|
|
|
4321
4319
|
const DebugBindingProperty = class BindingProperty {};
|
|
4322
4320
|
|
|
4323
|
-
class ArrayPattern {
|
|
4321
|
+
export class ArrayPattern {
|
|
4324
4322
|
type = 'ArrayPattern';
|
|
4325
4323
|
#internal;
|
|
4326
4324
|
|
|
@@ -4368,7 +4366,7 @@ class ArrayPattern {
|
|
|
4368
4366
|
|
|
4369
4367
|
const DebugArrayPattern = class ArrayPattern {};
|
|
4370
4368
|
|
|
4371
|
-
class BindingRestElement {
|
|
4369
|
+
export class BindingRestElement {
|
|
4372
4370
|
type = 'BindingRestElement';
|
|
4373
4371
|
#internal;
|
|
4374
4372
|
|
|
@@ -4414,7 +4412,7 @@ class BindingRestElement {
|
|
|
4414
4412
|
|
|
4415
4413
|
const DebugBindingRestElement = class BindingRestElement {};
|
|
4416
4414
|
|
|
4417
|
-
class Function {
|
|
4415
|
+
export class Function {
|
|
4418
4416
|
#internal;
|
|
4419
4417
|
|
|
4420
4418
|
constructor(pos, ast) {
|
|
@@ -4521,7 +4519,7 @@ function constructFunctionType(pos, ast) {
|
|
|
4521
4519
|
}
|
|
4522
4520
|
}
|
|
4523
4521
|
|
|
4524
|
-
class FormalParameters {
|
|
4522
|
+
export class FormalParameters {
|
|
4525
4523
|
type = 'FormalParameters';
|
|
4526
4524
|
#internal;
|
|
4527
4525
|
|
|
@@ -4575,7 +4573,7 @@ class FormalParameters {
|
|
|
4575
4573
|
|
|
4576
4574
|
const DebugFormalParameters = class FormalParameters {};
|
|
4577
4575
|
|
|
4578
|
-
class FormalParameter {
|
|
4576
|
+
export class FormalParameter {
|
|
4579
4577
|
#internal;
|
|
4580
4578
|
|
|
4581
4579
|
constructor(pos, ast) {
|
|
@@ -4630,7 +4628,7 @@ function constructFormalParameterKind(pos, ast) {
|
|
|
4630
4628
|
}
|
|
4631
4629
|
}
|
|
4632
4630
|
|
|
4633
|
-
class FunctionBody {
|
|
4631
|
+
export class FunctionBody {
|
|
4634
4632
|
type = 'FunctionBody';
|
|
4635
4633
|
#internal;
|
|
4636
4634
|
|
|
@@ -4678,7 +4676,7 @@ class FunctionBody {
|
|
|
4678
4676
|
|
|
4679
4677
|
const DebugFunctionBody = class FunctionBody {};
|
|
4680
4678
|
|
|
4681
|
-
class ArrowFunctionExpression {
|
|
4679
|
+
export class ArrowFunctionExpression {
|
|
4682
4680
|
type = 'ArrowFunctionExpression';
|
|
4683
4681
|
#internal;
|
|
4684
4682
|
|
|
@@ -4754,7 +4752,7 @@ class ArrowFunctionExpression {
|
|
|
4754
4752
|
|
|
4755
4753
|
const DebugArrowFunctionExpression = class ArrowFunctionExpression {};
|
|
4756
4754
|
|
|
4757
|
-
class YieldExpression {
|
|
4755
|
+
export class YieldExpression {
|
|
4758
4756
|
type = 'YieldExpression';
|
|
4759
4757
|
#internal;
|
|
4760
4758
|
|
|
@@ -4806,7 +4804,7 @@ class YieldExpression {
|
|
|
4806
4804
|
|
|
4807
4805
|
const DebugYieldExpression = class YieldExpression {};
|
|
4808
4806
|
|
|
4809
|
-
class Class {
|
|
4807
|
+
export class Class {
|
|
4810
4808
|
#internal;
|
|
4811
4809
|
|
|
4812
4810
|
constructor(pos, ast) {
|
|
@@ -4919,7 +4917,7 @@ function constructClassType(pos, ast) {
|
|
|
4919
4917
|
}
|
|
4920
4918
|
}
|
|
4921
4919
|
|
|
4922
|
-
class ClassBody {
|
|
4920
|
+
export class ClassBody {
|
|
4923
4921
|
type = 'ClassBody';
|
|
4924
4922
|
#internal;
|
|
4925
4923
|
|
|
@@ -4984,7 +4982,7 @@ function constructClassElement(pos, ast) {
|
|
|
4984
4982
|
}
|
|
4985
4983
|
}
|
|
4986
4984
|
|
|
4987
|
-
class MethodDefinition {
|
|
4985
|
+
export class MethodDefinition {
|
|
4988
4986
|
#internal;
|
|
4989
4987
|
|
|
4990
4988
|
constructor(pos, ast) {
|
|
@@ -5095,7 +5093,7 @@ function constructMethodDefinitionType(pos, ast) {
|
|
|
5095
5093
|
}
|
|
5096
5094
|
}
|
|
5097
5095
|
|
|
5098
|
-
class PropertyDefinition {
|
|
5096
|
+
export class PropertyDefinition {
|
|
5099
5097
|
#internal;
|
|
5100
5098
|
|
|
5101
5099
|
constructor(pos, ast) {
|
|
@@ -5239,7 +5237,7 @@ function constructMethodDefinitionKind(pos, ast) {
|
|
|
5239
5237
|
}
|
|
5240
5238
|
}
|
|
5241
5239
|
|
|
5242
|
-
class PrivateIdentifier {
|
|
5240
|
+
export class PrivateIdentifier {
|
|
5243
5241
|
type = 'PrivateIdentifier';
|
|
5244
5242
|
#internal;
|
|
5245
5243
|
|
|
@@ -5287,7 +5285,7 @@ class PrivateIdentifier {
|
|
|
5287
5285
|
|
|
5288
5286
|
const DebugPrivateIdentifier = class PrivateIdentifier {};
|
|
5289
5287
|
|
|
5290
|
-
class StaticBlock {
|
|
5288
|
+
export class StaticBlock {
|
|
5291
5289
|
type = 'StaticBlock';
|
|
5292
5290
|
#internal;
|
|
5293
5291
|
|
|
@@ -5365,7 +5363,7 @@ function constructAccessorPropertyType(pos, ast) {
|
|
|
5365
5363
|
}
|
|
5366
5364
|
}
|
|
5367
5365
|
|
|
5368
|
-
class AccessorProperty {
|
|
5366
|
+
export class AccessorProperty {
|
|
5369
5367
|
#internal;
|
|
5370
5368
|
|
|
5371
5369
|
constructor(pos, ast) {
|
|
@@ -5465,7 +5463,7 @@ class AccessorProperty {
|
|
|
5465
5463
|
|
|
5466
5464
|
const DebugAccessorProperty = class AccessorProperty {};
|
|
5467
5465
|
|
|
5468
|
-
class ImportExpression {
|
|
5466
|
+
export class ImportExpression {
|
|
5469
5467
|
type = 'ImportExpression';
|
|
5470
5468
|
#internal;
|
|
5471
5469
|
|
|
@@ -5523,7 +5521,7 @@ class ImportExpression {
|
|
|
5523
5521
|
|
|
5524
5522
|
const DebugImportExpression = class ImportExpression {};
|
|
5525
5523
|
|
|
5526
|
-
class ImportDeclaration {
|
|
5524
|
+
export class ImportDeclaration {
|
|
5527
5525
|
type = 'ImportDeclaration';
|
|
5528
5526
|
#internal;
|
|
5529
5527
|
|
|
@@ -5619,7 +5617,7 @@ function constructImportDeclarationSpecifier(pos, ast) {
|
|
|
5619
5617
|
}
|
|
5620
5618
|
}
|
|
5621
5619
|
|
|
5622
|
-
class ImportSpecifier {
|
|
5620
|
+
export class ImportSpecifier {
|
|
5623
5621
|
type = 'ImportSpecifier';
|
|
5624
5622
|
#internal;
|
|
5625
5623
|
|
|
@@ -5677,7 +5675,7 @@ class ImportSpecifier {
|
|
|
5677
5675
|
|
|
5678
5676
|
const DebugImportSpecifier = class ImportSpecifier {};
|
|
5679
5677
|
|
|
5680
|
-
class ImportDefaultSpecifier {
|
|
5678
|
+
export class ImportDefaultSpecifier {
|
|
5681
5679
|
type = 'ImportDefaultSpecifier';
|
|
5682
5680
|
#internal;
|
|
5683
5681
|
|
|
@@ -5723,7 +5721,7 @@ class ImportDefaultSpecifier {
|
|
|
5723
5721
|
|
|
5724
5722
|
const DebugImportDefaultSpecifier = class ImportDefaultSpecifier {};
|
|
5725
5723
|
|
|
5726
|
-
class ImportNamespaceSpecifier {
|
|
5724
|
+
export class ImportNamespaceSpecifier {
|
|
5727
5725
|
type = 'ImportNamespaceSpecifier';
|
|
5728
5726
|
#internal;
|
|
5729
5727
|
|
|
@@ -5769,7 +5767,7 @@ class ImportNamespaceSpecifier {
|
|
|
5769
5767
|
|
|
5770
5768
|
const DebugImportNamespaceSpecifier = class ImportNamespaceSpecifier {};
|
|
5771
5769
|
|
|
5772
|
-
class WithClause {
|
|
5770
|
+
export class WithClause {
|
|
5773
5771
|
#internal;
|
|
5774
5772
|
|
|
5775
5773
|
constructor(pos, ast) {
|
|
@@ -5803,7 +5801,7 @@ class WithClause {
|
|
|
5803
5801
|
|
|
5804
5802
|
const DebugWithClause = class WithClause {};
|
|
5805
5803
|
|
|
5806
|
-
class ImportAttribute {
|
|
5804
|
+
export class ImportAttribute {
|
|
5807
5805
|
type = 'ImportAttribute';
|
|
5808
5806
|
#internal;
|
|
5809
5807
|
|
|
@@ -5866,7 +5864,7 @@ function constructImportAttributeKey(pos, ast) {
|
|
|
5866
5864
|
}
|
|
5867
5865
|
}
|
|
5868
5866
|
|
|
5869
|
-
class ExportNamedDeclaration {
|
|
5867
|
+
export class ExportNamedDeclaration {
|
|
5870
5868
|
type = 'ExportNamedDeclaration';
|
|
5871
5869
|
#internal;
|
|
5872
5870
|
|
|
@@ -5938,7 +5936,7 @@ class ExportNamedDeclaration {
|
|
|
5938
5936
|
|
|
5939
5937
|
const DebugExportNamedDeclaration = class ExportNamedDeclaration {};
|
|
5940
5938
|
|
|
5941
|
-
class ExportDefaultDeclaration {
|
|
5939
|
+
export class ExportDefaultDeclaration {
|
|
5942
5940
|
type = 'ExportDefaultDeclaration';
|
|
5943
5941
|
#internal;
|
|
5944
5942
|
|
|
@@ -5984,7 +5982,7 @@ class ExportDefaultDeclaration {
|
|
|
5984
5982
|
|
|
5985
5983
|
const DebugExportDefaultDeclaration = class ExportDefaultDeclaration {};
|
|
5986
5984
|
|
|
5987
|
-
class ExportAllDeclaration {
|
|
5985
|
+
export class ExportAllDeclaration {
|
|
5988
5986
|
type = 'ExportAllDeclaration';
|
|
5989
5987
|
#internal;
|
|
5990
5988
|
|
|
@@ -6048,7 +6046,7 @@ class ExportAllDeclaration {
|
|
|
6048
6046
|
|
|
6049
6047
|
const DebugExportAllDeclaration = class ExportAllDeclaration {};
|
|
6050
6048
|
|
|
6051
|
-
class ExportSpecifier {
|
|
6049
|
+
export class ExportSpecifier {
|
|
6052
6050
|
type = 'ExportSpecifier';
|
|
6053
6051
|
#internal;
|
|
6054
6052
|
|
|
@@ -6218,7 +6216,7 @@ function constructModuleExportName(pos, ast) {
|
|
|
6218
6216
|
}
|
|
6219
6217
|
}
|
|
6220
6218
|
|
|
6221
|
-
class V8IntrinsicExpression {
|
|
6219
|
+
export class V8IntrinsicExpression {
|
|
6222
6220
|
type = 'V8IntrinsicExpression';
|
|
6223
6221
|
#internal;
|
|
6224
6222
|
|
|
@@ -6272,7 +6270,7 @@ class V8IntrinsicExpression {
|
|
|
6272
6270
|
|
|
6273
6271
|
const DebugV8IntrinsicExpression = class V8IntrinsicExpression {};
|
|
6274
6272
|
|
|
6275
|
-
class BooleanLiteral {
|
|
6273
|
+
export class BooleanLiteral {
|
|
6276
6274
|
type = 'BooleanLiteral';
|
|
6277
6275
|
#internal;
|
|
6278
6276
|
|
|
@@ -6318,7 +6316,7 @@ class BooleanLiteral {
|
|
|
6318
6316
|
|
|
6319
6317
|
const DebugBooleanLiteral = class BooleanLiteral {};
|
|
6320
6318
|
|
|
6321
|
-
class NullLiteral {
|
|
6319
|
+
export class NullLiteral {
|
|
6322
6320
|
type = 'NullLiteral';
|
|
6323
6321
|
#internal;
|
|
6324
6322
|
|
|
@@ -6358,7 +6356,7 @@ class NullLiteral {
|
|
|
6358
6356
|
|
|
6359
6357
|
const DebugNullLiteral = class NullLiteral {};
|
|
6360
6358
|
|
|
6361
|
-
class NumericLiteral {
|
|
6359
|
+
export class NumericLiteral {
|
|
6362
6360
|
type = 'NumericLiteral';
|
|
6363
6361
|
#internal;
|
|
6364
6362
|
|
|
@@ -6412,7 +6410,7 @@ class NumericLiteral {
|
|
|
6412
6410
|
|
|
6413
6411
|
const DebugNumericLiteral = class NumericLiteral {};
|
|
6414
6412
|
|
|
6415
|
-
class StringLiteral {
|
|
6413
|
+
export class StringLiteral {
|
|
6416
6414
|
type = 'StringLiteral';
|
|
6417
6415
|
#internal;
|
|
6418
6416
|
|
|
@@ -6468,7 +6466,7 @@ class StringLiteral {
|
|
|
6468
6466
|
|
|
6469
6467
|
const DebugStringLiteral = class StringLiteral {};
|
|
6470
6468
|
|
|
6471
|
-
class BigIntLiteral {
|
|
6469
|
+
export class BigIntLiteral {
|
|
6472
6470
|
type = 'BigIntLiteral';
|
|
6473
6471
|
#internal;
|
|
6474
6472
|
|
|
@@ -6524,7 +6522,7 @@ class BigIntLiteral {
|
|
|
6524
6522
|
|
|
6525
6523
|
const DebugBigIntLiteral = class BigIntLiteral {};
|
|
6526
6524
|
|
|
6527
|
-
class RegExpLiteral {
|
|
6525
|
+
export class RegExpLiteral {
|
|
6528
6526
|
type = 'RegExpLiteral';
|
|
6529
6527
|
#internal;
|
|
6530
6528
|
|
|
@@ -6578,7 +6576,7 @@ class RegExpLiteral {
|
|
|
6578
6576
|
|
|
6579
6577
|
const DebugRegExpLiteral = class RegExpLiteral {};
|
|
6580
6578
|
|
|
6581
|
-
class RegExp {
|
|
6579
|
+
export class RegExp {
|
|
6582
6580
|
#internal;
|
|
6583
6581
|
|
|
6584
6582
|
constructor(pos, ast) {
|
|
@@ -6617,7 +6615,7 @@ class RegExp {
|
|
|
6617
6615
|
|
|
6618
6616
|
const DebugRegExp = class RegExp {};
|
|
6619
6617
|
|
|
6620
|
-
class RegExpPattern {
|
|
6618
|
+
export class RegExpPattern {
|
|
6621
6619
|
#internal;
|
|
6622
6620
|
|
|
6623
6621
|
constructor(pos, ast) {
|
|
@@ -6651,7 +6649,7 @@ class RegExpPattern {
|
|
|
6651
6649
|
|
|
6652
6650
|
const DebugRegExpPattern = class RegExpPattern {};
|
|
6653
6651
|
|
|
6654
|
-
class RegExpFlags {
|
|
6652
|
+
export class RegExpFlags {
|
|
6655
6653
|
#internal;
|
|
6656
6654
|
|
|
6657
6655
|
constructor(pos, ast) {
|
|
@@ -6676,7 +6674,7 @@ class RegExpFlags {
|
|
|
6676
6674
|
|
|
6677
6675
|
const DebugRegExpFlags = class RegExpFlags {};
|
|
6678
6676
|
|
|
6679
|
-
class JSXElement {
|
|
6677
|
+
export class JSXElement {
|
|
6680
6678
|
type = 'JSXElement';
|
|
6681
6679
|
#internal;
|
|
6682
6680
|
|
|
@@ -6736,7 +6734,7 @@ class JSXElement {
|
|
|
6736
6734
|
|
|
6737
6735
|
const DebugJSXElement = class JSXElement {};
|
|
6738
6736
|
|
|
6739
|
-
class JSXOpeningElement {
|
|
6737
|
+
export class JSXOpeningElement {
|
|
6740
6738
|
type = 'JSXOpeningElement';
|
|
6741
6739
|
#internal;
|
|
6742
6740
|
|
|
@@ -6796,7 +6794,7 @@ class JSXOpeningElement {
|
|
|
6796
6794
|
|
|
6797
6795
|
const DebugJSXOpeningElement = class JSXOpeningElement {};
|
|
6798
6796
|
|
|
6799
|
-
class JSXClosingElement {
|
|
6797
|
+
export class JSXClosingElement {
|
|
6800
6798
|
type = 'JSXClosingElement';
|
|
6801
6799
|
#internal;
|
|
6802
6800
|
|
|
@@ -6842,7 +6840,7 @@ class JSXClosingElement {
|
|
|
6842
6840
|
|
|
6843
6841
|
const DebugJSXClosingElement = class JSXClosingElement {};
|
|
6844
6842
|
|
|
6845
|
-
class JSXFragment {
|
|
6843
|
+
export class JSXFragment {
|
|
6846
6844
|
type = 'JSXFragment';
|
|
6847
6845
|
#internal;
|
|
6848
6846
|
|
|
@@ -6902,7 +6900,7 @@ class JSXFragment {
|
|
|
6902
6900
|
|
|
6903
6901
|
const DebugJSXFragment = class JSXFragment {};
|
|
6904
6902
|
|
|
6905
|
-
class JSXOpeningFragment {
|
|
6903
|
+
export class JSXOpeningFragment {
|
|
6906
6904
|
type = 'JSXOpeningFragment';
|
|
6907
6905
|
#internal;
|
|
6908
6906
|
|
|
@@ -6942,7 +6940,7 @@ class JSXOpeningFragment {
|
|
|
6942
6940
|
|
|
6943
6941
|
const DebugJSXOpeningFragment = class JSXOpeningFragment {};
|
|
6944
6942
|
|
|
6945
|
-
class JSXClosingFragment {
|
|
6943
|
+
export class JSXClosingFragment {
|
|
6946
6944
|
type = 'JSXClosingFragment';
|
|
6947
6945
|
#internal;
|
|
6948
6946
|
|
|
@@ -6999,7 +6997,7 @@ function constructJSXElementName(pos, ast) {
|
|
|
6999
6997
|
}
|
|
7000
6998
|
}
|
|
7001
6999
|
|
|
7002
|
-
class JSXNamespacedName {
|
|
7000
|
+
export class JSXNamespacedName {
|
|
7003
7001
|
type = 'JSXNamespacedName';
|
|
7004
7002
|
#internal;
|
|
7005
7003
|
|
|
@@ -7051,7 +7049,7 @@ class JSXNamespacedName {
|
|
|
7051
7049
|
|
|
7052
7050
|
const DebugJSXNamespacedName = class JSXNamespacedName {};
|
|
7053
7051
|
|
|
7054
|
-
class JSXMemberExpression {
|
|
7052
|
+
export class JSXMemberExpression {
|
|
7055
7053
|
type = 'JSXMemberExpression';
|
|
7056
7054
|
#internal;
|
|
7057
7055
|
|
|
@@ -7116,7 +7114,7 @@ function constructJSXMemberExpressionObject(pos, ast) {
|
|
|
7116
7114
|
}
|
|
7117
7115
|
}
|
|
7118
7116
|
|
|
7119
|
-
class JSXExpressionContainer {
|
|
7117
|
+
export class JSXExpressionContainer {
|
|
7120
7118
|
type = 'JSXExpressionContainer';
|
|
7121
7119
|
#internal;
|
|
7122
7120
|
|
|
@@ -7257,7 +7255,7 @@ function constructJSXExpression(pos, ast) {
|
|
|
7257
7255
|
}
|
|
7258
7256
|
}
|
|
7259
7257
|
|
|
7260
|
-
class JSXEmptyExpression {
|
|
7258
|
+
export class JSXEmptyExpression {
|
|
7261
7259
|
type = 'JSXEmptyExpression';
|
|
7262
7260
|
#internal;
|
|
7263
7261
|
|
|
@@ -7308,7 +7306,7 @@ function constructJSXAttributeItem(pos, ast) {
|
|
|
7308
7306
|
}
|
|
7309
7307
|
}
|
|
7310
7308
|
|
|
7311
|
-
class JSXAttribute {
|
|
7309
|
+
export class JSXAttribute {
|
|
7312
7310
|
type = 'JSXAttribute';
|
|
7313
7311
|
#internal;
|
|
7314
7312
|
|
|
@@ -7360,7 +7358,7 @@ class JSXAttribute {
|
|
|
7360
7358
|
|
|
7361
7359
|
const DebugJSXAttribute = class JSXAttribute {};
|
|
7362
7360
|
|
|
7363
|
-
class JSXSpreadAttribute {
|
|
7361
|
+
export class JSXSpreadAttribute {
|
|
7364
7362
|
type = 'JSXSpreadAttribute';
|
|
7365
7363
|
#internal;
|
|
7366
7364
|
|
|
@@ -7432,7 +7430,7 @@ function constructJSXAttributeValue(pos, ast) {
|
|
|
7432
7430
|
}
|
|
7433
7431
|
}
|
|
7434
7432
|
|
|
7435
|
-
class JSXIdentifier {
|
|
7433
|
+
export class JSXIdentifier {
|
|
7436
7434
|
type = 'JSXIdentifier';
|
|
7437
7435
|
#internal;
|
|
7438
7436
|
|
|
@@ -7497,7 +7495,7 @@ function constructJSXChild(pos, ast) {
|
|
|
7497
7495
|
}
|
|
7498
7496
|
}
|
|
7499
7497
|
|
|
7500
|
-
class JSXSpreadChild {
|
|
7498
|
+
export class JSXSpreadChild {
|
|
7501
7499
|
type = 'JSXSpreadChild';
|
|
7502
7500
|
#internal;
|
|
7503
7501
|
|
|
@@ -7543,7 +7541,7 @@ class JSXSpreadChild {
|
|
|
7543
7541
|
|
|
7544
7542
|
const DebugJSXSpreadChild = class JSXSpreadChild {};
|
|
7545
7543
|
|
|
7546
|
-
class JSXText {
|
|
7544
|
+
export class JSXText {
|
|
7547
7545
|
type = 'JSXText';
|
|
7548
7546
|
#internal;
|
|
7549
7547
|
|
|
@@ -7599,7 +7597,7 @@ class JSXText {
|
|
|
7599
7597
|
|
|
7600
7598
|
const DebugJSXText = class JSXText {};
|
|
7601
7599
|
|
|
7602
|
-
class TSThisParameter {
|
|
7600
|
+
export class TSThisParameter {
|
|
7603
7601
|
type = 'TSThisParameter';
|
|
7604
7602
|
#internal;
|
|
7605
7603
|
|
|
@@ -7645,7 +7643,7 @@ class TSThisParameter {
|
|
|
7645
7643
|
|
|
7646
7644
|
const DebugTSThisParameter = class TSThisParameter {};
|
|
7647
7645
|
|
|
7648
|
-
class TSEnumDeclaration {
|
|
7646
|
+
export class TSEnumDeclaration {
|
|
7649
7647
|
type = 'TSEnumDeclaration';
|
|
7650
7648
|
#internal;
|
|
7651
7649
|
|
|
@@ -7709,7 +7707,7 @@ class TSEnumDeclaration {
|
|
|
7709
7707
|
|
|
7710
7708
|
const DebugTSEnumDeclaration = class TSEnumDeclaration {};
|
|
7711
7709
|
|
|
7712
|
-
class TSEnumBody {
|
|
7710
|
+
export class TSEnumBody {
|
|
7713
7711
|
type = 'TSEnumBody';
|
|
7714
7712
|
#internal;
|
|
7715
7713
|
|
|
@@ -7757,7 +7755,7 @@ class TSEnumBody {
|
|
|
7757
7755
|
|
|
7758
7756
|
const DebugTSEnumBody = class TSEnumBody {};
|
|
7759
7757
|
|
|
7760
|
-
class TSEnumMember {
|
|
7758
|
+
export class TSEnumMember {
|
|
7761
7759
|
type = 'TSEnumMember';
|
|
7762
7760
|
#internal;
|
|
7763
7761
|
|
|
@@ -7824,7 +7822,7 @@ function constructTSEnumMemberName(pos, ast) {
|
|
|
7824
7822
|
}
|
|
7825
7823
|
}
|
|
7826
7824
|
|
|
7827
|
-
class TSTypeAnnotation {
|
|
7825
|
+
export class TSTypeAnnotation {
|
|
7828
7826
|
type = 'TSTypeAnnotation';
|
|
7829
7827
|
#internal;
|
|
7830
7828
|
|
|
@@ -7870,7 +7868,7 @@ class TSTypeAnnotation {
|
|
|
7870
7868
|
|
|
7871
7869
|
const DebugTSTypeAnnotation = class TSTypeAnnotation {};
|
|
7872
7870
|
|
|
7873
|
-
class TSLiteralType {
|
|
7871
|
+
export class TSLiteralType {
|
|
7874
7872
|
type = 'TSLiteralType';
|
|
7875
7873
|
#internal;
|
|
7876
7874
|
|
|
@@ -8016,7 +8014,7 @@ function constructTSType(pos, ast) {
|
|
|
8016
8014
|
}
|
|
8017
8015
|
}
|
|
8018
8016
|
|
|
8019
|
-
class TSConditionalType {
|
|
8017
|
+
export class TSConditionalType {
|
|
8020
8018
|
type = 'TSConditionalType';
|
|
8021
8019
|
#internal;
|
|
8022
8020
|
|
|
@@ -8080,7 +8078,7 @@ class TSConditionalType {
|
|
|
8080
8078
|
|
|
8081
8079
|
const DebugTSConditionalType = class TSConditionalType {};
|
|
8082
8080
|
|
|
8083
|
-
class TSUnionType {
|
|
8081
|
+
export class TSUnionType {
|
|
8084
8082
|
type = 'TSUnionType';
|
|
8085
8083
|
#internal;
|
|
8086
8084
|
|
|
@@ -8128,7 +8126,7 @@ class TSUnionType {
|
|
|
8128
8126
|
|
|
8129
8127
|
const DebugTSUnionType = class TSUnionType {};
|
|
8130
8128
|
|
|
8131
|
-
class TSIntersectionType {
|
|
8129
|
+
export class TSIntersectionType {
|
|
8132
8130
|
type = 'TSIntersectionType';
|
|
8133
8131
|
#internal;
|
|
8134
8132
|
|
|
@@ -8176,7 +8174,7 @@ class TSIntersectionType {
|
|
|
8176
8174
|
|
|
8177
8175
|
const DebugTSIntersectionType = class TSIntersectionType {};
|
|
8178
8176
|
|
|
8179
|
-
class TSParenthesizedType {
|
|
8177
|
+
export class TSParenthesizedType {
|
|
8180
8178
|
type = 'TSParenthesizedType';
|
|
8181
8179
|
#internal;
|
|
8182
8180
|
|
|
@@ -8222,7 +8220,7 @@ class TSParenthesizedType {
|
|
|
8222
8220
|
|
|
8223
8221
|
const DebugTSParenthesizedType = class TSParenthesizedType {};
|
|
8224
8222
|
|
|
8225
|
-
class TSTypeOperator {
|
|
8223
|
+
export class TSTypeOperator {
|
|
8226
8224
|
type = 'TSTypeOperator';
|
|
8227
8225
|
#internal;
|
|
8228
8226
|
|
|
@@ -8287,7 +8285,7 @@ function constructTSTypeOperatorOperator(pos, ast) {
|
|
|
8287
8285
|
}
|
|
8288
8286
|
}
|
|
8289
8287
|
|
|
8290
|
-
class TSArrayType {
|
|
8288
|
+
export class TSArrayType {
|
|
8291
8289
|
type = 'TSArrayType';
|
|
8292
8290
|
#internal;
|
|
8293
8291
|
|
|
@@ -8333,7 +8331,7 @@ class TSArrayType {
|
|
|
8333
8331
|
|
|
8334
8332
|
const DebugTSArrayType = class TSArrayType {};
|
|
8335
8333
|
|
|
8336
|
-
class TSIndexedAccessType {
|
|
8334
|
+
export class TSIndexedAccessType {
|
|
8337
8335
|
type = 'TSIndexedAccessType';
|
|
8338
8336
|
#internal;
|
|
8339
8337
|
|
|
@@ -8385,7 +8383,7 @@ class TSIndexedAccessType {
|
|
|
8385
8383
|
|
|
8386
8384
|
const DebugTSIndexedAccessType = class TSIndexedAccessType {};
|
|
8387
8385
|
|
|
8388
|
-
class TSTupleType {
|
|
8386
|
+
export class TSTupleType {
|
|
8389
8387
|
type = 'TSTupleType';
|
|
8390
8388
|
#internal;
|
|
8391
8389
|
|
|
@@ -8433,7 +8431,7 @@ class TSTupleType {
|
|
|
8433
8431
|
|
|
8434
8432
|
const DebugTSTupleType = class TSTupleType {};
|
|
8435
8433
|
|
|
8436
|
-
class TSNamedTupleMember {
|
|
8434
|
+
export class TSNamedTupleMember {
|
|
8437
8435
|
type = 'TSNamedTupleMember';
|
|
8438
8436
|
#internal;
|
|
8439
8437
|
|
|
@@ -8491,7 +8489,7 @@ class TSNamedTupleMember {
|
|
|
8491
8489
|
|
|
8492
8490
|
const DebugTSNamedTupleMember = class TSNamedTupleMember {};
|
|
8493
8491
|
|
|
8494
|
-
class TSOptionalType {
|
|
8492
|
+
export class TSOptionalType {
|
|
8495
8493
|
type = 'TSOptionalType';
|
|
8496
8494
|
#internal;
|
|
8497
8495
|
|
|
@@ -8537,7 +8535,7 @@ class TSOptionalType {
|
|
|
8537
8535
|
|
|
8538
8536
|
const DebugTSOptionalType = class TSOptionalType {};
|
|
8539
8537
|
|
|
8540
|
-
class TSRestType {
|
|
8538
|
+
export class TSRestType {
|
|
8541
8539
|
type = 'TSRestType';
|
|
8542
8540
|
#internal;
|
|
8543
8541
|
|
|
@@ -8668,7 +8666,7 @@ function constructTSTupleElement(pos, ast) {
|
|
|
8668
8666
|
}
|
|
8669
8667
|
}
|
|
8670
8668
|
|
|
8671
|
-
class TSAnyKeyword {
|
|
8669
|
+
export class TSAnyKeyword {
|
|
8672
8670
|
type = 'TSAnyKeyword';
|
|
8673
8671
|
#internal;
|
|
8674
8672
|
|
|
@@ -8708,7 +8706,7 @@ class TSAnyKeyword {
|
|
|
8708
8706
|
|
|
8709
8707
|
const DebugTSAnyKeyword = class TSAnyKeyword {};
|
|
8710
8708
|
|
|
8711
|
-
class TSStringKeyword {
|
|
8709
|
+
export class TSStringKeyword {
|
|
8712
8710
|
type = 'TSStringKeyword';
|
|
8713
8711
|
#internal;
|
|
8714
8712
|
|
|
@@ -8748,7 +8746,7 @@ class TSStringKeyword {
|
|
|
8748
8746
|
|
|
8749
8747
|
const DebugTSStringKeyword = class TSStringKeyword {};
|
|
8750
8748
|
|
|
8751
|
-
class TSBooleanKeyword {
|
|
8749
|
+
export class TSBooleanKeyword {
|
|
8752
8750
|
type = 'TSBooleanKeyword';
|
|
8753
8751
|
#internal;
|
|
8754
8752
|
|
|
@@ -8788,7 +8786,7 @@ class TSBooleanKeyword {
|
|
|
8788
8786
|
|
|
8789
8787
|
const DebugTSBooleanKeyword = class TSBooleanKeyword {};
|
|
8790
8788
|
|
|
8791
|
-
class TSNumberKeyword {
|
|
8789
|
+
export class TSNumberKeyword {
|
|
8792
8790
|
type = 'TSNumberKeyword';
|
|
8793
8791
|
#internal;
|
|
8794
8792
|
|
|
@@ -8828,7 +8826,7 @@ class TSNumberKeyword {
|
|
|
8828
8826
|
|
|
8829
8827
|
const DebugTSNumberKeyword = class TSNumberKeyword {};
|
|
8830
8828
|
|
|
8831
|
-
class TSNeverKeyword {
|
|
8829
|
+
export class TSNeverKeyword {
|
|
8832
8830
|
type = 'TSNeverKeyword';
|
|
8833
8831
|
#internal;
|
|
8834
8832
|
|
|
@@ -8868,7 +8866,7 @@ class TSNeverKeyword {
|
|
|
8868
8866
|
|
|
8869
8867
|
const DebugTSNeverKeyword = class TSNeverKeyword {};
|
|
8870
8868
|
|
|
8871
|
-
class TSIntrinsicKeyword {
|
|
8869
|
+
export class TSIntrinsicKeyword {
|
|
8872
8870
|
type = 'TSIntrinsicKeyword';
|
|
8873
8871
|
#internal;
|
|
8874
8872
|
|
|
@@ -8908,7 +8906,7 @@ class TSIntrinsicKeyword {
|
|
|
8908
8906
|
|
|
8909
8907
|
const DebugTSIntrinsicKeyword = class TSIntrinsicKeyword {};
|
|
8910
8908
|
|
|
8911
|
-
class TSUnknownKeyword {
|
|
8909
|
+
export class TSUnknownKeyword {
|
|
8912
8910
|
type = 'TSUnknownKeyword';
|
|
8913
8911
|
#internal;
|
|
8914
8912
|
|
|
@@ -8948,7 +8946,7 @@ class TSUnknownKeyword {
|
|
|
8948
8946
|
|
|
8949
8947
|
const DebugTSUnknownKeyword = class TSUnknownKeyword {};
|
|
8950
8948
|
|
|
8951
|
-
class TSNullKeyword {
|
|
8949
|
+
export class TSNullKeyword {
|
|
8952
8950
|
type = 'TSNullKeyword';
|
|
8953
8951
|
#internal;
|
|
8954
8952
|
|
|
@@ -8988,7 +8986,7 @@ class TSNullKeyword {
|
|
|
8988
8986
|
|
|
8989
8987
|
const DebugTSNullKeyword = class TSNullKeyword {};
|
|
8990
8988
|
|
|
8991
|
-
class TSUndefinedKeyword {
|
|
8989
|
+
export class TSUndefinedKeyword {
|
|
8992
8990
|
type = 'TSUndefinedKeyword';
|
|
8993
8991
|
#internal;
|
|
8994
8992
|
|
|
@@ -9028,7 +9026,7 @@ class TSUndefinedKeyword {
|
|
|
9028
9026
|
|
|
9029
9027
|
const DebugTSUndefinedKeyword = class TSUndefinedKeyword {};
|
|
9030
9028
|
|
|
9031
|
-
class TSVoidKeyword {
|
|
9029
|
+
export class TSVoidKeyword {
|
|
9032
9030
|
type = 'TSVoidKeyword';
|
|
9033
9031
|
#internal;
|
|
9034
9032
|
|
|
@@ -9068,7 +9066,7 @@ class TSVoidKeyword {
|
|
|
9068
9066
|
|
|
9069
9067
|
const DebugTSVoidKeyword = class TSVoidKeyword {};
|
|
9070
9068
|
|
|
9071
|
-
class TSSymbolKeyword {
|
|
9069
|
+
export class TSSymbolKeyword {
|
|
9072
9070
|
type = 'TSSymbolKeyword';
|
|
9073
9071
|
#internal;
|
|
9074
9072
|
|
|
@@ -9108,7 +9106,7 @@ class TSSymbolKeyword {
|
|
|
9108
9106
|
|
|
9109
9107
|
const DebugTSSymbolKeyword = class TSSymbolKeyword {};
|
|
9110
9108
|
|
|
9111
|
-
class TSThisType {
|
|
9109
|
+
export class TSThisType {
|
|
9112
9110
|
type = 'TSThisType';
|
|
9113
9111
|
#internal;
|
|
9114
9112
|
|
|
@@ -9148,7 +9146,7 @@ class TSThisType {
|
|
|
9148
9146
|
|
|
9149
9147
|
const DebugTSThisType = class TSThisType {};
|
|
9150
9148
|
|
|
9151
|
-
class TSObjectKeyword {
|
|
9149
|
+
export class TSObjectKeyword {
|
|
9152
9150
|
type = 'TSObjectKeyword';
|
|
9153
9151
|
#internal;
|
|
9154
9152
|
|
|
@@ -9188,7 +9186,7 @@ class TSObjectKeyword {
|
|
|
9188
9186
|
|
|
9189
9187
|
const DebugTSObjectKeyword = class TSObjectKeyword {};
|
|
9190
9188
|
|
|
9191
|
-
class TSBigIntKeyword {
|
|
9189
|
+
export class TSBigIntKeyword {
|
|
9192
9190
|
type = 'TSBigIntKeyword';
|
|
9193
9191
|
#internal;
|
|
9194
9192
|
|
|
@@ -9228,7 +9226,7 @@ class TSBigIntKeyword {
|
|
|
9228
9226
|
|
|
9229
9227
|
const DebugTSBigIntKeyword = class TSBigIntKeyword {};
|
|
9230
9228
|
|
|
9231
|
-
class TSTypeReference {
|
|
9229
|
+
export class TSTypeReference {
|
|
9232
9230
|
type = 'TSTypeReference';
|
|
9233
9231
|
#internal;
|
|
9234
9232
|
|
|
@@ -9293,7 +9291,7 @@ function constructTSTypeName(pos, ast) {
|
|
|
9293
9291
|
}
|
|
9294
9292
|
}
|
|
9295
9293
|
|
|
9296
|
-
class TSQualifiedName {
|
|
9294
|
+
export class TSQualifiedName {
|
|
9297
9295
|
type = 'TSQualifiedName';
|
|
9298
9296
|
#internal;
|
|
9299
9297
|
|
|
@@ -9345,7 +9343,7 @@ class TSQualifiedName {
|
|
|
9345
9343
|
|
|
9346
9344
|
const DebugTSQualifiedName = class TSQualifiedName {};
|
|
9347
9345
|
|
|
9348
|
-
class TSTypeParameterInstantiation {
|
|
9346
|
+
export class TSTypeParameterInstantiation {
|
|
9349
9347
|
type = 'TSTypeParameterInstantiation';
|
|
9350
9348
|
#internal;
|
|
9351
9349
|
|
|
@@ -9393,7 +9391,7 @@ class TSTypeParameterInstantiation {
|
|
|
9393
9391
|
|
|
9394
9392
|
const DebugTSTypeParameterInstantiation = class TSTypeParameterInstantiation {};
|
|
9395
9393
|
|
|
9396
|
-
class TSTypeParameter {
|
|
9394
|
+
export class TSTypeParameter {
|
|
9397
9395
|
type = 'TSTypeParameter';
|
|
9398
9396
|
#internal;
|
|
9399
9397
|
|
|
@@ -9469,7 +9467,7 @@ class TSTypeParameter {
|
|
|
9469
9467
|
|
|
9470
9468
|
const DebugTSTypeParameter = class TSTypeParameter {};
|
|
9471
9469
|
|
|
9472
|
-
class TSTypeParameterDeclaration {
|
|
9470
|
+
export class TSTypeParameterDeclaration {
|
|
9473
9471
|
type = 'TSTypeParameterDeclaration';
|
|
9474
9472
|
#internal;
|
|
9475
9473
|
|
|
@@ -9517,7 +9515,7 @@ class TSTypeParameterDeclaration {
|
|
|
9517
9515
|
|
|
9518
9516
|
const DebugTSTypeParameterDeclaration = class TSTypeParameterDeclaration {};
|
|
9519
9517
|
|
|
9520
|
-
class TSTypeAliasDeclaration {
|
|
9518
|
+
export class TSTypeAliasDeclaration {
|
|
9521
9519
|
type = 'TSTypeAliasDeclaration';
|
|
9522
9520
|
#internal;
|
|
9523
9521
|
|
|
@@ -9594,7 +9592,7 @@ function constructTSAccessibility(pos, ast) {
|
|
|
9594
9592
|
}
|
|
9595
9593
|
}
|
|
9596
9594
|
|
|
9597
|
-
class TSClassImplements {
|
|
9595
|
+
export class TSClassImplements {
|
|
9598
9596
|
type = 'TSClassImplements';
|
|
9599
9597
|
#internal;
|
|
9600
9598
|
|
|
@@ -9646,7 +9644,7 @@ class TSClassImplements {
|
|
|
9646
9644
|
|
|
9647
9645
|
const DebugTSClassImplements = class TSClassImplements {};
|
|
9648
9646
|
|
|
9649
|
-
class TSInterfaceDeclaration {
|
|
9647
|
+
export class TSInterfaceDeclaration {
|
|
9650
9648
|
type = 'TSInterfaceDeclaration';
|
|
9651
9649
|
#internal;
|
|
9652
9650
|
|
|
@@ -9718,7 +9716,7 @@ class TSInterfaceDeclaration {
|
|
|
9718
9716
|
|
|
9719
9717
|
const DebugTSInterfaceDeclaration = class TSInterfaceDeclaration {};
|
|
9720
9718
|
|
|
9721
|
-
class TSInterfaceBody {
|
|
9719
|
+
export class TSInterfaceBody {
|
|
9722
9720
|
type = 'TSInterfaceBody';
|
|
9723
9721
|
#internal;
|
|
9724
9722
|
|
|
@@ -9766,7 +9764,7 @@ class TSInterfaceBody {
|
|
|
9766
9764
|
|
|
9767
9765
|
const DebugTSInterfaceBody = class TSInterfaceBody {};
|
|
9768
9766
|
|
|
9769
|
-
class TSPropertySignature {
|
|
9767
|
+
export class TSPropertySignature {
|
|
9770
9768
|
type = 'TSPropertySignature';
|
|
9771
9769
|
#internal;
|
|
9772
9770
|
|
|
@@ -9853,7 +9851,7 @@ function constructTSSignature(pos, ast) {
|
|
|
9853
9851
|
}
|
|
9854
9852
|
}
|
|
9855
9853
|
|
|
9856
|
-
class TSIndexSignature {
|
|
9854
|
+
export class TSIndexSignature {
|
|
9857
9855
|
type = 'TSIndexSignature';
|
|
9858
9856
|
#internal;
|
|
9859
9857
|
|
|
@@ -9919,7 +9917,7 @@ class TSIndexSignature {
|
|
|
9919
9917
|
|
|
9920
9918
|
const DebugTSIndexSignature = class TSIndexSignature {};
|
|
9921
9919
|
|
|
9922
|
-
class TSCallSignatureDeclaration {
|
|
9920
|
+
export class TSCallSignatureDeclaration {
|
|
9923
9921
|
type = 'TSCallSignatureDeclaration';
|
|
9924
9922
|
#internal;
|
|
9925
9923
|
|
|
@@ -9990,7 +9988,7 @@ function constructTSMethodSignatureKind(pos, ast) {
|
|
|
9990
9988
|
}
|
|
9991
9989
|
}
|
|
9992
9990
|
|
|
9993
|
-
class TSMethodSignature {
|
|
9991
|
+
export class TSMethodSignature {
|
|
9994
9992
|
type = 'TSMethodSignature';
|
|
9995
9993
|
#internal;
|
|
9996
9994
|
|
|
@@ -10072,7 +10070,7 @@ class TSMethodSignature {
|
|
|
10072
10070
|
|
|
10073
10071
|
const DebugTSMethodSignature = class TSMethodSignature {};
|
|
10074
10072
|
|
|
10075
|
-
class TSConstructSignatureDeclaration {
|
|
10073
|
+
export class TSConstructSignatureDeclaration {
|
|
10076
10074
|
type = 'TSConstructSignatureDeclaration';
|
|
10077
10075
|
#internal;
|
|
10078
10076
|
|
|
@@ -10130,7 +10128,7 @@ class TSConstructSignatureDeclaration {
|
|
|
10130
10128
|
|
|
10131
10129
|
const DebugTSConstructSignatureDeclaration = class TSConstructSignatureDeclaration {};
|
|
10132
10130
|
|
|
10133
|
-
class TSIndexSignatureName {
|
|
10131
|
+
export class TSIndexSignatureName {
|
|
10134
10132
|
type = 'TSIndexSignatureName';
|
|
10135
10133
|
#internal;
|
|
10136
10134
|
|
|
@@ -10184,7 +10182,7 @@ class TSIndexSignatureName {
|
|
|
10184
10182
|
|
|
10185
10183
|
const DebugTSIndexSignatureName = class TSIndexSignatureName {};
|
|
10186
10184
|
|
|
10187
|
-
class TSInterfaceHeritage {
|
|
10185
|
+
export class TSInterfaceHeritage {
|
|
10188
10186
|
type = 'TSInterfaceHeritage';
|
|
10189
10187
|
#internal;
|
|
10190
10188
|
|
|
@@ -10236,7 +10234,7 @@ class TSInterfaceHeritage {
|
|
|
10236
10234
|
|
|
10237
10235
|
const DebugTSInterfaceHeritage = class TSInterfaceHeritage {};
|
|
10238
10236
|
|
|
10239
|
-
class TSTypePredicate {
|
|
10237
|
+
export class TSTypePredicate {
|
|
10240
10238
|
type = 'TSTypePredicate';
|
|
10241
10239
|
#internal;
|
|
10242
10240
|
|
|
@@ -10305,7 +10303,7 @@ function constructTSTypePredicateName(pos, ast) {
|
|
|
10305
10303
|
}
|
|
10306
10304
|
}
|
|
10307
10305
|
|
|
10308
|
-
class TSModuleDeclaration {
|
|
10306
|
+
export class TSModuleDeclaration {
|
|
10309
10307
|
type = 'TSModuleDeclaration';
|
|
10310
10308
|
#internal;
|
|
10311
10309
|
|
|
@@ -10404,7 +10402,7 @@ function constructTSModuleDeclarationBody(pos, ast) {
|
|
|
10404
10402
|
}
|
|
10405
10403
|
}
|
|
10406
10404
|
|
|
10407
|
-
class TSModuleBlock {
|
|
10405
|
+
export class TSModuleBlock {
|
|
10408
10406
|
type = 'TSModuleBlock';
|
|
10409
10407
|
#internal;
|
|
10410
10408
|
|
|
@@ -10452,7 +10450,7 @@ class TSModuleBlock {
|
|
|
10452
10450
|
|
|
10453
10451
|
const DebugTSModuleBlock = class TSModuleBlock {};
|
|
10454
10452
|
|
|
10455
|
-
class TSTypeLiteral {
|
|
10453
|
+
export class TSTypeLiteral {
|
|
10456
10454
|
type = 'TSTypeLiteral';
|
|
10457
10455
|
#internal;
|
|
10458
10456
|
|
|
@@ -10500,7 +10498,7 @@ class TSTypeLiteral {
|
|
|
10500
10498
|
|
|
10501
10499
|
const DebugTSTypeLiteral = class TSTypeLiteral {};
|
|
10502
10500
|
|
|
10503
|
-
class TSInferType {
|
|
10501
|
+
export class TSInferType {
|
|
10504
10502
|
type = 'TSInferType';
|
|
10505
10503
|
#internal;
|
|
10506
10504
|
|
|
@@ -10546,7 +10544,7 @@ class TSInferType {
|
|
|
10546
10544
|
|
|
10547
10545
|
const DebugTSInferType = class TSInferType {};
|
|
10548
10546
|
|
|
10549
|
-
class TSTypeQuery {
|
|
10547
|
+
export class TSTypeQuery {
|
|
10550
10548
|
type = 'TSTypeQuery';
|
|
10551
10549
|
#internal;
|
|
10552
10550
|
|
|
@@ -10613,7 +10611,7 @@ function constructTSTypeQueryExprName(pos, ast) {
|
|
|
10613
10611
|
}
|
|
10614
10612
|
}
|
|
10615
10613
|
|
|
10616
|
-
class TSImportType {
|
|
10614
|
+
export class TSImportType {
|
|
10617
10615
|
type = 'TSImportType';
|
|
10618
10616
|
#internal;
|
|
10619
10617
|
|
|
@@ -10688,7 +10686,7 @@ function constructTSImportTypeQualifier(pos, ast) {
|
|
|
10688
10686
|
}
|
|
10689
10687
|
}
|
|
10690
10688
|
|
|
10691
|
-
class TSImportTypeQualifiedName {
|
|
10689
|
+
export class TSImportTypeQualifiedName {
|
|
10692
10690
|
type = 'TSImportTypeQualifiedName';
|
|
10693
10691
|
#internal;
|
|
10694
10692
|
|
|
@@ -10740,7 +10738,7 @@ class TSImportTypeQualifiedName {
|
|
|
10740
10738
|
|
|
10741
10739
|
const DebugTSImportTypeQualifiedName = class TSImportTypeQualifiedName {};
|
|
10742
10740
|
|
|
10743
|
-
class TSFunctionType {
|
|
10741
|
+
export class TSFunctionType {
|
|
10744
10742
|
type = 'TSFunctionType';
|
|
10745
10743
|
#internal;
|
|
10746
10744
|
|
|
@@ -10798,7 +10796,7 @@ class TSFunctionType {
|
|
|
10798
10796
|
|
|
10799
10797
|
const DebugTSFunctionType = class TSFunctionType {};
|
|
10800
10798
|
|
|
10801
|
-
class TSConstructorType {
|
|
10799
|
+
export class TSConstructorType {
|
|
10802
10800
|
type = 'TSConstructorType';
|
|
10803
10801
|
#internal;
|
|
10804
10802
|
|
|
@@ -10862,7 +10860,7 @@ class TSConstructorType {
|
|
|
10862
10860
|
|
|
10863
10861
|
const DebugTSConstructorType = class TSConstructorType {};
|
|
10864
10862
|
|
|
10865
|
-
class TSMappedType {
|
|
10863
|
+
export class TSMappedType {
|
|
10866
10864
|
type = 'TSMappedType';
|
|
10867
10865
|
#internal;
|
|
10868
10866
|
|
|
@@ -10939,7 +10937,7 @@ function constructTSMappedTypeModifierOperator(pos, ast) {
|
|
|
10939
10937
|
}
|
|
10940
10938
|
}
|
|
10941
10939
|
|
|
10942
|
-
class TSTemplateLiteralType {
|
|
10940
|
+
export class TSTemplateLiteralType {
|
|
10943
10941
|
type = 'TSTemplateLiteralType';
|
|
10944
10942
|
#internal;
|
|
10945
10943
|
|
|
@@ -10995,7 +10993,7 @@ class TSTemplateLiteralType {
|
|
|
10995
10993
|
|
|
10996
10994
|
const DebugTSTemplateLiteralType = class TSTemplateLiteralType {};
|
|
10997
10995
|
|
|
10998
|
-
class TSAsExpression {
|
|
10996
|
+
export class TSAsExpression {
|
|
10999
10997
|
type = 'TSAsExpression';
|
|
11000
10998
|
#internal;
|
|
11001
10999
|
|
|
@@ -11047,7 +11045,7 @@ class TSAsExpression {
|
|
|
11047
11045
|
|
|
11048
11046
|
const DebugTSAsExpression = class TSAsExpression {};
|
|
11049
11047
|
|
|
11050
|
-
class TSSatisfiesExpression {
|
|
11048
|
+
export class TSSatisfiesExpression {
|
|
11051
11049
|
type = 'TSSatisfiesExpression';
|
|
11052
11050
|
#internal;
|
|
11053
11051
|
|
|
@@ -11099,7 +11097,7 @@ class TSSatisfiesExpression {
|
|
|
11099
11097
|
|
|
11100
11098
|
const DebugTSSatisfiesExpression = class TSSatisfiesExpression {};
|
|
11101
11099
|
|
|
11102
|
-
class TSTypeAssertion {
|
|
11100
|
+
export class TSTypeAssertion {
|
|
11103
11101
|
type = 'TSTypeAssertion';
|
|
11104
11102
|
#internal;
|
|
11105
11103
|
|
|
@@ -11151,7 +11149,7 @@ class TSTypeAssertion {
|
|
|
11151
11149
|
|
|
11152
11150
|
const DebugTSTypeAssertion = class TSTypeAssertion {};
|
|
11153
11151
|
|
|
11154
|
-
class TSImportEqualsDeclaration {
|
|
11152
|
+
export class TSImportEqualsDeclaration {
|
|
11155
11153
|
type = 'TSImportEqualsDeclaration';
|
|
11156
11154
|
#internal;
|
|
11157
11155
|
|
|
@@ -11224,7 +11222,7 @@ function constructTSModuleReference(pos, ast) {
|
|
|
11224
11222
|
}
|
|
11225
11223
|
}
|
|
11226
11224
|
|
|
11227
|
-
class TSExternalModuleReference {
|
|
11225
|
+
export class TSExternalModuleReference {
|
|
11228
11226
|
type = 'TSExternalModuleReference';
|
|
11229
11227
|
#internal;
|
|
11230
11228
|
|
|
@@ -11270,7 +11268,7 @@ class TSExternalModuleReference {
|
|
|
11270
11268
|
|
|
11271
11269
|
const DebugTSExternalModuleReference = class TSExternalModuleReference {};
|
|
11272
11270
|
|
|
11273
|
-
class TSNonNullExpression {
|
|
11271
|
+
export class TSNonNullExpression {
|
|
11274
11272
|
type = 'TSNonNullExpression';
|
|
11275
11273
|
#internal;
|
|
11276
11274
|
|
|
@@ -11316,7 +11314,7 @@ class TSNonNullExpression {
|
|
|
11316
11314
|
|
|
11317
11315
|
const DebugTSNonNullExpression = class TSNonNullExpression {};
|
|
11318
11316
|
|
|
11319
|
-
class Decorator {
|
|
11317
|
+
export class Decorator {
|
|
11320
11318
|
type = 'Decorator';
|
|
11321
11319
|
#internal;
|
|
11322
11320
|
|
|
@@ -11362,7 +11360,7 @@ class Decorator {
|
|
|
11362
11360
|
|
|
11363
11361
|
const DebugDecorator = class Decorator {};
|
|
11364
11362
|
|
|
11365
|
-
class TSExportAssignment {
|
|
11363
|
+
export class TSExportAssignment {
|
|
11366
11364
|
type = 'TSExportAssignment';
|
|
11367
11365
|
#internal;
|
|
11368
11366
|
|
|
@@ -11408,7 +11406,7 @@ class TSExportAssignment {
|
|
|
11408
11406
|
|
|
11409
11407
|
const DebugTSExportAssignment = class TSExportAssignment {};
|
|
11410
11408
|
|
|
11411
|
-
class TSNamespaceExportDeclaration {
|
|
11409
|
+
export class TSNamespaceExportDeclaration {
|
|
11412
11410
|
type = 'TSNamespaceExportDeclaration';
|
|
11413
11411
|
#internal;
|
|
11414
11412
|
|
|
@@ -11454,7 +11452,7 @@ class TSNamespaceExportDeclaration {
|
|
|
11454
11452
|
|
|
11455
11453
|
const DebugTSNamespaceExportDeclaration = class TSNamespaceExportDeclaration {};
|
|
11456
11454
|
|
|
11457
|
-
class TSInstantiationExpression {
|
|
11455
|
+
export class TSInstantiationExpression {
|
|
11458
11456
|
type = 'TSInstantiationExpression';
|
|
11459
11457
|
#internal;
|
|
11460
11458
|
|
|
@@ -11517,7 +11515,7 @@ function constructImportOrExportKind(pos, ast) {
|
|
|
11517
11515
|
}
|
|
11518
11516
|
}
|
|
11519
11517
|
|
|
11520
|
-
class JSDocNullableType {
|
|
11518
|
+
export class JSDocNullableType {
|
|
11521
11519
|
type = 'JSDocNullableType';
|
|
11522
11520
|
#internal;
|
|
11523
11521
|
|
|
@@ -11569,7 +11567,7 @@ class JSDocNullableType {
|
|
|
11569
11567
|
|
|
11570
11568
|
const DebugJSDocNullableType = class JSDocNullableType {};
|
|
11571
11569
|
|
|
11572
|
-
class JSDocNonNullableType {
|
|
11570
|
+
export class JSDocNonNullableType {
|
|
11573
11571
|
type = 'JSDocNonNullableType';
|
|
11574
11572
|
#internal;
|
|
11575
11573
|
|
|
@@ -11621,7 +11619,7 @@ class JSDocNonNullableType {
|
|
|
11621
11619
|
|
|
11622
11620
|
const DebugJSDocNonNullableType = class JSDocNonNullableType {};
|
|
11623
11621
|
|
|
11624
|
-
class JSDocUnknownType {
|
|
11622
|
+
export class JSDocUnknownType {
|
|
11625
11623
|
type = 'JSDocUnknownType';
|
|
11626
11624
|
#internal;
|
|
11627
11625
|
|
|
@@ -11672,7 +11670,7 @@ function constructCommentKind(pos, ast) {
|
|
|
11672
11670
|
}
|
|
11673
11671
|
}
|
|
11674
11672
|
|
|
11675
|
-
class Comment {
|
|
11673
|
+
export class Comment {
|
|
11676
11674
|
#internal;
|
|
11677
11675
|
|
|
11678
11676
|
constructor(pos, ast) {
|
|
@@ -11716,7 +11714,7 @@ class Comment {
|
|
|
11716
11714
|
|
|
11717
11715
|
const DebugComment = class Comment {};
|
|
11718
11716
|
|
|
11719
|
-
class NameSpan {
|
|
11717
|
+
export class NameSpan {
|
|
11720
11718
|
#internal;
|
|
11721
11719
|
|
|
11722
11720
|
constructor(pos, ast) {
|
|
@@ -11762,7 +11760,7 @@ class NameSpan {
|
|
|
11762
11760
|
|
|
11763
11761
|
const DebugNameSpan = class NameSpan {};
|
|
11764
11762
|
|
|
11765
|
-
class ImportEntry {
|
|
11763
|
+
export class ImportEntry {
|
|
11766
11764
|
#internal;
|
|
11767
11765
|
|
|
11768
11766
|
constructor(pos, ast) {
|
|
@@ -11819,7 +11817,7 @@ function constructImportImportName(pos, ast) {
|
|
|
11819
11817
|
}
|
|
11820
11818
|
}
|
|
11821
11819
|
|
|
11822
|
-
class ExportEntry {
|
|
11820
|
+
export class ExportEntry {
|
|
11823
11821
|
#internal;
|
|
11824
11822
|
|
|
11825
11823
|
constructor(pos, ast) {
|
|
@@ -11928,7 +11926,7 @@ function constructExportLocalName(pos, ast) {
|
|
|
11928
11926
|
}
|
|
11929
11927
|
}
|
|
11930
11928
|
|
|
11931
|
-
class DynamicImport {
|
|
11929
|
+
export class DynamicImport {
|
|
11932
11930
|
#internal;
|
|
11933
11931
|
|
|
11934
11932
|
constructor(pos, ast) {
|
|
@@ -12107,7 +12105,7 @@ function constructUpdateOperator(pos, ast) {
|
|
|
12107
12105
|
}
|
|
12108
12106
|
}
|
|
12109
12107
|
|
|
12110
|
-
class Span {
|
|
12108
|
+
export class Span {
|
|
12111
12109
|
#internal;
|
|
12112
12110
|
|
|
12113
12111
|
constructor(pos, ast) {
|
|
@@ -12145,7 +12143,7 @@ class Span {
|
|
|
12145
12143
|
|
|
12146
12144
|
const DebugSpan = class Span {};
|
|
12147
12145
|
|
|
12148
|
-
class SourceType {
|
|
12146
|
+
export class SourceType {
|
|
12149
12147
|
#internal;
|
|
12150
12148
|
|
|
12151
12149
|
constructor(pos, ast) {
|
|
@@ -12188,7 +12186,7 @@ function constructModuleKind(pos, ast) {
|
|
|
12188
12186
|
}
|
|
12189
12187
|
}
|
|
12190
12188
|
|
|
12191
|
-
class RawTransferData {
|
|
12189
|
+
export class RawTransferData {
|
|
12192
12190
|
#internal;
|
|
12193
12191
|
|
|
12194
12192
|
constructor(pos, ast) {
|
|
@@ -12243,7 +12241,7 @@ class RawTransferData {
|
|
|
12243
12241
|
|
|
12244
12242
|
const DebugRawTransferData = class RawTransferData {};
|
|
12245
12243
|
|
|
12246
|
-
class Error {
|
|
12244
|
+
export class Error {
|
|
12247
12245
|
#internal;
|
|
12248
12246
|
|
|
12249
12247
|
constructor(pos, ast) {
|
|
@@ -12320,7 +12318,7 @@ function constructErrorSeverity(pos, ast) {
|
|
|
12320
12318
|
}
|
|
12321
12319
|
}
|
|
12322
12320
|
|
|
12323
|
-
class ErrorLabel {
|
|
12321
|
+
export class ErrorLabel {
|
|
12324
12322
|
#internal;
|
|
12325
12323
|
|
|
12326
12324
|
constructor(pos, ast) {
|
|
@@ -12366,7 +12364,7 @@ class ErrorLabel {
|
|
|
12366
12364
|
|
|
12367
12365
|
const DebugErrorLabel = class ErrorLabel {};
|
|
12368
12366
|
|
|
12369
|
-
class EcmaScriptModule {
|
|
12367
|
+
export class EcmaScriptModule {
|
|
12370
12368
|
#internal;
|
|
12371
12369
|
|
|
12372
12370
|
constructor(pos, ast) {
|
|
@@ -12437,7 +12435,7 @@ class EcmaScriptModule {
|
|
|
12437
12435
|
|
|
12438
12436
|
const DebugEcmaScriptModule = class EcmaScriptModule {};
|
|
12439
12437
|
|
|
12440
|
-
class StaticImport {
|
|
12438
|
+
export class StaticImport {
|
|
12441
12439
|
#internal;
|
|
12442
12440
|
|
|
12443
12441
|
constructor(pos, ast) {
|
|
@@ -12489,7 +12487,7 @@ class StaticImport {
|
|
|
12489
12487
|
|
|
12490
12488
|
const DebugStaticImport = class StaticImport {};
|
|
12491
12489
|
|
|
12492
|
-
class StaticExport {
|
|
12490
|
+
export class StaticExport {
|
|
12493
12491
|
#internal;
|
|
12494
12492
|
|
|
12495
12493
|
constructor(pos, ast) {
|
|
@@ -13966,210 +13964,3 @@ function constructVecExportEntry(pos, ast) {
|
|
|
13966
13964
|
function constructExportEntry(pos, ast) {
|
|
13967
13965
|
return new ExportEntry(pos, ast);
|
|
13968
13966
|
}
|
|
13969
|
-
|
|
13970
|
-
module.exports = {
|
|
13971
|
-
Program,
|
|
13972
|
-
IdentifierName,
|
|
13973
|
-
IdentifierReference,
|
|
13974
|
-
BindingIdentifier,
|
|
13975
|
-
LabelIdentifier,
|
|
13976
|
-
ThisExpression,
|
|
13977
|
-
ArrayExpression,
|
|
13978
|
-
Elision,
|
|
13979
|
-
ObjectExpression,
|
|
13980
|
-
ObjectProperty,
|
|
13981
|
-
TemplateLiteral,
|
|
13982
|
-
TaggedTemplateExpression,
|
|
13983
|
-
TemplateElement,
|
|
13984
|
-
TemplateElementValue,
|
|
13985
|
-
ComputedMemberExpression,
|
|
13986
|
-
StaticMemberExpression,
|
|
13987
|
-
PrivateFieldExpression,
|
|
13988
|
-
CallExpression,
|
|
13989
|
-
NewExpression,
|
|
13990
|
-
MetaProperty,
|
|
13991
|
-
SpreadElement,
|
|
13992
|
-
UpdateExpression,
|
|
13993
|
-
UnaryExpression,
|
|
13994
|
-
BinaryExpression,
|
|
13995
|
-
PrivateInExpression,
|
|
13996
|
-
LogicalExpression,
|
|
13997
|
-
ConditionalExpression,
|
|
13998
|
-
AssignmentExpression,
|
|
13999
|
-
ArrayAssignmentTarget,
|
|
14000
|
-
ObjectAssignmentTarget,
|
|
14001
|
-
AssignmentTargetRest,
|
|
14002
|
-
AssignmentTargetWithDefault,
|
|
14003
|
-
AssignmentTargetPropertyIdentifier,
|
|
14004
|
-
AssignmentTargetPropertyProperty,
|
|
14005
|
-
SequenceExpression,
|
|
14006
|
-
Super,
|
|
14007
|
-
AwaitExpression,
|
|
14008
|
-
ChainExpression,
|
|
14009
|
-
ParenthesizedExpression,
|
|
14010
|
-
Directive,
|
|
14011
|
-
Hashbang,
|
|
14012
|
-
BlockStatement,
|
|
14013
|
-
VariableDeclaration,
|
|
14014
|
-
VariableDeclarator,
|
|
14015
|
-
EmptyStatement,
|
|
14016
|
-
ExpressionStatement,
|
|
14017
|
-
IfStatement,
|
|
14018
|
-
DoWhileStatement,
|
|
14019
|
-
WhileStatement,
|
|
14020
|
-
ForStatement,
|
|
14021
|
-
ForInStatement,
|
|
14022
|
-
ForOfStatement,
|
|
14023
|
-
ContinueStatement,
|
|
14024
|
-
BreakStatement,
|
|
14025
|
-
ReturnStatement,
|
|
14026
|
-
WithStatement,
|
|
14027
|
-
SwitchStatement,
|
|
14028
|
-
SwitchCase,
|
|
14029
|
-
LabeledStatement,
|
|
14030
|
-
ThrowStatement,
|
|
14031
|
-
TryStatement,
|
|
14032
|
-
CatchClause,
|
|
14033
|
-
CatchParameter,
|
|
14034
|
-
DebuggerStatement,
|
|
14035
|
-
BindingPattern,
|
|
14036
|
-
AssignmentPattern,
|
|
14037
|
-
ObjectPattern,
|
|
14038
|
-
BindingProperty,
|
|
14039
|
-
ArrayPattern,
|
|
14040
|
-
BindingRestElement,
|
|
14041
|
-
Function,
|
|
14042
|
-
FormalParameters,
|
|
14043
|
-
FormalParameter,
|
|
14044
|
-
FunctionBody,
|
|
14045
|
-
ArrowFunctionExpression,
|
|
14046
|
-
YieldExpression,
|
|
14047
|
-
Class,
|
|
14048
|
-
ClassBody,
|
|
14049
|
-
MethodDefinition,
|
|
14050
|
-
PropertyDefinition,
|
|
14051
|
-
PrivateIdentifier,
|
|
14052
|
-
StaticBlock,
|
|
14053
|
-
AccessorProperty,
|
|
14054
|
-
ImportExpression,
|
|
14055
|
-
ImportDeclaration,
|
|
14056
|
-
ImportSpecifier,
|
|
14057
|
-
ImportDefaultSpecifier,
|
|
14058
|
-
ImportNamespaceSpecifier,
|
|
14059
|
-
WithClause,
|
|
14060
|
-
ImportAttribute,
|
|
14061
|
-
ExportNamedDeclaration,
|
|
14062
|
-
ExportDefaultDeclaration,
|
|
14063
|
-
ExportAllDeclaration,
|
|
14064
|
-
ExportSpecifier,
|
|
14065
|
-
V8IntrinsicExpression,
|
|
14066
|
-
BooleanLiteral,
|
|
14067
|
-
NullLiteral,
|
|
14068
|
-
NumericLiteral,
|
|
14069
|
-
StringLiteral,
|
|
14070
|
-
BigIntLiteral,
|
|
14071
|
-
RegExpLiteral,
|
|
14072
|
-
RegExp,
|
|
14073
|
-
RegExpPattern,
|
|
14074
|
-
RegExpFlags,
|
|
14075
|
-
JSXElement,
|
|
14076
|
-
JSXOpeningElement,
|
|
14077
|
-
JSXClosingElement,
|
|
14078
|
-
JSXFragment,
|
|
14079
|
-
JSXOpeningFragment,
|
|
14080
|
-
JSXClosingFragment,
|
|
14081
|
-
JSXNamespacedName,
|
|
14082
|
-
JSXMemberExpression,
|
|
14083
|
-
JSXExpressionContainer,
|
|
14084
|
-
JSXEmptyExpression,
|
|
14085
|
-
JSXAttribute,
|
|
14086
|
-
JSXSpreadAttribute,
|
|
14087
|
-
JSXIdentifier,
|
|
14088
|
-
JSXSpreadChild,
|
|
14089
|
-
JSXText,
|
|
14090
|
-
TSThisParameter,
|
|
14091
|
-
TSEnumDeclaration,
|
|
14092
|
-
TSEnumBody,
|
|
14093
|
-
TSEnumMember,
|
|
14094
|
-
TSTypeAnnotation,
|
|
14095
|
-
TSLiteralType,
|
|
14096
|
-
TSConditionalType,
|
|
14097
|
-
TSUnionType,
|
|
14098
|
-
TSIntersectionType,
|
|
14099
|
-
TSParenthesizedType,
|
|
14100
|
-
TSTypeOperator,
|
|
14101
|
-
TSArrayType,
|
|
14102
|
-
TSIndexedAccessType,
|
|
14103
|
-
TSTupleType,
|
|
14104
|
-
TSNamedTupleMember,
|
|
14105
|
-
TSOptionalType,
|
|
14106
|
-
TSRestType,
|
|
14107
|
-
TSAnyKeyword,
|
|
14108
|
-
TSStringKeyword,
|
|
14109
|
-
TSBooleanKeyword,
|
|
14110
|
-
TSNumberKeyword,
|
|
14111
|
-
TSNeverKeyword,
|
|
14112
|
-
TSIntrinsicKeyword,
|
|
14113
|
-
TSUnknownKeyword,
|
|
14114
|
-
TSNullKeyword,
|
|
14115
|
-
TSUndefinedKeyword,
|
|
14116
|
-
TSVoidKeyword,
|
|
14117
|
-
TSSymbolKeyword,
|
|
14118
|
-
TSThisType,
|
|
14119
|
-
TSObjectKeyword,
|
|
14120
|
-
TSBigIntKeyword,
|
|
14121
|
-
TSTypeReference,
|
|
14122
|
-
TSQualifiedName,
|
|
14123
|
-
TSTypeParameterInstantiation,
|
|
14124
|
-
TSTypeParameter,
|
|
14125
|
-
TSTypeParameterDeclaration,
|
|
14126
|
-
TSTypeAliasDeclaration,
|
|
14127
|
-
TSClassImplements,
|
|
14128
|
-
TSInterfaceDeclaration,
|
|
14129
|
-
TSInterfaceBody,
|
|
14130
|
-
TSPropertySignature,
|
|
14131
|
-
TSIndexSignature,
|
|
14132
|
-
TSCallSignatureDeclaration,
|
|
14133
|
-
TSMethodSignature,
|
|
14134
|
-
TSConstructSignatureDeclaration,
|
|
14135
|
-
TSIndexSignatureName,
|
|
14136
|
-
TSInterfaceHeritage,
|
|
14137
|
-
TSTypePredicate,
|
|
14138
|
-
TSModuleDeclaration,
|
|
14139
|
-
TSModuleBlock,
|
|
14140
|
-
TSTypeLiteral,
|
|
14141
|
-
TSInferType,
|
|
14142
|
-
TSTypeQuery,
|
|
14143
|
-
TSImportType,
|
|
14144
|
-
TSImportTypeQualifiedName,
|
|
14145
|
-
TSFunctionType,
|
|
14146
|
-
TSConstructorType,
|
|
14147
|
-
TSMappedType,
|
|
14148
|
-
TSTemplateLiteralType,
|
|
14149
|
-
TSAsExpression,
|
|
14150
|
-
TSSatisfiesExpression,
|
|
14151
|
-
TSTypeAssertion,
|
|
14152
|
-
TSImportEqualsDeclaration,
|
|
14153
|
-
TSExternalModuleReference,
|
|
14154
|
-
TSNonNullExpression,
|
|
14155
|
-
Decorator,
|
|
14156
|
-
TSExportAssignment,
|
|
14157
|
-
TSNamespaceExportDeclaration,
|
|
14158
|
-
TSInstantiationExpression,
|
|
14159
|
-
JSDocNullableType,
|
|
14160
|
-
JSDocNonNullableType,
|
|
14161
|
-
JSDocUnknownType,
|
|
14162
|
-
Comment,
|
|
14163
|
-
NameSpan,
|
|
14164
|
-
ImportEntry,
|
|
14165
|
-
ExportEntry,
|
|
14166
|
-
DynamicImport,
|
|
14167
|
-
Span,
|
|
14168
|
-
SourceType,
|
|
14169
|
-
RawTransferData,
|
|
14170
|
-
Error,
|
|
14171
|
-
ErrorLabel,
|
|
14172
|
-
EcmaScriptModule,
|
|
14173
|
-
StaticImport,
|
|
14174
|
-
StaticExport,
|
|
14175
|
-
};
|