oxc-parser 0.99.0 → 0.101.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/generated/deserialize/js.js +331 -329
- package/generated/deserialize/js_range.js +331 -329
- package/generated/deserialize/ts.js +347 -341
- package/generated/deserialize/ts_range.js +347 -341
- package/generated/lazy/constructors.js +549 -496
- package/generated/lazy/type_ids.js +180 -180
- package/generated/lazy/walk.js +11 -7
- package/generated/visit/keys.js +214 -166
- package/generated/visit/type_ids.js +165 -165
- package/generated/visit/visitor.d.ts +171 -167
- package/generated/visit/walk.js +165 -165
- package/package.json +26 -26
- package/src-js/bindings.js +52 -52
- package/src-js/index.d.ts +3 -3
- package/src-js/index.js +9 -9
- package/src-js/raw-transfer/common.js +12 -8
- package/src-js/raw-transfer/eager.js +18 -12
- package/src-js/raw-transfer/lazy-common.js +1 -1
- package/src-js/raw-transfer/lazy.js +10 -8
- package/src-js/raw-transfer/node-array.js +16 -10
- package/src-js/raw-transfer/supported.js +2 -2
- package/src-js/raw-transfer/visitor.js +9 -5
- package/src-js/visit/index.js +7 -3
- package/src-js/visit/visitor.js +11 -6
- package/src-js/wasm.js +3 -3
- package/src-js/webcontainer-fallback.cjs +6 -6
|
@@ -1,13 +1,13 @@
|
|
|
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/estree_visit.rs`.
|
|
3
3
|
|
|
4
|
-
import * as ESTree from
|
|
4
|
+
import * as ESTree from "@oxc-project/types";
|
|
5
5
|
|
|
6
6
|
export interface VisitorObject {
|
|
7
7
|
DebuggerStatement?: (node: ESTree.DebuggerStatement) => void;
|
|
8
|
-
|
|
8
|
+
"DebuggerStatement:exit"?: (node: ESTree.DebuggerStatement) => void;
|
|
9
9
|
EmptyStatement?: (node: ESTree.EmptyStatement) => void;
|
|
10
|
-
|
|
10
|
+
"EmptyStatement:exit"?: (node: ESTree.EmptyStatement) => void;
|
|
11
11
|
Literal?: (
|
|
12
12
|
node:
|
|
13
13
|
| ESTree.BooleanLiteral
|
|
@@ -17,7 +17,7 @@ export interface VisitorObject {
|
|
|
17
17
|
| ESTree.BigIntLiteral
|
|
18
18
|
| ESTree.RegExpLiteral,
|
|
19
19
|
) => void;
|
|
20
|
-
|
|
20
|
+
"Literal:exit"?: (
|
|
21
21
|
node:
|
|
22
22
|
| ESTree.BooleanLiteral
|
|
23
23
|
| ESTree.NullLiteral
|
|
@@ -27,113 +27,113 @@ export interface VisitorObject {
|
|
|
27
27
|
| ESTree.RegExpLiteral,
|
|
28
28
|
) => void;
|
|
29
29
|
PrivateIdentifier?: (node: ESTree.PrivateIdentifier) => void;
|
|
30
|
-
|
|
30
|
+
"PrivateIdentifier:exit"?: (node: ESTree.PrivateIdentifier) => void;
|
|
31
31
|
Super?: (node: ESTree.Super) => void;
|
|
32
|
-
|
|
32
|
+
"Super:exit"?: (node: ESTree.Super) => void;
|
|
33
33
|
TemplateElement?: (node: ESTree.TemplateElement) => void;
|
|
34
|
-
|
|
34
|
+
"TemplateElement:exit"?: (node: ESTree.TemplateElement) => void;
|
|
35
35
|
ThisExpression?: (node: ESTree.ThisExpression) => void;
|
|
36
|
-
|
|
36
|
+
"ThisExpression:exit"?: (node: ESTree.ThisExpression) => void;
|
|
37
37
|
JSXClosingFragment?: (node: ESTree.JSXClosingFragment) => void;
|
|
38
|
-
|
|
38
|
+
"JSXClosingFragment:exit"?: (node: ESTree.JSXClosingFragment) => void;
|
|
39
39
|
JSXEmptyExpression?: (node: ESTree.JSXEmptyExpression) => void;
|
|
40
|
-
|
|
40
|
+
"JSXEmptyExpression:exit"?: (node: ESTree.JSXEmptyExpression) => void;
|
|
41
41
|
JSXIdentifier?: (node: ESTree.JSXIdentifier) => void;
|
|
42
|
-
|
|
42
|
+
"JSXIdentifier:exit"?: (node: ESTree.JSXIdentifier) => void;
|
|
43
43
|
JSXOpeningFragment?: (node: ESTree.JSXOpeningFragment) => void;
|
|
44
|
-
|
|
44
|
+
"JSXOpeningFragment:exit"?: (node: ESTree.JSXOpeningFragment) => void;
|
|
45
45
|
JSXText?: (node: ESTree.JSXText) => void;
|
|
46
|
-
|
|
46
|
+
"JSXText:exit"?: (node: ESTree.JSXText) => void;
|
|
47
47
|
TSAnyKeyword?: (node: ESTree.TSAnyKeyword) => void;
|
|
48
|
-
|
|
48
|
+
"TSAnyKeyword:exit"?: (node: ESTree.TSAnyKeyword) => void;
|
|
49
49
|
TSBigIntKeyword?: (node: ESTree.TSBigIntKeyword) => void;
|
|
50
|
-
|
|
50
|
+
"TSBigIntKeyword:exit"?: (node: ESTree.TSBigIntKeyword) => void;
|
|
51
51
|
TSBooleanKeyword?: (node: ESTree.TSBooleanKeyword) => void;
|
|
52
|
-
|
|
52
|
+
"TSBooleanKeyword:exit"?: (node: ESTree.TSBooleanKeyword) => void;
|
|
53
53
|
TSIntrinsicKeyword?: (node: ESTree.TSIntrinsicKeyword) => void;
|
|
54
|
-
|
|
54
|
+
"TSIntrinsicKeyword:exit"?: (node: ESTree.TSIntrinsicKeyword) => void;
|
|
55
55
|
TSJSDocUnknownType?: (node: ESTree.JSDocUnknownType) => void;
|
|
56
|
-
|
|
56
|
+
"TSJSDocUnknownType:exit"?: (node: ESTree.JSDocUnknownType) => void;
|
|
57
57
|
TSNeverKeyword?: (node: ESTree.TSNeverKeyword) => void;
|
|
58
|
-
|
|
58
|
+
"TSNeverKeyword:exit"?: (node: ESTree.TSNeverKeyword) => void;
|
|
59
59
|
TSNullKeyword?: (node: ESTree.TSNullKeyword) => void;
|
|
60
|
-
|
|
60
|
+
"TSNullKeyword:exit"?: (node: ESTree.TSNullKeyword) => void;
|
|
61
61
|
TSNumberKeyword?: (node: ESTree.TSNumberKeyword) => void;
|
|
62
|
-
|
|
62
|
+
"TSNumberKeyword:exit"?: (node: ESTree.TSNumberKeyword) => void;
|
|
63
63
|
TSObjectKeyword?: (node: ESTree.TSObjectKeyword) => void;
|
|
64
|
-
|
|
64
|
+
"TSObjectKeyword:exit"?: (node: ESTree.TSObjectKeyword) => void;
|
|
65
65
|
TSStringKeyword?: (node: ESTree.TSStringKeyword) => void;
|
|
66
|
-
|
|
66
|
+
"TSStringKeyword:exit"?: (node: ESTree.TSStringKeyword) => void;
|
|
67
67
|
TSSymbolKeyword?: (node: ESTree.TSSymbolKeyword) => void;
|
|
68
|
-
|
|
68
|
+
"TSSymbolKeyword:exit"?: (node: ESTree.TSSymbolKeyword) => void;
|
|
69
69
|
TSThisType?: (node: ESTree.TSThisType) => void;
|
|
70
|
-
|
|
70
|
+
"TSThisType:exit"?: (node: ESTree.TSThisType) => void;
|
|
71
71
|
TSUndefinedKeyword?: (node: ESTree.TSUndefinedKeyword) => void;
|
|
72
|
-
|
|
72
|
+
"TSUndefinedKeyword:exit"?: (node: ESTree.TSUndefinedKeyword) => void;
|
|
73
73
|
TSUnknownKeyword?: (node: ESTree.TSUnknownKeyword) => void;
|
|
74
|
-
|
|
74
|
+
"TSUnknownKeyword:exit"?: (node: ESTree.TSUnknownKeyword) => void;
|
|
75
75
|
TSVoidKeyword?: (node: ESTree.TSVoidKeyword) => void;
|
|
76
|
-
|
|
76
|
+
"TSVoidKeyword:exit"?: (node: ESTree.TSVoidKeyword) => void;
|
|
77
77
|
AccessorProperty?: (node: ESTree.AccessorProperty) => void;
|
|
78
|
-
|
|
78
|
+
"AccessorProperty:exit"?: (node: ESTree.AccessorProperty) => void;
|
|
79
79
|
ArrayExpression?: (node: ESTree.ArrayExpression) => void;
|
|
80
|
-
|
|
80
|
+
"ArrayExpression:exit"?: (node: ESTree.ArrayExpression) => void;
|
|
81
81
|
ArrayPattern?: (node: ESTree.ArrayPattern) => void;
|
|
82
|
-
|
|
82
|
+
"ArrayPattern:exit"?: (node: ESTree.ArrayPattern) => void;
|
|
83
83
|
ArrowFunctionExpression?: (node: ESTree.ArrowFunctionExpression) => void;
|
|
84
|
-
|
|
84
|
+
"ArrowFunctionExpression:exit"?: (node: ESTree.ArrowFunctionExpression) => void;
|
|
85
85
|
AssignmentExpression?: (node: ESTree.AssignmentExpression) => void;
|
|
86
|
-
|
|
86
|
+
"AssignmentExpression:exit"?: (node: ESTree.AssignmentExpression) => void;
|
|
87
87
|
AssignmentPattern?: (node: ESTree.AssignmentPattern) => void;
|
|
88
|
-
|
|
88
|
+
"AssignmentPattern:exit"?: (node: ESTree.AssignmentPattern) => void;
|
|
89
89
|
AwaitExpression?: (node: ESTree.AwaitExpression) => void;
|
|
90
|
-
|
|
90
|
+
"AwaitExpression:exit"?: (node: ESTree.AwaitExpression) => void;
|
|
91
91
|
BinaryExpression?: (node: ESTree.BinaryExpression) => void;
|
|
92
|
-
|
|
92
|
+
"BinaryExpression:exit"?: (node: ESTree.BinaryExpression) => void;
|
|
93
93
|
BlockStatement?: (node: ESTree.BlockStatement) => void;
|
|
94
|
-
|
|
94
|
+
"BlockStatement:exit"?: (node: ESTree.BlockStatement) => void;
|
|
95
95
|
BreakStatement?: (node: ESTree.BreakStatement) => void;
|
|
96
|
-
|
|
96
|
+
"BreakStatement:exit"?: (node: ESTree.BreakStatement) => void;
|
|
97
97
|
CallExpression?: (node: ESTree.CallExpression) => void;
|
|
98
|
-
|
|
98
|
+
"CallExpression:exit"?: (node: ESTree.CallExpression) => void;
|
|
99
99
|
CatchClause?: (node: ESTree.CatchClause) => void;
|
|
100
|
-
|
|
100
|
+
"CatchClause:exit"?: (node: ESTree.CatchClause) => void;
|
|
101
101
|
ChainExpression?: (node: ESTree.ChainExpression) => void;
|
|
102
|
-
|
|
102
|
+
"ChainExpression:exit"?: (node: ESTree.ChainExpression) => void;
|
|
103
103
|
ClassBody?: (node: ESTree.ClassBody) => void;
|
|
104
|
-
|
|
104
|
+
"ClassBody:exit"?: (node: ESTree.ClassBody) => void;
|
|
105
105
|
ClassDeclaration?: (node: ESTree.Class) => void;
|
|
106
|
-
|
|
106
|
+
"ClassDeclaration:exit"?: (node: ESTree.Class) => void;
|
|
107
107
|
ClassExpression?: (node: ESTree.Class) => void;
|
|
108
|
-
|
|
108
|
+
"ClassExpression:exit"?: (node: ESTree.Class) => void;
|
|
109
109
|
ConditionalExpression?: (node: ESTree.ConditionalExpression) => void;
|
|
110
|
-
|
|
110
|
+
"ConditionalExpression:exit"?: (node: ESTree.ConditionalExpression) => void;
|
|
111
111
|
ContinueStatement?: (node: ESTree.ContinueStatement) => void;
|
|
112
|
-
|
|
112
|
+
"ContinueStatement:exit"?: (node: ESTree.ContinueStatement) => void;
|
|
113
113
|
Decorator?: (node: ESTree.Decorator) => void;
|
|
114
|
-
|
|
114
|
+
"Decorator:exit"?: (node: ESTree.Decorator) => void;
|
|
115
115
|
DoWhileStatement?: (node: ESTree.DoWhileStatement) => void;
|
|
116
|
-
|
|
116
|
+
"DoWhileStatement:exit"?: (node: ESTree.DoWhileStatement) => void;
|
|
117
117
|
ExportAllDeclaration?: (node: ESTree.ExportAllDeclaration) => void;
|
|
118
|
-
|
|
118
|
+
"ExportAllDeclaration:exit"?: (node: ESTree.ExportAllDeclaration) => void;
|
|
119
119
|
ExportDefaultDeclaration?: (node: ESTree.ExportDefaultDeclaration) => void;
|
|
120
|
-
|
|
120
|
+
"ExportDefaultDeclaration:exit"?: (node: ESTree.ExportDefaultDeclaration) => void;
|
|
121
121
|
ExportNamedDeclaration?: (node: ESTree.ExportNamedDeclaration) => void;
|
|
122
|
-
|
|
122
|
+
"ExportNamedDeclaration:exit"?: (node: ESTree.ExportNamedDeclaration) => void;
|
|
123
123
|
ExportSpecifier?: (node: ESTree.ExportSpecifier) => void;
|
|
124
|
-
|
|
124
|
+
"ExportSpecifier:exit"?: (node: ESTree.ExportSpecifier) => void;
|
|
125
125
|
ExpressionStatement?: (node: ESTree.ExpressionStatement) => void;
|
|
126
|
-
|
|
126
|
+
"ExpressionStatement:exit"?: (node: ESTree.ExpressionStatement) => void;
|
|
127
127
|
ForInStatement?: (node: ESTree.ForInStatement) => void;
|
|
128
|
-
|
|
128
|
+
"ForInStatement:exit"?: (node: ESTree.ForInStatement) => void;
|
|
129
129
|
ForOfStatement?: (node: ESTree.ForOfStatement) => void;
|
|
130
|
-
|
|
130
|
+
"ForOfStatement:exit"?: (node: ESTree.ForOfStatement) => void;
|
|
131
131
|
ForStatement?: (node: ESTree.ForStatement) => void;
|
|
132
|
-
|
|
132
|
+
"ForStatement:exit"?: (node: ESTree.ForStatement) => void;
|
|
133
133
|
FunctionDeclaration?: (node: ESTree.Function) => void;
|
|
134
|
-
|
|
134
|
+
"FunctionDeclaration:exit"?: (node: ESTree.Function) => void;
|
|
135
135
|
FunctionExpression?: (node: ESTree.Function) => void;
|
|
136
|
-
|
|
136
|
+
"FunctionExpression:exit"?: (node: ESTree.Function) => void;
|
|
137
137
|
Identifier?: (
|
|
138
138
|
node:
|
|
139
139
|
| ESTree.IdentifierName
|
|
@@ -143,7 +143,7 @@ export interface VisitorObject {
|
|
|
143
143
|
| ESTree.TSThisParameter
|
|
144
144
|
| ESTree.TSIndexSignatureName,
|
|
145
145
|
) => void;
|
|
146
|
-
|
|
146
|
+
"Identifier:exit"?: (
|
|
147
147
|
node:
|
|
148
148
|
| ESTree.IdentifierName
|
|
149
149
|
| ESTree.IdentifierReference
|
|
@@ -153,39 +153,39 @@ export interface VisitorObject {
|
|
|
153
153
|
| ESTree.TSIndexSignatureName,
|
|
154
154
|
) => void;
|
|
155
155
|
IfStatement?: (node: ESTree.IfStatement) => void;
|
|
156
|
-
|
|
156
|
+
"IfStatement:exit"?: (node: ESTree.IfStatement) => void;
|
|
157
157
|
ImportAttribute?: (node: ESTree.ImportAttribute) => void;
|
|
158
|
-
|
|
158
|
+
"ImportAttribute:exit"?: (node: ESTree.ImportAttribute) => void;
|
|
159
159
|
ImportDeclaration?: (node: ESTree.ImportDeclaration) => void;
|
|
160
|
-
|
|
160
|
+
"ImportDeclaration:exit"?: (node: ESTree.ImportDeclaration) => void;
|
|
161
161
|
ImportDefaultSpecifier?: (node: ESTree.ImportDefaultSpecifier) => void;
|
|
162
|
-
|
|
162
|
+
"ImportDefaultSpecifier:exit"?: (node: ESTree.ImportDefaultSpecifier) => void;
|
|
163
163
|
ImportExpression?: (node: ESTree.ImportExpression) => void;
|
|
164
|
-
|
|
164
|
+
"ImportExpression:exit"?: (node: ESTree.ImportExpression) => void;
|
|
165
165
|
ImportNamespaceSpecifier?: (node: ESTree.ImportNamespaceSpecifier) => void;
|
|
166
|
-
|
|
166
|
+
"ImportNamespaceSpecifier:exit"?: (node: ESTree.ImportNamespaceSpecifier) => void;
|
|
167
167
|
ImportSpecifier?: (node: ESTree.ImportSpecifier) => void;
|
|
168
|
-
|
|
168
|
+
"ImportSpecifier:exit"?: (node: ESTree.ImportSpecifier) => void;
|
|
169
169
|
LabeledStatement?: (node: ESTree.LabeledStatement) => void;
|
|
170
|
-
|
|
170
|
+
"LabeledStatement:exit"?: (node: ESTree.LabeledStatement) => void;
|
|
171
171
|
LogicalExpression?: (node: ESTree.LogicalExpression) => void;
|
|
172
|
-
|
|
172
|
+
"LogicalExpression:exit"?: (node: ESTree.LogicalExpression) => void;
|
|
173
173
|
MemberExpression?: (node: ESTree.MemberExpression) => void;
|
|
174
|
-
|
|
174
|
+
"MemberExpression:exit"?: (node: ESTree.MemberExpression) => void;
|
|
175
175
|
MetaProperty?: (node: ESTree.MetaProperty) => void;
|
|
176
|
-
|
|
176
|
+
"MetaProperty:exit"?: (node: ESTree.MetaProperty) => void;
|
|
177
177
|
MethodDefinition?: (node: ESTree.MethodDefinition) => void;
|
|
178
|
-
|
|
178
|
+
"MethodDefinition:exit"?: (node: ESTree.MethodDefinition) => void;
|
|
179
179
|
NewExpression?: (node: ESTree.NewExpression) => void;
|
|
180
|
-
|
|
180
|
+
"NewExpression:exit"?: (node: ESTree.NewExpression) => void;
|
|
181
181
|
ObjectExpression?: (node: ESTree.ObjectExpression) => void;
|
|
182
|
-
|
|
182
|
+
"ObjectExpression:exit"?: (node: ESTree.ObjectExpression) => void;
|
|
183
183
|
ObjectPattern?: (node: ESTree.ObjectPattern) => void;
|
|
184
|
-
|
|
184
|
+
"ObjectPattern:exit"?: (node: ESTree.ObjectPattern) => void;
|
|
185
185
|
ParenthesizedExpression?: (node: ESTree.ParenthesizedExpression) => void;
|
|
186
|
-
|
|
186
|
+
"ParenthesizedExpression:exit"?: (node: ESTree.ParenthesizedExpression) => void;
|
|
187
187
|
Program?: (node: ESTree.Program) => void;
|
|
188
|
-
|
|
188
|
+
"Program:exit"?: (node: ESTree.Program) => void;
|
|
189
189
|
Property?: (
|
|
190
190
|
node:
|
|
191
191
|
| ESTree.ObjectProperty
|
|
@@ -193,7 +193,7 @@ export interface VisitorObject {
|
|
|
193
193
|
| ESTree.AssignmentTargetPropertyProperty
|
|
194
194
|
| ESTree.BindingProperty,
|
|
195
195
|
) => void;
|
|
196
|
-
|
|
196
|
+
"Property:exit"?: (
|
|
197
197
|
node:
|
|
198
198
|
| ESTree.ObjectProperty
|
|
199
199
|
| ESTree.AssignmentTargetProperty
|
|
@@ -201,183 +201,187 @@ export interface VisitorObject {
|
|
|
201
201
|
| ESTree.BindingProperty,
|
|
202
202
|
) => void;
|
|
203
203
|
PropertyDefinition?: (node: ESTree.PropertyDefinition) => void;
|
|
204
|
-
|
|
205
|
-
RestElement?: (
|
|
206
|
-
|
|
204
|
+
"PropertyDefinition:exit"?: (node: ESTree.PropertyDefinition) => void;
|
|
205
|
+
RestElement?: (
|
|
206
|
+
node: ESTree.AssignmentTargetRest | ESTree.BindingRestElement | ESTree.FormalParameterRest,
|
|
207
|
+
) => void;
|
|
208
|
+
"RestElement:exit"?: (
|
|
207
209
|
node: ESTree.AssignmentTargetRest | ESTree.BindingRestElement | ESTree.FormalParameterRest,
|
|
208
210
|
) => void;
|
|
209
211
|
ReturnStatement?: (node: ESTree.ReturnStatement) => void;
|
|
210
|
-
|
|
212
|
+
"ReturnStatement:exit"?: (node: ESTree.ReturnStatement) => void;
|
|
211
213
|
SequenceExpression?: (node: ESTree.SequenceExpression) => void;
|
|
212
|
-
|
|
214
|
+
"SequenceExpression:exit"?: (node: ESTree.SequenceExpression) => void;
|
|
213
215
|
SpreadElement?: (node: ESTree.SpreadElement) => void;
|
|
214
|
-
|
|
216
|
+
"SpreadElement:exit"?: (node: ESTree.SpreadElement) => void;
|
|
215
217
|
StaticBlock?: (node: ESTree.StaticBlock) => void;
|
|
216
|
-
|
|
218
|
+
"StaticBlock:exit"?: (node: ESTree.StaticBlock) => void;
|
|
217
219
|
SwitchCase?: (node: ESTree.SwitchCase) => void;
|
|
218
|
-
|
|
220
|
+
"SwitchCase:exit"?: (node: ESTree.SwitchCase) => void;
|
|
219
221
|
SwitchStatement?: (node: ESTree.SwitchStatement) => void;
|
|
220
|
-
|
|
222
|
+
"SwitchStatement:exit"?: (node: ESTree.SwitchStatement) => void;
|
|
221
223
|
TaggedTemplateExpression?: (node: ESTree.TaggedTemplateExpression) => void;
|
|
222
|
-
|
|
224
|
+
"TaggedTemplateExpression:exit"?: (node: ESTree.TaggedTemplateExpression) => void;
|
|
223
225
|
TemplateLiteral?: (node: ESTree.TemplateLiteral) => void;
|
|
224
|
-
|
|
226
|
+
"TemplateLiteral:exit"?: (node: ESTree.TemplateLiteral) => void;
|
|
225
227
|
ThrowStatement?: (node: ESTree.ThrowStatement) => void;
|
|
226
|
-
|
|
228
|
+
"ThrowStatement:exit"?: (node: ESTree.ThrowStatement) => void;
|
|
227
229
|
TryStatement?: (node: ESTree.TryStatement) => void;
|
|
228
|
-
|
|
230
|
+
"TryStatement:exit"?: (node: ESTree.TryStatement) => void;
|
|
229
231
|
UnaryExpression?: (node: ESTree.UnaryExpression) => void;
|
|
230
|
-
|
|
232
|
+
"UnaryExpression:exit"?: (node: ESTree.UnaryExpression) => void;
|
|
231
233
|
UpdateExpression?: (node: ESTree.UpdateExpression) => void;
|
|
232
|
-
|
|
234
|
+
"UpdateExpression:exit"?: (node: ESTree.UpdateExpression) => void;
|
|
233
235
|
V8IntrinsicExpression?: (node: ESTree.V8IntrinsicExpression) => void;
|
|
234
|
-
|
|
236
|
+
"V8IntrinsicExpression:exit"?: (node: ESTree.V8IntrinsicExpression) => void;
|
|
235
237
|
VariableDeclaration?: (node: ESTree.VariableDeclaration) => void;
|
|
236
|
-
|
|
238
|
+
"VariableDeclaration:exit"?: (node: ESTree.VariableDeclaration) => void;
|
|
237
239
|
VariableDeclarator?: (node: ESTree.VariableDeclarator) => void;
|
|
238
|
-
|
|
240
|
+
"VariableDeclarator:exit"?: (node: ESTree.VariableDeclarator) => void;
|
|
239
241
|
WhileStatement?: (node: ESTree.WhileStatement) => void;
|
|
240
|
-
|
|
242
|
+
"WhileStatement:exit"?: (node: ESTree.WhileStatement) => void;
|
|
241
243
|
WithStatement?: (node: ESTree.WithStatement) => void;
|
|
242
|
-
|
|
244
|
+
"WithStatement:exit"?: (node: ESTree.WithStatement) => void;
|
|
243
245
|
YieldExpression?: (node: ESTree.YieldExpression) => void;
|
|
244
|
-
|
|
246
|
+
"YieldExpression:exit"?: (node: ESTree.YieldExpression) => void;
|
|
245
247
|
JSXAttribute?: (node: ESTree.JSXAttribute) => void;
|
|
246
|
-
|
|
248
|
+
"JSXAttribute:exit"?: (node: ESTree.JSXAttribute) => void;
|
|
247
249
|
JSXClosingElement?: (node: ESTree.JSXClosingElement) => void;
|
|
248
|
-
|
|
250
|
+
"JSXClosingElement:exit"?: (node: ESTree.JSXClosingElement) => void;
|
|
249
251
|
JSXElement?: (node: ESTree.JSXElement) => void;
|
|
250
|
-
|
|
252
|
+
"JSXElement:exit"?: (node: ESTree.JSXElement) => void;
|
|
251
253
|
JSXExpressionContainer?: (node: ESTree.JSXExpressionContainer) => void;
|
|
252
|
-
|
|
254
|
+
"JSXExpressionContainer:exit"?: (node: ESTree.JSXExpressionContainer) => void;
|
|
253
255
|
JSXFragment?: (node: ESTree.JSXFragment) => void;
|
|
254
|
-
|
|
256
|
+
"JSXFragment:exit"?: (node: ESTree.JSXFragment) => void;
|
|
255
257
|
JSXMemberExpression?: (node: ESTree.JSXMemberExpression) => void;
|
|
256
|
-
|
|
258
|
+
"JSXMemberExpression:exit"?: (node: ESTree.JSXMemberExpression) => void;
|
|
257
259
|
JSXNamespacedName?: (node: ESTree.JSXNamespacedName) => void;
|
|
258
|
-
|
|
260
|
+
"JSXNamespacedName:exit"?: (node: ESTree.JSXNamespacedName) => void;
|
|
259
261
|
JSXOpeningElement?: (node: ESTree.JSXOpeningElement) => void;
|
|
260
|
-
|
|
262
|
+
"JSXOpeningElement:exit"?: (node: ESTree.JSXOpeningElement) => void;
|
|
261
263
|
JSXSpreadAttribute?: (node: ESTree.JSXSpreadAttribute) => void;
|
|
262
|
-
|
|
264
|
+
"JSXSpreadAttribute:exit"?: (node: ESTree.JSXSpreadAttribute) => void;
|
|
263
265
|
JSXSpreadChild?: (node: ESTree.JSXSpreadChild) => void;
|
|
264
|
-
|
|
266
|
+
"JSXSpreadChild:exit"?: (node: ESTree.JSXSpreadChild) => void;
|
|
265
267
|
TSAbstractAccessorProperty?: (node: ESTree.AccessorProperty) => void;
|
|
266
|
-
|
|
268
|
+
"TSAbstractAccessorProperty:exit"?: (node: ESTree.AccessorProperty) => void;
|
|
267
269
|
TSAbstractMethodDefinition?: (node: ESTree.MethodDefinition) => void;
|
|
268
|
-
|
|
270
|
+
"TSAbstractMethodDefinition:exit"?: (node: ESTree.MethodDefinition) => void;
|
|
269
271
|
TSAbstractPropertyDefinition?: (node: ESTree.PropertyDefinition) => void;
|
|
270
|
-
|
|
272
|
+
"TSAbstractPropertyDefinition:exit"?: (node: ESTree.PropertyDefinition) => void;
|
|
271
273
|
TSArrayType?: (node: ESTree.TSArrayType) => void;
|
|
272
|
-
|
|
274
|
+
"TSArrayType:exit"?: (node: ESTree.TSArrayType) => void;
|
|
273
275
|
TSAsExpression?: (node: ESTree.TSAsExpression) => void;
|
|
274
|
-
|
|
276
|
+
"TSAsExpression:exit"?: (node: ESTree.TSAsExpression) => void;
|
|
275
277
|
TSCallSignatureDeclaration?: (node: ESTree.TSCallSignatureDeclaration) => void;
|
|
276
|
-
|
|
278
|
+
"TSCallSignatureDeclaration:exit"?: (node: ESTree.TSCallSignatureDeclaration) => void;
|
|
277
279
|
TSClassImplements?: (node: ESTree.TSClassImplements) => void;
|
|
278
|
-
|
|
280
|
+
"TSClassImplements:exit"?: (node: ESTree.TSClassImplements) => void;
|
|
279
281
|
TSConditionalType?: (node: ESTree.TSConditionalType) => void;
|
|
280
|
-
|
|
282
|
+
"TSConditionalType:exit"?: (node: ESTree.TSConditionalType) => void;
|
|
281
283
|
TSConstructSignatureDeclaration?: (node: ESTree.TSConstructSignatureDeclaration) => void;
|
|
282
|
-
|
|
284
|
+
"TSConstructSignatureDeclaration:exit"?: (node: ESTree.TSConstructSignatureDeclaration) => void;
|
|
283
285
|
TSConstructorType?: (node: ESTree.TSConstructorType) => void;
|
|
284
|
-
|
|
286
|
+
"TSConstructorType:exit"?: (node: ESTree.TSConstructorType) => void;
|
|
285
287
|
TSDeclareFunction?: (node: ESTree.Function) => void;
|
|
286
|
-
|
|
288
|
+
"TSDeclareFunction:exit"?: (node: ESTree.Function) => void;
|
|
287
289
|
TSEmptyBodyFunctionExpression?: (node: ESTree.Function) => void;
|
|
288
|
-
|
|
290
|
+
"TSEmptyBodyFunctionExpression:exit"?: (node: ESTree.Function) => void;
|
|
289
291
|
TSEnumBody?: (node: ESTree.TSEnumBody) => void;
|
|
290
|
-
|
|
292
|
+
"TSEnumBody:exit"?: (node: ESTree.TSEnumBody) => void;
|
|
291
293
|
TSEnumDeclaration?: (node: ESTree.TSEnumDeclaration) => void;
|
|
292
|
-
|
|
294
|
+
"TSEnumDeclaration:exit"?: (node: ESTree.TSEnumDeclaration) => void;
|
|
293
295
|
TSEnumMember?: (node: ESTree.TSEnumMember) => void;
|
|
294
|
-
|
|
296
|
+
"TSEnumMember:exit"?: (node: ESTree.TSEnumMember) => void;
|
|
295
297
|
TSExportAssignment?: (node: ESTree.TSExportAssignment) => void;
|
|
296
|
-
|
|
298
|
+
"TSExportAssignment:exit"?: (node: ESTree.TSExportAssignment) => void;
|
|
297
299
|
TSExternalModuleReference?: (node: ESTree.TSExternalModuleReference) => void;
|
|
298
|
-
|
|
300
|
+
"TSExternalModuleReference:exit"?: (node: ESTree.TSExternalModuleReference) => void;
|
|
299
301
|
TSFunctionType?: (node: ESTree.TSFunctionType) => void;
|
|
300
|
-
|
|
302
|
+
"TSFunctionType:exit"?: (node: ESTree.TSFunctionType) => void;
|
|
301
303
|
TSImportEqualsDeclaration?: (node: ESTree.TSImportEqualsDeclaration) => void;
|
|
302
|
-
|
|
304
|
+
"TSImportEqualsDeclaration:exit"?: (node: ESTree.TSImportEqualsDeclaration) => void;
|
|
303
305
|
TSImportType?: (node: ESTree.TSImportType) => void;
|
|
304
|
-
|
|
306
|
+
"TSImportType:exit"?: (node: ESTree.TSImportType) => void;
|
|
305
307
|
TSIndexSignature?: (node: ESTree.TSIndexSignature) => void;
|
|
306
|
-
|
|
308
|
+
"TSIndexSignature:exit"?: (node: ESTree.TSIndexSignature) => void;
|
|
307
309
|
TSIndexedAccessType?: (node: ESTree.TSIndexedAccessType) => void;
|
|
308
|
-
|
|
310
|
+
"TSIndexedAccessType:exit"?: (node: ESTree.TSIndexedAccessType) => void;
|
|
309
311
|
TSInferType?: (node: ESTree.TSInferType) => void;
|
|
310
|
-
|
|
312
|
+
"TSInferType:exit"?: (node: ESTree.TSInferType) => void;
|
|
311
313
|
TSInstantiationExpression?: (node: ESTree.TSInstantiationExpression) => void;
|
|
312
|
-
|
|
314
|
+
"TSInstantiationExpression:exit"?: (node: ESTree.TSInstantiationExpression) => void;
|
|
313
315
|
TSInterfaceBody?: (node: ESTree.TSInterfaceBody) => void;
|
|
314
|
-
|
|
316
|
+
"TSInterfaceBody:exit"?: (node: ESTree.TSInterfaceBody) => void;
|
|
315
317
|
TSInterfaceDeclaration?: (node: ESTree.TSInterfaceDeclaration) => void;
|
|
316
|
-
|
|
318
|
+
"TSInterfaceDeclaration:exit"?: (node: ESTree.TSInterfaceDeclaration) => void;
|
|
317
319
|
TSInterfaceHeritage?: (node: ESTree.TSInterfaceHeritage) => void;
|
|
318
|
-
|
|
320
|
+
"TSInterfaceHeritage:exit"?: (node: ESTree.TSInterfaceHeritage) => void;
|
|
319
321
|
TSIntersectionType?: (node: ESTree.TSIntersectionType) => void;
|
|
320
|
-
|
|
322
|
+
"TSIntersectionType:exit"?: (node: ESTree.TSIntersectionType) => void;
|
|
321
323
|
TSJSDocNonNullableType?: (node: ESTree.JSDocNonNullableType) => void;
|
|
322
|
-
|
|
324
|
+
"TSJSDocNonNullableType:exit"?: (node: ESTree.JSDocNonNullableType) => void;
|
|
323
325
|
TSJSDocNullableType?: (node: ESTree.JSDocNullableType) => void;
|
|
324
|
-
|
|
326
|
+
"TSJSDocNullableType:exit"?: (node: ESTree.JSDocNullableType) => void;
|
|
325
327
|
TSLiteralType?: (node: ESTree.TSLiteralType) => void;
|
|
326
|
-
|
|
328
|
+
"TSLiteralType:exit"?: (node: ESTree.TSLiteralType) => void;
|
|
327
329
|
TSMappedType?: (node: ESTree.TSMappedType) => void;
|
|
328
|
-
|
|
330
|
+
"TSMappedType:exit"?: (node: ESTree.TSMappedType) => void;
|
|
329
331
|
TSMethodSignature?: (node: ESTree.TSMethodSignature) => void;
|
|
330
|
-
|
|
332
|
+
"TSMethodSignature:exit"?: (node: ESTree.TSMethodSignature) => void;
|
|
331
333
|
TSModuleBlock?: (node: ESTree.TSModuleBlock) => void;
|
|
332
|
-
|
|
334
|
+
"TSModuleBlock:exit"?: (node: ESTree.TSModuleBlock) => void;
|
|
333
335
|
TSModuleDeclaration?: (node: ESTree.TSModuleDeclaration | ESTree.TSGlobalDeclaration) => void;
|
|
334
|
-
|
|
336
|
+
"TSModuleDeclaration:exit"?: (
|
|
337
|
+
node: ESTree.TSModuleDeclaration | ESTree.TSGlobalDeclaration,
|
|
338
|
+
) => void;
|
|
335
339
|
TSNamedTupleMember?: (node: ESTree.TSNamedTupleMember) => void;
|
|
336
|
-
|
|
340
|
+
"TSNamedTupleMember:exit"?: (node: ESTree.TSNamedTupleMember) => void;
|
|
337
341
|
TSNamespaceExportDeclaration?: (node: ESTree.TSNamespaceExportDeclaration) => void;
|
|
338
|
-
|
|
342
|
+
"TSNamespaceExportDeclaration:exit"?: (node: ESTree.TSNamespaceExportDeclaration) => void;
|
|
339
343
|
TSNonNullExpression?: (node: ESTree.TSNonNullExpression) => void;
|
|
340
|
-
|
|
344
|
+
"TSNonNullExpression:exit"?: (node: ESTree.TSNonNullExpression) => void;
|
|
341
345
|
TSOptionalType?: (node: ESTree.TSOptionalType) => void;
|
|
342
|
-
|
|
346
|
+
"TSOptionalType:exit"?: (node: ESTree.TSOptionalType) => void;
|
|
343
347
|
TSParameterProperty?: (node: ESTree.TSParameterProperty) => void;
|
|
344
|
-
|
|
348
|
+
"TSParameterProperty:exit"?: (node: ESTree.TSParameterProperty) => void;
|
|
345
349
|
TSParenthesizedType?: (node: ESTree.TSParenthesizedType) => void;
|
|
346
|
-
|
|
350
|
+
"TSParenthesizedType:exit"?: (node: ESTree.TSParenthesizedType) => void;
|
|
347
351
|
TSPropertySignature?: (node: ESTree.TSPropertySignature) => void;
|
|
348
|
-
|
|
352
|
+
"TSPropertySignature:exit"?: (node: ESTree.TSPropertySignature) => void;
|
|
349
353
|
TSQualifiedName?: (node: ESTree.TSQualifiedName) => void;
|
|
350
|
-
|
|
354
|
+
"TSQualifiedName:exit"?: (node: ESTree.TSQualifiedName) => void;
|
|
351
355
|
TSRestType?: (node: ESTree.TSRestType) => void;
|
|
352
|
-
|
|
356
|
+
"TSRestType:exit"?: (node: ESTree.TSRestType) => void;
|
|
353
357
|
TSSatisfiesExpression?: (node: ESTree.TSSatisfiesExpression) => void;
|
|
354
|
-
|
|
358
|
+
"TSSatisfiesExpression:exit"?: (node: ESTree.TSSatisfiesExpression) => void;
|
|
355
359
|
TSTemplateLiteralType?: (node: ESTree.TSTemplateLiteralType) => void;
|
|
356
|
-
|
|
360
|
+
"TSTemplateLiteralType:exit"?: (node: ESTree.TSTemplateLiteralType) => void;
|
|
357
361
|
TSTupleType?: (node: ESTree.TSTupleType) => void;
|
|
358
|
-
|
|
362
|
+
"TSTupleType:exit"?: (node: ESTree.TSTupleType) => void;
|
|
359
363
|
TSTypeAliasDeclaration?: (node: ESTree.TSTypeAliasDeclaration) => void;
|
|
360
|
-
|
|
364
|
+
"TSTypeAliasDeclaration:exit"?: (node: ESTree.TSTypeAliasDeclaration) => void;
|
|
361
365
|
TSTypeAnnotation?: (node: ESTree.TSTypeAnnotation) => void;
|
|
362
|
-
|
|
366
|
+
"TSTypeAnnotation:exit"?: (node: ESTree.TSTypeAnnotation) => void;
|
|
363
367
|
TSTypeAssertion?: (node: ESTree.TSTypeAssertion) => void;
|
|
364
|
-
|
|
368
|
+
"TSTypeAssertion:exit"?: (node: ESTree.TSTypeAssertion) => void;
|
|
365
369
|
TSTypeLiteral?: (node: ESTree.TSTypeLiteral) => void;
|
|
366
|
-
|
|
370
|
+
"TSTypeLiteral:exit"?: (node: ESTree.TSTypeLiteral) => void;
|
|
367
371
|
TSTypeOperator?: (node: ESTree.TSTypeOperator) => void;
|
|
368
|
-
|
|
372
|
+
"TSTypeOperator:exit"?: (node: ESTree.TSTypeOperator) => void;
|
|
369
373
|
TSTypeParameter?: (node: ESTree.TSTypeParameter) => void;
|
|
370
|
-
|
|
374
|
+
"TSTypeParameter:exit"?: (node: ESTree.TSTypeParameter) => void;
|
|
371
375
|
TSTypeParameterDeclaration?: (node: ESTree.TSTypeParameterDeclaration) => void;
|
|
372
|
-
|
|
376
|
+
"TSTypeParameterDeclaration:exit"?: (node: ESTree.TSTypeParameterDeclaration) => void;
|
|
373
377
|
TSTypeParameterInstantiation?: (node: ESTree.TSTypeParameterInstantiation) => void;
|
|
374
|
-
|
|
378
|
+
"TSTypeParameterInstantiation:exit"?: (node: ESTree.TSTypeParameterInstantiation) => void;
|
|
375
379
|
TSTypePredicate?: (node: ESTree.TSTypePredicate) => void;
|
|
376
|
-
|
|
380
|
+
"TSTypePredicate:exit"?: (node: ESTree.TSTypePredicate) => void;
|
|
377
381
|
TSTypeQuery?: (node: ESTree.TSTypeQuery) => void;
|
|
378
|
-
|
|
382
|
+
"TSTypeQuery:exit"?: (node: ESTree.TSTypeQuery) => void;
|
|
379
383
|
TSTypeReference?: (node: ESTree.TSTypeReference) => void;
|
|
380
|
-
|
|
384
|
+
"TSTypeReference:exit"?: (node: ESTree.TSTypeReference) => void;
|
|
381
385
|
TSUnionType?: (node: ESTree.TSUnionType) => void;
|
|
382
|
-
|
|
386
|
+
"TSUnionType:exit"?: (node: ESTree.TSUnionType) => void;
|
|
383
387
|
}
|