@@ -226,6 +226,8 @@ interface RuleListener {
226
226
AssignmentPattern ?: RuleFunction < TSESTree . AssignmentPattern > ;
227
227
AssignmentExpression ?: RuleFunction < TSESTree . AssignmentExpression > ;
228
228
AwaitExpression ?: RuleFunction < TSESTree . AwaitExpression > ;
229
+ BigIntLiteral ?: RuleFunction < TSESTree . BigIntLiteral > ;
230
+ BinaryExpression ?: RuleFunction < TSESTree . BinaryExpression > ;
229
231
BlockStatement ?: RuleFunction < TSESTree . BlockStatement > ;
230
232
BreakStatement ?: RuleFunction < TSESTree . BreakStatement > ;
231
233
CallExpression ?: RuleFunction < TSESTree . CallExpression > ;
@@ -249,6 +251,8 @@ interface RuleListener {
249
251
ForInStatement ?: RuleFunction < TSESTree . ForInStatement > ;
250
252
ForOfStatement ?: RuleFunction < TSESTree . ForOfStatement > ;
251
253
ForStatement ?: RuleFunction < TSESTree . ForStatement > ;
254
+ FunctionDeclaration ?: RuleFunction < TSESTree . FunctionDeclaration > ;
255
+ FunctionExpression ?: RuleFunction < TSESTree . FunctionExpression > ;
252
256
Identifier ?: RuleFunction < TSESTree . Identifier > ;
253
257
IfStatement ?: RuleFunction < TSESTree . IfStatement > ;
254
258
Import ?: RuleFunction < TSESTree . Import > ;
@@ -295,6 +299,7 @@ interface RuleListener {
295
299
ThrowStatement ?: RuleFunction < TSESTree . ThrowStatement > ;
296
300
Token ?: RuleFunction < TSESTree . Token > ;
297
301
TryStatement ?: RuleFunction < TSESTree . TryStatement > ;
302
+ TSAbstractClassProperty ?: RuleFunction < TSESTree . TSAbstractClassProperty > ;
298
303
TSAbstractKeyword ?: RuleFunction < TSESTree . TSAbstractKeyword > ;
299
304
TSAbstractMethodDefinition ?: RuleFunction <
300
305
TSESTree . TSAbstractMethodDefinition
@@ -308,24 +313,31 @@ interface RuleListener {
308
313
TSCallSignatureDeclaration ?: RuleFunction <
309
314
TSESTree . TSCallSignatureDeclaration
310
315
> ;
316
+ TSClassImplements ?: RuleFunction < TSESTree . TSClassImplements > ;
311
317
TSConditionalType ?: RuleFunction < TSESTree . TSConditionalType > ;
318
+ TSConstructorType ?: RuleFunction < TSESTree . TSConstructorType > ;
312
319
TSConstructSignatureDeclaration ?: RuleFunction <
313
320
TSESTree . TSConstructSignatureDeclaration
314
321
> ;
315
322
TSDeclareKeyword ?: RuleFunction < TSESTree . TSDeclareKeyword > ;
316
323
TSDeclareFunction ?: RuleFunction < TSESTree . TSDeclareFunction > ;
324
+ TSEmptyBodyFunctionExpression ?: RuleFunction <
325
+ TSESTree . TSEmptyBodyFunctionExpression
326
+ > ;
317
327
TSEnumDeclaration ?: RuleFunction < TSESTree . TSEnumDeclaration > ;
318
328
TSEnumMember ?: RuleFunction < TSESTree . TSEnumMember > ;
319
329
TSExportAssignment ?: RuleFunction < TSESTree . TSExportAssignment > ;
320
330
TSExportKeyword ?: RuleFunction < TSESTree . TSExportKeyword > ;
321
331
TSExternalModuleReference ?: RuleFunction < TSESTree . TSExternalModuleReference > ;
332
+ TSFunctionType ?: RuleFunction < TSESTree . TSFunctionType > ;
322
333
TSImportEqualsDeclaration ?: RuleFunction < TSESTree . TSImportEqualsDeclaration > ;
323
334
TSImportType ?: RuleFunction < TSESTree . TSImportType > ;
324
335
TSIndexedAccessType ?: RuleFunction < TSESTree . TSIndexedAccessType > ;
325
336
TSIndexSignature ?: RuleFunction < TSESTree . TSIndexSignature > ;
326
337
TSInferType ?: RuleFunction < TSESTree . TSInferType > ;
327
338
TSInterfaceBody ?: RuleFunction < TSESTree . TSInterfaceBody > ;
328
339
TSInterfaceDeclaration ?: RuleFunction < TSESTree . TSInterfaceDeclaration > ;
340
+ TSInterfaceHeritage ?: RuleFunction < TSESTree . TSInterfaceHeritage > ;
329
341
TSIntersectionType ?: RuleFunction < TSESTree . TSIntersectionType > ;
330
342
TSLiteralType ?: RuleFunction < TSESTree . TSLiteralType > ;
331
343
TSMappedType ?: RuleFunction < TSESTree . TSMappedType > ;
0 commit comments