c-next 0.1.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.
Files changed (72) hide show
  1. package/README.md +726 -0
  2. package/bin/cnext.js +5 -0
  3. package/grammar/C.g4 +1112 -0
  4. package/grammar/CNext.g4 +817 -0
  5. package/grammar/CPP14Lexer.g4 +282 -0
  6. package/grammar/CPP14Parser.g4 +1072 -0
  7. package/package.json +85 -0
  8. package/src/analysis/DivisionByZeroAnalyzer.ts +378 -0
  9. package/src/analysis/FunctionCallAnalyzer.ts +526 -0
  10. package/src/analysis/InitializationAnalyzer.ts +725 -0
  11. package/src/analysis/NullCheckAnalyzer.ts +427 -0
  12. package/src/analysis/types/IDivisionByZeroError.ts +25 -0
  13. package/src/analysis/types/IFunctionCallError.ts +17 -0
  14. package/src/analysis/types/IInitializationError.ts +55 -0
  15. package/src/analysis/types/INullCheckError.ts +25 -0
  16. package/src/codegen/CodeGenerator.ts +7945 -0
  17. package/src/codegen/CommentExtractor.ts +240 -0
  18. package/src/codegen/CommentFormatter.ts +155 -0
  19. package/src/codegen/HeaderGenerator.ts +265 -0
  20. package/src/codegen/TypeResolver.ts +365 -0
  21. package/src/codegen/types/ECommentType.ts +10 -0
  22. package/src/codegen/types/IComment.ts +21 -0
  23. package/src/codegen/types/ICommentError.ts +15 -0
  24. package/src/codegen/types/TOverflowBehavior.ts +6 -0
  25. package/src/codegen/types/TParameterInfo.ts +13 -0
  26. package/src/codegen/types/TTypeConstants.ts +94 -0
  27. package/src/codegen/types/TTypeInfo.ts +22 -0
  28. package/src/index.ts +518 -0
  29. package/src/lib/IncludeDiscovery.ts +131 -0
  30. package/src/lib/InputExpansion.ts +121 -0
  31. package/src/lib/PlatformIODetector.ts +162 -0
  32. package/src/lib/transpiler.ts +439 -0
  33. package/src/lib/types/ITranspileResult.ts +80 -0
  34. package/src/parser/c/grammar/C.interp +338 -0
  35. package/src/parser/c/grammar/C.tokens +229 -0
  36. package/src/parser/c/grammar/CLexer.interp +415 -0
  37. package/src/parser/c/grammar/CLexer.tokens +229 -0
  38. package/src/parser/c/grammar/CLexer.ts +750 -0
  39. package/src/parser/c/grammar/CListener.ts +976 -0
  40. package/src/parser/c/grammar/CParser.ts +9663 -0
  41. package/src/parser/c/grammar/CVisitor.ts +626 -0
  42. package/src/parser/cpp/grammar/CPP14Lexer.interp +478 -0
  43. package/src/parser/cpp/grammar/CPP14Lexer.tokens +264 -0
  44. package/src/parser/cpp/grammar/CPP14Lexer.ts +848 -0
  45. package/src/parser/cpp/grammar/CPP14Parser.interp +492 -0
  46. package/src/parser/cpp/grammar/CPP14Parser.tokens +264 -0
  47. package/src/parser/cpp/grammar/CPP14Parser.ts +19961 -0
  48. package/src/parser/cpp/grammar/CPP14ParserListener.ts +2120 -0
  49. package/src/parser/cpp/grammar/CPP14ParserVisitor.ts +1354 -0
  50. package/src/parser/grammar/CNext.interp +340 -0
  51. package/src/parser/grammar/CNext.tokens +214 -0
  52. package/src/parser/grammar/CNextLexer.interp +374 -0
  53. package/src/parser/grammar/CNextLexer.tokens +214 -0
  54. package/src/parser/grammar/CNextLexer.ts +668 -0
  55. package/src/parser/grammar/CNextListener.ts +1020 -0
  56. package/src/parser/grammar/CNextParser.ts +9239 -0
  57. package/src/parser/grammar/CNextVisitor.ts +654 -0
  58. package/src/preprocessor/Preprocessor.ts +301 -0
  59. package/src/preprocessor/ToolchainDetector.ts +225 -0
  60. package/src/preprocessor/types/IPreprocessResult.ts +39 -0
  61. package/src/preprocessor/types/IToolchain.ts +27 -0
  62. package/src/project/FileDiscovery.ts +236 -0
  63. package/src/project/Project.ts +425 -0
  64. package/src/project/types/IProjectConfig.ts +64 -0
  65. package/src/symbols/CNextSymbolCollector.ts +326 -0
  66. package/src/symbols/CSymbolCollector.ts +457 -0
  67. package/src/symbols/CppSymbolCollector.ts +362 -0
  68. package/src/symbols/SymbolTable.ts +312 -0
  69. package/src/symbols/types/IConflict.ts +20 -0
  70. package/src/types/ESourceLanguage.ts +10 -0
  71. package/src/types/ESymbolKind.ts +20 -0
  72. package/src/types/ISymbol.ts +45 -0
@@ -0,0 +1,2120 @@
1
+ // Generated from grammar/CPP14Parser.g4 by ANTLR 4.13.1
2
+
3
+ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from "antlr4ng";
4
+
5
+
6
+ import { TranslationUnitContext } from "./CPP14Parser.js";
7
+ import { PrimaryExpressionContext } from "./CPP14Parser.js";
8
+ import { IdExpressionContext } from "./CPP14Parser.js";
9
+ import { UnqualifiedIdContext } from "./CPP14Parser.js";
10
+ import { QualifiedIdContext } from "./CPP14Parser.js";
11
+ import { NestedNameSpecifierContext } from "./CPP14Parser.js";
12
+ import { LambdaExpressionContext } from "./CPP14Parser.js";
13
+ import { LambdaIntroducerContext } from "./CPP14Parser.js";
14
+ import { LambdaCaptureContext } from "./CPP14Parser.js";
15
+ import { CaptureDefaultContext } from "./CPP14Parser.js";
16
+ import { CaptureListContext } from "./CPP14Parser.js";
17
+ import { CaptureContext } from "./CPP14Parser.js";
18
+ import { SimpleCaptureContext } from "./CPP14Parser.js";
19
+ import { InitcaptureContext } from "./CPP14Parser.js";
20
+ import { LambdaDeclaratorContext } from "./CPP14Parser.js";
21
+ import { PostfixExpressionContext } from "./CPP14Parser.js";
22
+ import { TypeIdOfTheTypeIdContext } from "./CPP14Parser.js";
23
+ import { ExpressionListContext } from "./CPP14Parser.js";
24
+ import { PseudoDestructorNameContext } from "./CPP14Parser.js";
25
+ import { UnaryExpressionContext } from "./CPP14Parser.js";
26
+ import { UnaryOperatorContext } from "./CPP14Parser.js";
27
+ import { NewExpression_Context } from "./CPP14Parser.js";
28
+ import { NewPlacementContext } from "./CPP14Parser.js";
29
+ import { NewTypeIdContext } from "./CPP14Parser.js";
30
+ import { NewDeclarator_Context } from "./CPP14Parser.js";
31
+ import { NoPointerNewDeclaratorContext } from "./CPP14Parser.js";
32
+ import { NewInitializer_Context } from "./CPP14Parser.js";
33
+ import { DeleteExpressionContext } from "./CPP14Parser.js";
34
+ import { NoExceptExpressionContext } from "./CPP14Parser.js";
35
+ import { CastExpressionContext } from "./CPP14Parser.js";
36
+ import { PointerMemberExpressionContext } from "./CPP14Parser.js";
37
+ import { MultiplicativeExpressionContext } from "./CPP14Parser.js";
38
+ import { AdditiveExpressionContext } from "./CPP14Parser.js";
39
+ import { ShiftExpressionContext } from "./CPP14Parser.js";
40
+ import { ShiftOperatorContext } from "./CPP14Parser.js";
41
+ import { RelationalExpressionContext } from "./CPP14Parser.js";
42
+ import { EqualityExpressionContext } from "./CPP14Parser.js";
43
+ import { AndExpressionContext } from "./CPP14Parser.js";
44
+ import { ExclusiveOrExpressionContext } from "./CPP14Parser.js";
45
+ import { InclusiveOrExpressionContext } from "./CPP14Parser.js";
46
+ import { LogicalAndExpressionContext } from "./CPP14Parser.js";
47
+ import { LogicalOrExpressionContext } from "./CPP14Parser.js";
48
+ import { ConditionalExpressionContext } from "./CPP14Parser.js";
49
+ import { AssignmentExpressionContext } from "./CPP14Parser.js";
50
+ import { AssignmentOperatorContext } from "./CPP14Parser.js";
51
+ import { ExpressionContext } from "./CPP14Parser.js";
52
+ import { ConstantExpressionContext } from "./CPP14Parser.js";
53
+ import { StatementContext } from "./CPP14Parser.js";
54
+ import { LabeledStatementContext } from "./CPP14Parser.js";
55
+ import { ExpressionStatementContext } from "./CPP14Parser.js";
56
+ import { CompoundStatementContext } from "./CPP14Parser.js";
57
+ import { StatementSeqContext } from "./CPP14Parser.js";
58
+ import { SelectionStatementContext } from "./CPP14Parser.js";
59
+ import { ConditionContext } from "./CPP14Parser.js";
60
+ import { IterationStatementContext } from "./CPP14Parser.js";
61
+ import { ForInitStatementContext } from "./CPP14Parser.js";
62
+ import { ForRangeDeclarationContext } from "./CPP14Parser.js";
63
+ import { ForRangeInitializerContext } from "./CPP14Parser.js";
64
+ import { JumpStatementContext } from "./CPP14Parser.js";
65
+ import { DeclarationStatementContext } from "./CPP14Parser.js";
66
+ import { DeclarationseqContext } from "./CPP14Parser.js";
67
+ import { DeclarationContext } from "./CPP14Parser.js";
68
+ import { BlockDeclarationContext } from "./CPP14Parser.js";
69
+ import { AliasDeclarationContext } from "./CPP14Parser.js";
70
+ import { SimpleDeclarationContext } from "./CPP14Parser.js";
71
+ import { StaticAssertDeclarationContext } from "./CPP14Parser.js";
72
+ import { EmptyDeclaration_Context } from "./CPP14Parser.js";
73
+ import { AttributeDeclarationContext } from "./CPP14Parser.js";
74
+ import { DeclSpecifierContext } from "./CPP14Parser.js";
75
+ import { DeclSpecifierSeqContext } from "./CPP14Parser.js";
76
+ import { StorageClassSpecifierContext } from "./CPP14Parser.js";
77
+ import { FunctionSpecifierContext } from "./CPP14Parser.js";
78
+ import { TypedefNameContext } from "./CPP14Parser.js";
79
+ import { TypeSpecifierContext } from "./CPP14Parser.js";
80
+ import { TrailingTypeSpecifierContext } from "./CPP14Parser.js";
81
+ import { TypeSpecifierSeqContext } from "./CPP14Parser.js";
82
+ import { TrailingTypeSpecifierSeqContext } from "./CPP14Parser.js";
83
+ import { SimpleTypeLengthModifierContext } from "./CPP14Parser.js";
84
+ import { SimpleTypeSignednessModifierContext } from "./CPP14Parser.js";
85
+ import { SimpleTypeSpecifierContext } from "./CPP14Parser.js";
86
+ import { TheTypeNameContext } from "./CPP14Parser.js";
87
+ import { DecltypeSpecifierContext } from "./CPP14Parser.js";
88
+ import { ElaboratedTypeSpecifierContext } from "./CPP14Parser.js";
89
+ import { EnumNameContext } from "./CPP14Parser.js";
90
+ import { EnumSpecifierContext } from "./CPP14Parser.js";
91
+ import { EnumHeadContext } from "./CPP14Parser.js";
92
+ import { OpaqueEnumDeclarationContext } from "./CPP14Parser.js";
93
+ import { EnumkeyContext } from "./CPP14Parser.js";
94
+ import { EnumbaseContext } from "./CPP14Parser.js";
95
+ import { EnumeratorListContext } from "./CPP14Parser.js";
96
+ import { EnumeratorDefinitionContext } from "./CPP14Parser.js";
97
+ import { EnumeratorContext } from "./CPP14Parser.js";
98
+ import { NamespaceNameContext } from "./CPP14Parser.js";
99
+ import { OriginalNamespaceNameContext } from "./CPP14Parser.js";
100
+ import { NamespaceDefinitionContext } from "./CPP14Parser.js";
101
+ import { NamespaceAliasContext } from "./CPP14Parser.js";
102
+ import { NamespaceAliasDefinitionContext } from "./CPP14Parser.js";
103
+ import { QualifiednamespacespecifierContext } from "./CPP14Parser.js";
104
+ import { UsingDeclarationContext } from "./CPP14Parser.js";
105
+ import { UsingDirectiveContext } from "./CPP14Parser.js";
106
+ import { AsmDefinitionContext } from "./CPP14Parser.js";
107
+ import { LinkageSpecificationContext } from "./CPP14Parser.js";
108
+ import { AttributeSpecifierSeqContext } from "./CPP14Parser.js";
109
+ import { AttributeSpecifierContext } from "./CPP14Parser.js";
110
+ import { AlignmentspecifierContext } from "./CPP14Parser.js";
111
+ import { AttributeListContext } from "./CPP14Parser.js";
112
+ import { AttributeContext } from "./CPP14Parser.js";
113
+ import { AttributeNamespaceContext } from "./CPP14Parser.js";
114
+ import { AttributeArgumentClauseContext } from "./CPP14Parser.js";
115
+ import { BalancedTokenSeqContext } from "./CPP14Parser.js";
116
+ import { BalancedtokenContext } from "./CPP14Parser.js";
117
+ import { InitDeclaratorListContext } from "./CPP14Parser.js";
118
+ import { InitDeclaratorContext } from "./CPP14Parser.js";
119
+ import { DeclaratorContext } from "./CPP14Parser.js";
120
+ import { PointerDeclaratorContext } from "./CPP14Parser.js";
121
+ import { NoPointerDeclaratorContext } from "./CPP14Parser.js";
122
+ import { ParametersAndQualifiersContext } from "./CPP14Parser.js";
123
+ import { TrailingReturnTypeContext } from "./CPP14Parser.js";
124
+ import { PointerOperatorContext } from "./CPP14Parser.js";
125
+ import { CvqualifierseqContext } from "./CPP14Parser.js";
126
+ import { CvQualifierContext } from "./CPP14Parser.js";
127
+ import { RefqualifierContext } from "./CPP14Parser.js";
128
+ import { DeclaratoridContext } from "./CPP14Parser.js";
129
+ import { TheTypeIdContext } from "./CPP14Parser.js";
130
+ import { AbstractDeclaratorContext } from "./CPP14Parser.js";
131
+ import { PointerAbstractDeclaratorContext } from "./CPP14Parser.js";
132
+ import { NoPointerAbstractDeclaratorContext } from "./CPP14Parser.js";
133
+ import { AbstractPackDeclaratorContext } from "./CPP14Parser.js";
134
+ import { NoPointerAbstractPackDeclaratorContext } from "./CPP14Parser.js";
135
+ import { ParameterDeclarationClauseContext } from "./CPP14Parser.js";
136
+ import { ParameterDeclarationListContext } from "./CPP14Parser.js";
137
+ import { ParameterDeclarationContext } from "./CPP14Parser.js";
138
+ import { FunctionDefinitionContext } from "./CPP14Parser.js";
139
+ import { FunctionBodyContext } from "./CPP14Parser.js";
140
+ import { InitializerContext } from "./CPP14Parser.js";
141
+ import { BraceOrEqualInitializerContext } from "./CPP14Parser.js";
142
+ import { InitializerClauseContext } from "./CPP14Parser.js";
143
+ import { InitializerListContext } from "./CPP14Parser.js";
144
+ import { BracedInitListContext } from "./CPP14Parser.js";
145
+ import { ClassNameContext } from "./CPP14Parser.js";
146
+ import { ClassSpecifierContext } from "./CPP14Parser.js";
147
+ import { ClassHeadContext } from "./CPP14Parser.js";
148
+ import { ClassHeadNameContext } from "./CPP14Parser.js";
149
+ import { ClassVirtSpecifierContext } from "./CPP14Parser.js";
150
+ import { ClassKeyContext } from "./CPP14Parser.js";
151
+ import { MemberSpecificationContext } from "./CPP14Parser.js";
152
+ import { MemberdeclarationContext } from "./CPP14Parser.js";
153
+ import { MemberDeclaratorListContext } from "./CPP14Parser.js";
154
+ import { MemberDeclaratorContext } from "./CPP14Parser.js";
155
+ import { VirtualSpecifierSeqContext } from "./CPP14Parser.js";
156
+ import { VirtualSpecifierContext } from "./CPP14Parser.js";
157
+ import { PureSpecifierContext } from "./CPP14Parser.js";
158
+ import { BaseClauseContext } from "./CPP14Parser.js";
159
+ import { BaseSpecifierListContext } from "./CPP14Parser.js";
160
+ import { BaseSpecifierContext } from "./CPP14Parser.js";
161
+ import { ClassOrDeclTypeContext } from "./CPP14Parser.js";
162
+ import { BaseTypeSpecifierContext } from "./CPP14Parser.js";
163
+ import { AccessSpecifierContext } from "./CPP14Parser.js";
164
+ import { ConversionFunctionIdContext } from "./CPP14Parser.js";
165
+ import { ConversionTypeIdContext } from "./CPP14Parser.js";
166
+ import { ConversionDeclaratorContext } from "./CPP14Parser.js";
167
+ import { ConstructorInitializerContext } from "./CPP14Parser.js";
168
+ import { MemInitializerListContext } from "./CPP14Parser.js";
169
+ import { MemInitializerContext } from "./CPP14Parser.js";
170
+ import { MeminitializeridContext } from "./CPP14Parser.js";
171
+ import { OperatorFunctionIdContext } from "./CPP14Parser.js";
172
+ import { LiteralOperatorIdContext } from "./CPP14Parser.js";
173
+ import { TemplateDeclarationContext } from "./CPP14Parser.js";
174
+ import { TemplateparameterListContext } from "./CPP14Parser.js";
175
+ import { TemplateParameterContext } from "./CPP14Parser.js";
176
+ import { TypeParameterContext } from "./CPP14Parser.js";
177
+ import { SimpleTemplateIdContext } from "./CPP14Parser.js";
178
+ import { TemplateIdContext } from "./CPP14Parser.js";
179
+ import { TemplateNameContext } from "./CPP14Parser.js";
180
+ import { TemplateArgumentListContext } from "./CPP14Parser.js";
181
+ import { TemplateArgumentContext } from "./CPP14Parser.js";
182
+ import { TypeNameSpecifierContext } from "./CPP14Parser.js";
183
+ import { ExplicitInstantiationContext } from "./CPP14Parser.js";
184
+ import { ExplicitSpecializationContext } from "./CPP14Parser.js";
185
+ import { TryBlockContext } from "./CPP14Parser.js";
186
+ import { FunctionTryBlockContext } from "./CPP14Parser.js";
187
+ import { HandlerSeqContext } from "./CPP14Parser.js";
188
+ import { HandlerContext } from "./CPP14Parser.js";
189
+ import { ExceptionDeclarationContext } from "./CPP14Parser.js";
190
+ import { ThrowExpressionContext } from "./CPP14Parser.js";
191
+ import { ExceptionSpecificationContext } from "./CPP14Parser.js";
192
+ import { DynamicExceptionSpecificationContext } from "./CPP14Parser.js";
193
+ import { TypeIdListContext } from "./CPP14Parser.js";
194
+ import { NoeExceptSpecificationContext } from "./CPP14Parser.js";
195
+ import { TheOperatorContext } from "./CPP14Parser.js";
196
+ import { LiteralContext } from "./CPP14Parser.js";
197
+
198
+
199
+ /**
200
+ * This interface defines a complete listener for a parse tree produced by
201
+ * `CPP14Parser`.
202
+ */
203
+ export class CPP14ParserListener implements ParseTreeListener {
204
+ /**
205
+ * Enter a parse tree produced by `CPP14Parser.translationUnit`.
206
+ * @param ctx the parse tree
207
+ */
208
+ enterTranslationUnit?: (ctx: TranslationUnitContext) => void;
209
+ /**
210
+ * Exit a parse tree produced by `CPP14Parser.translationUnit`.
211
+ * @param ctx the parse tree
212
+ */
213
+ exitTranslationUnit?: (ctx: TranslationUnitContext) => void;
214
+ /**
215
+ * Enter a parse tree produced by `CPP14Parser.primaryExpression`.
216
+ * @param ctx the parse tree
217
+ */
218
+ enterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;
219
+ /**
220
+ * Exit a parse tree produced by `CPP14Parser.primaryExpression`.
221
+ * @param ctx the parse tree
222
+ */
223
+ exitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;
224
+ /**
225
+ * Enter a parse tree produced by `CPP14Parser.idExpression`.
226
+ * @param ctx the parse tree
227
+ */
228
+ enterIdExpression?: (ctx: IdExpressionContext) => void;
229
+ /**
230
+ * Exit a parse tree produced by `CPP14Parser.idExpression`.
231
+ * @param ctx the parse tree
232
+ */
233
+ exitIdExpression?: (ctx: IdExpressionContext) => void;
234
+ /**
235
+ * Enter a parse tree produced by `CPP14Parser.unqualifiedId`.
236
+ * @param ctx the parse tree
237
+ */
238
+ enterUnqualifiedId?: (ctx: UnqualifiedIdContext) => void;
239
+ /**
240
+ * Exit a parse tree produced by `CPP14Parser.unqualifiedId`.
241
+ * @param ctx the parse tree
242
+ */
243
+ exitUnqualifiedId?: (ctx: UnqualifiedIdContext) => void;
244
+ /**
245
+ * Enter a parse tree produced by `CPP14Parser.qualifiedId`.
246
+ * @param ctx the parse tree
247
+ */
248
+ enterQualifiedId?: (ctx: QualifiedIdContext) => void;
249
+ /**
250
+ * Exit a parse tree produced by `CPP14Parser.qualifiedId`.
251
+ * @param ctx the parse tree
252
+ */
253
+ exitQualifiedId?: (ctx: QualifiedIdContext) => void;
254
+ /**
255
+ * Enter a parse tree produced by `CPP14Parser.nestedNameSpecifier`.
256
+ * @param ctx the parse tree
257
+ */
258
+ enterNestedNameSpecifier?: (ctx: NestedNameSpecifierContext) => void;
259
+ /**
260
+ * Exit a parse tree produced by `CPP14Parser.nestedNameSpecifier`.
261
+ * @param ctx the parse tree
262
+ */
263
+ exitNestedNameSpecifier?: (ctx: NestedNameSpecifierContext) => void;
264
+ /**
265
+ * Enter a parse tree produced by `CPP14Parser.lambdaExpression`.
266
+ * @param ctx the parse tree
267
+ */
268
+ enterLambdaExpression?: (ctx: LambdaExpressionContext) => void;
269
+ /**
270
+ * Exit a parse tree produced by `CPP14Parser.lambdaExpression`.
271
+ * @param ctx the parse tree
272
+ */
273
+ exitLambdaExpression?: (ctx: LambdaExpressionContext) => void;
274
+ /**
275
+ * Enter a parse tree produced by `CPP14Parser.lambdaIntroducer`.
276
+ * @param ctx the parse tree
277
+ */
278
+ enterLambdaIntroducer?: (ctx: LambdaIntroducerContext) => void;
279
+ /**
280
+ * Exit a parse tree produced by `CPP14Parser.lambdaIntroducer`.
281
+ * @param ctx the parse tree
282
+ */
283
+ exitLambdaIntroducer?: (ctx: LambdaIntroducerContext) => void;
284
+ /**
285
+ * Enter a parse tree produced by `CPP14Parser.lambdaCapture`.
286
+ * @param ctx the parse tree
287
+ */
288
+ enterLambdaCapture?: (ctx: LambdaCaptureContext) => void;
289
+ /**
290
+ * Exit a parse tree produced by `CPP14Parser.lambdaCapture`.
291
+ * @param ctx the parse tree
292
+ */
293
+ exitLambdaCapture?: (ctx: LambdaCaptureContext) => void;
294
+ /**
295
+ * Enter a parse tree produced by `CPP14Parser.captureDefault`.
296
+ * @param ctx the parse tree
297
+ */
298
+ enterCaptureDefault?: (ctx: CaptureDefaultContext) => void;
299
+ /**
300
+ * Exit a parse tree produced by `CPP14Parser.captureDefault`.
301
+ * @param ctx the parse tree
302
+ */
303
+ exitCaptureDefault?: (ctx: CaptureDefaultContext) => void;
304
+ /**
305
+ * Enter a parse tree produced by `CPP14Parser.captureList`.
306
+ * @param ctx the parse tree
307
+ */
308
+ enterCaptureList?: (ctx: CaptureListContext) => void;
309
+ /**
310
+ * Exit a parse tree produced by `CPP14Parser.captureList`.
311
+ * @param ctx the parse tree
312
+ */
313
+ exitCaptureList?: (ctx: CaptureListContext) => void;
314
+ /**
315
+ * Enter a parse tree produced by `CPP14Parser.capture`.
316
+ * @param ctx the parse tree
317
+ */
318
+ enterCapture?: (ctx: CaptureContext) => void;
319
+ /**
320
+ * Exit a parse tree produced by `CPP14Parser.capture`.
321
+ * @param ctx the parse tree
322
+ */
323
+ exitCapture?: (ctx: CaptureContext) => void;
324
+ /**
325
+ * Enter a parse tree produced by `CPP14Parser.simpleCapture`.
326
+ * @param ctx the parse tree
327
+ */
328
+ enterSimpleCapture?: (ctx: SimpleCaptureContext) => void;
329
+ /**
330
+ * Exit a parse tree produced by `CPP14Parser.simpleCapture`.
331
+ * @param ctx the parse tree
332
+ */
333
+ exitSimpleCapture?: (ctx: SimpleCaptureContext) => void;
334
+ /**
335
+ * Enter a parse tree produced by `CPP14Parser.initcapture`.
336
+ * @param ctx the parse tree
337
+ */
338
+ enterInitcapture?: (ctx: InitcaptureContext) => void;
339
+ /**
340
+ * Exit a parse tree produced by `CPP14Parser.initcapture`.
341
+ * @param ctx the parse tree
342
+ */
343
+ exitInitcapture?: (ctx: InitcaptureContext) => void;
344
+ /**
345
+ * Enter a parse tree produced by `CPP14Parser.lambdaDeclarator`.
346
+ * @param ctx the parse tree
347
+ */
348
+ enterLambdaDeclarator?: (ctx: LambdaDeclaratorContext) => void;
349
+ /**
350
+ * Exit a parse tree produced by `CPP14Parser.lambdaDeclarator`.
351
+ * @param ctx the parse tree
352
+ */
353
+ exitLambdaDeclarator?: (ctx: LambdaDeclaratorContext) => void;
354
+ /**
355
+ * Enter a parse tree produced by `CPP14Parser.postfixExpression`.
356
+ * @param ctx the parse tree
357
+ */
358
+ enterPostfixExpression?: (ctx: PostfixExpressionContext) => void;
359
+ /**
360
+ * Exit a parse tree produced by `CPP14Parser.postfixExpression`.
361
+ * @param ctx the parse tree
362
+ */
363
+ exitPostfixExpression?: (ctx: PostfixExpressionContext) => void;
364
+ /**
365
+ * Enter a parse tree produced by `CPP14Parser.typeIdOfTheTypeId`.
366
+ * @param ctx the parse tree
367
+ */
368
+ enterTypeIdOfTheTypeId?: (ctx: TypeIdOfTheTypeIdContext) => void;
369
+ /**
370
+ * Exit a parse tree produced by `CPP14Parser.typeIdOfTheTypeId`.
371
+ * @param ctx the parse tree
372
+ */
373
+ exitTypeIdOfTheTypeId?: (ctx: TypeIdOfTheTypeIdContext) => void;
374
+ /**
375
+ * Enter a parse tree produced by `CPP14Parser.expressionList`.
376
+ * @param ctx the parse tree
377
+ */
378
+ enterExpressionList?: (ctx: ExpressionListContext) => void;
379
+ /**
380
+ * Exit a parse tree produced by `CPP14Parser.expressionList`.
381
+ * @param ctx the parse tree
382
+ */
383
+ exitExpressionList?: (ctx: ExpressionListContext) => void;
384
+ /**
385
+ * Enter a parse tree produced by `CPP14Parser.pseudoDestructorName`.
386
+ * @param ctx the parse tree
387
+ */
388
+ enterPseudoDestructorName?: (ctx: PseudoDestructorNameContext) => void;
389
+ /**
390
+ * Exit a parse tree produced by `CPP14Parser.pseudoDestructorName`.
391
+ * @param ctx the parse tree
392
+ */
393
+ exitPseudoDestructorName?: (ctx: PseudoDestructorNameContext) => void;
394
+ /**
395
+ * Enter a parse tree produced by `CPP14Parser.unaryExpression`.
396
+ * @param ctx the parse tree
397
+ */
398
+ enterUnaryExpression?: (ctx: UnaryExpressionContext) => void;
399
+ /**
400
+ * Exit a parse tree produced by `CPP14Parser.unaryExpression`.
401
+ * @param ctx the parse tree
402
+ */
403
+ exitUnaryExpression?: (ctx: UnaryExpressionContext) => void;
404
+ /**
405
+ * Enter a parse tree produced by `CPP14Parser.unaryOperator`.
406
+ * @param ctx the parse tree
407
+ */
408
+ enterUnaryOperator?: (ctx: UnaryOperatorContext) => void;
409
+ /**
410
+ * Exit a parse tree produced by `CPP14Parser.unaryOperator`.
411
+ * @param ctx the parse tree
412
+ */
413
+ exitUnaryOperator?: (ctx: UnaryOperatorContext) => void;
414
+ /**
415
+ * Enter a parse tree produced by `CPP14Parser.newExpression_`.
416
+ * @param ctx the parse tree
417
+ */
418
+ enterNewExpression_?: (ctx: NewExpression_Context) => void;
419
+ /**
420
+ * Exit a parse tree produced by `CPP14Parser.newExpression_`.
421
+ * @param ctx the parse tree
422
+ */
423
+ exitNewExpression_?: (ctx: NewExpression_Context) => void;
424
+ /**
425
+ * Enter a parse tree produced by `CPP14Parser.newPlacement`.
426
+ * @param ctx the parse tree
427
+ */
428
+ enterNewPlacement?: (ctx: NewPlacementContext) => void;
429
+ /**
430
+ * Exit a parse tree produced by `CPP14Parser.newPlacement`.
431
+ * @param ctx the parse tree
432
+ */
433
+ exitNewPlacement?: (ctx: NewPlacementContext) => void;
434
+ /**
435
+ * Enter a parse tree produced by `CPP14Parser.newTypeId`.
436
+ * @param ctx the parse tree
437
+ */
438
+ enterNewTypeId?: (ctx: NewTypeIdContext) => void;
439
+ /**
440
+ * Exit a parse tree produced by `CPP14Parser.newTypeId`.
441
+ * @param ctx the parse tree
442
+ */
443
+ exitNewTypeId?: (ctx: NewTypeIdContext) => void;
444
+ /**
445
+ * Enter a parse tree produced by `CPP14Parser.newDeclarator_`.
446
+ * @param ctx the parse tree
447
+ */
448
+ enterNewDeclarator_?: (ctx: NewDeclarator_Context) => void;
449
+ /**
450
+ * Exit a parse tree produced by `CPP14Parser.newDeclarator_`.
451
+ * @param ctx the parse tree
452
+ */
453
+ exitNewDeclarator_?: (ctx: NewDeclarator_Context) => void;
454
+ /**
455
+ * Enter a parse tree produced by `CPP14Parser.noPointerNewDeclarator`.
456
+ * @param ctx the parse tree
457
+ */
458
+ enterNoPointerNewDeclarator?: (ctx: NoPointerNewDeclaratorContext) => void;
459
+ /**
460
+ * Exit a parse tree produced by `CPP14Parser.noPointerNewDeclarator`.
461
+ * @param ctx the parse tree
462
+ */
463
+ exitNoPointerNewDeclarator?: (ctx: NoPointerNewDeclaratorContext) => void;
464
+ /**
465
+ * Enter a parse tree produced by `CPP14Parser.newInitializer_`.
466
+ * @param ctx the parse tree
467
+ */
468
+ enterNewInitializer_?: (ctx: NewInitializer_Context) => void;
469
+ /**
470
+ * Exit a parse tree produced by `CPP14Parser.newInitializer_`.
471
+ * @param ctx the parse tree
472
+ */
473
+ exitNewInitializer_?: (ctx: NewInitializer_Context) => void;
474
+ /**
475
+ * Enter a parse tree produced by `CPP14Parser.deleteExpression`.
476
+ * @param ctx the parse tree
477
+ */
478
+ enterDeleteExpression?: (ctx: DeleteExpressionContext) => void;
479
+ /**
480
+ * Exit a parse tree produced by `CPP14Parser.deleteExpression`.
481
+ * @param ctx the parse tree
482
+ */
483
+ exitDeleteExpression?: (ctx: DeleteExpressionContext) => void;
484
+ /**
485
+ * Enter a parse tree produced by `CPP14Parser.noExceptExpression`.
486
+ * @param ctx the parse tree
487
+ */
488
+ enterNoExceptExpression?: (ctx: NoExceptExpressionContext) => void;
489
+ /**
490
+ * Exit a parse tree produced by `CPP14Parser.noExceptExpression`.
491
+ * @param ctx the parse tree
492
+ */
493
+ exitNoExceptExpression?: (ctx: NoExceptExpressionContext) => void;
494
+ /**
495
+ * Enter a parse tree produced by `CPP14Parser.castExpression`.
496
+ * @param ctx the parse tree
497
+ */
498
+ enterCastExpression?: (ctx: CastExpressionContext) => void;
499
+ /**
500
+ * Exit a parse tree produced by `CPP14Parser.castExpression`.
501
+ * @param ctx the parse tree
502
+ */
503
+ exitCastExpression?: (ctx: CastExpressionContext) => void;
504
+ /**
505
+ * Enter a parse tree produced by `CPP14Parser.pointerMemberExpression`.
506
+ * @param ctx the parse tree
507
+ */
508
+ enterPointerMemberExpression?: (ctx: PointerMemberExpressionContext) => void;
509
+ /**
510
+ * Exit a parse tree produced by `CPP14Parser.pointerMemberExpression`.
511
+ * @param ctx the parse tree
512
+ */
513
+ exitPointerMemberExpression?: (ctx: PointerMemberExpressionContext) => void;
514
+ /**
515
+ * Enter a parse tree produced by `CPP14Parser.multiplicativeExpression`.
516
+ * @param ctx the parse tree
517
+ */
518
+ enterMultiplicativeExpression?: (ctx: MultiplicativeExpressionContext) => void;
519
+ /**
520
+ * Exit a parse tree produced by `CPP14Parser.multiplicativeExpression`.
521
+ * @param ctx the parse tree
522
+ */
523
+ exitMultiplicativeExpression?: (ctx: MultiplicativeExpressionContext) => void;
524
+ /**
525
+ * Enter a parse tree produced by `CPP14Parser.additiveExpression`.
526
+ * @param ctx the parse tree
527
+ */
528
+ enterAdditiveExpression?: (ctx: AdditiveExpressionContext) => void;
529
+ /**
530
+ * Exit a parse tree produced by `CPP14Parser.additiveExpression`.
531
+ * @param ctx the parse tree
532
+ */
533
+ exitAdditiveExpression?: (ctx: AdditiveExpressionContext) => void;
534
+ /**
535
+ * Enter a parse tree produced by `CPP14Parser.shiftExpression`.
536
+ * @param ctx the parse tree
537
+ */
538
+ enterShiftExpression?: (ctx: ShiftExpressionContext) => void;
539
+ /**
540
+ * Exit a parse tree produced by `CPP14Parser.shiftExpression`.
541
+ * @param ctx the parse tree
542
+ */
543
+ exitShiftExpression?: (ctx: ShiftExpressionContext) => void;
544
+ /**
545
+ * Enter a parse tree produced by `CPP14Parser.shiftOperator`.
546
+ * @param ctx the parse tree
547
+ */
548
+ enterShiftOperator?: (ctx: ShiftOperatorContext) => void;
549
+ /**
550
+ * Exit a parse tree produced by `CPP14Parser.shiftOperator`.
551
+ * @param ctx the parse tree
552
+ */
553
+ exitShiftOperator?: (ctx: ShiftOperatorContext) => void;
554
+ /**
555
+ * Enter a parse tree produced by `CPP14Parser.relationalExpression`.
556
+ * @param ctx the parse tree
557
+ */
558
+ enterRelationalExpression?: (ctx: RelationalExpressionContext) => void;
559
+ /**
560
+ * Exit a parse tree produced by `CPP14Parser.relationalExpression`.
561
+ * @param ctx the parse tree
562
+ */
563
+ exitRelationalExpression?: (ctx: RelationalExpressionContext) => void;
564
+ /**
565
+ * Enter a parse tree produced by `CPP14Parser.equalityExpression`.
566
+ * @param ctx the parse tree
567
+ */
568
+ enterEqualityExpression?: (ctx: EqualityExpressionContext) => void;
569
+ /**
570
+ * Exit a parse tree produced by `CPP14Parser.equalityExpression`.
571
+ * @param ctx the parse tree
572
+ */
573
+ exitEqualityExpression?: (ctx: EqualityExpressionContext) => void;
574
+ /**
575
+ * Enter a parse tree produced by `CPP14Parser.andExpression`.
576
+ * @param ctx the parse tree
577
+ */
578
+ enterAndExpression?: (ctx: AndExpressionContext) => void;
579
+ /**
580
+ * Exit a parse tree produced by `CPP14Parser.andExpression`.
581
+ * @param ctx the parse tree
582
+ */
583
+ exitAndExpression?: (ctx: AndExpressionContext) => void;
584
+ /**
585
+ * Enter a parse tree produced by `CPP14Parser.exclusiveOrExpression`.
586
+ * @param ctx the parse tree
587
+ */
588
+ enterExclusiveOrExpression?: (ctx: ExclusiveOrExpressionContext) => void;
589
+ /**
590
+ * Exit a parse tree produced by `CPP14Parser.exclusiveOrExpression`.
591
+ * @param ctx the parse tree
592
+ */
593
+ exitExclusiveOrExpression?: (ctx: ExclusiveOrExpressionContext) => void;
594
+ /**
595
+ * Enter a parse tree produced by `CPP14Parser.inclusiveOrExpression`.
596
+ * @param ctx the parse tree
597
+ */
598
+ enterInclusiveOrExpression?: (ctx: InclusiveOrExpressionContext) => void;
599
+ /**
600
+ * Exit a parse tree produced by `CPP14Parser.inclusiveOrExpression`.
601
+ * @param ctx the parse tree
602
+ */
603
+ exitInclusiveOrExpression?: (ctx: InclusiveOrExpressionContext) => void;
604
+ /**
605
+ * Enter a parse tree produced by `CPP14Parser.logicalAndExpression`.
606
+ * @param ctx the parse tree
607
+ */
608
+ enterLogicalAndExpression?: (ctx: LogicalAndExpressionContext) => void;
609
+ /**
610
+ * Exit a parse tree produced by `CPP14Parser.logicalAndExpression`.
611
+ * @param ctx the parse tree
612
+ */
613
+ exitLogicalAndExpression?: (ctx: LogicalAndExpressionContext) => void;
614
+ /**
615
+ * Enter a parse tree produced by `CPP14Parser.logicalOrExpression`.
616
+ * @param ctx the parse tree
617
+ */
618
+ enterLogicalOrExpression?: (ctx: LogicalOrExpressionContext) => void;
619
+ /**
620
+ * Exit a parse tree produced by `CPP14Parser.logicalOrExpression`.
621
+ * @param ctx the parse tree
622
+ */
623
+ exitLogicalOrExpression?: (ctx: LogicalOrExpressionContext) => void;
624
+ /**
625
+ * Enter a parse tree produced by `CPP14Parser.conditionalExpression`.
626
+ * @param ctx the parse tree
627
+ */
628
+ enterConditionalExpression?: (ctx: ConditionalExpressionContext) => void;
629
+ /**
630
+ * Exit a parse tree produced by `CPP14Parser.conditionalExpression`.
631
+ * @param ctx the parse tree
632
+ */
633
+ exitConditionalExpression?: (ctx: ConditionalExpressionContext) => void;
634
+ /**
635
+ * Enter a parse tree produced by `CPP14Parser.assignmentExpression`.
636
+ * @param ctx the parse tree
637
+ */
638
+ enterAssignmentExpression?: (ctx: AssignmentExpressionContext) => void;
639
+ /**
640
+ * Exit a parse tree produced by `CPP14Parser.assignmentExpression`.
641
+ * @param ctx the parse tree
642
+ */
643
+ exitAssignmentExpression?: (ctx: AssignmentExpressionContext) => void;
644
+ /**
645
+ * Enter a parse tree produced by `CPP14Parser.assignmentOperator`.
646
+ * @param ctx the parse tree
647
+ */
648
+ enterAssignmentOperator?: (ctx: AssignmentOperatorContext) => void;
649
+ /**
650
+ * Exit a parse tree produced by `CPP14Parser.assignmentOperator`.
651
+ * @param ctx the parse tree
652
+ */
653
+ exitAssignmentOperator?: (ctx: AssignmentOperatorContext) => void;
654
+ /**
655
+ * Enter a parse tree produced by `CPP14Parser.expression`.
656
+ * @param ctx the parse tree
657
+ */
658
+ enterExpression?: (ctx: ExpressionContext) => void;
659
+ /**
660
+ * Exit a parse tree produced by `CPP14Parser.expression`.
661
+ * @param ctx the parse tree
662
+ */
663
+ exitExpression?: (ctx: ExpressionContext) => void;
664
+ /**
665
+ * Enter a parse tree produced by `CPP14Parser.constantExpression`.
666
+ * @param ctx the parse tree
667
+ */
668
+ enterConstantExpression?: (ctx: ConstantExpressionContext) => void;
669
+ /**
670
+ * Exit a parse tree produced by `CPP14Parser.constantExpression`.
671
+ * @param ctx the parse tree
672
+ */
673
+ exitConstantExpression?: (ctx: ConstantExpressionContext) => void;
674
+ /**
675
+ * Enter a parse tree produced by `CPP14Parser.statement`.
676
+ * @param ctx the parse tree
677
+ */
678
+ enterStatement?: (ctx: StatementContext) => void;
679
+ /**
680
+ * Exit a parse tree produced by `CPP14Parser.statement`.
681
+ * @param ctx the parse tree
682
+ */
683
+ exitStatement?: (ctx: StatementContext) => void;
684
+ /**
685
+ * Enter a parse tree produced by `CPP14Parser.labeledStatement`.
686
+ * @param ctx the parse tree
687
+ */
688
+ enterLabeledStatement?: (ctx: LabeledStatementContext) => void;
689
+ /**
690
+ * Exit a parse tree produced by `CPP14Parser.labeledStatement`.
691
+ * @param ctx the parse tree
692
+ */
693
+ exitLabeledStatement?: (ctx: LabeledStatementContext) => void;
694
+ /**
695
+ * Enter a parse tree produced by `CPP14Parser.expressionStatement`.
696
+ * @param ctx the parse tree
697
+ */
698
+ enterExpressionStatement?: (ctx: ExpressionStatementContext) => void;
699
+ /**
700
+ * Exit a parse tree produced by `CPP14Parser.expressionStatement`.
701
+ * @param ctx the parse tree
702
+ */
703
+ exitExpressionStatement?: (ctx: ExpressionStatementContext) => void;
704
+ /**
705
+ * Enter a parse tree produced by `CPP14Parser.compoundStatement`.
706
+ * @param ctx the parse tree
707
+ */
708
+ enterCompoundStatement?: (ctx: CompoundStatementContext) => void;
709
+ /**
710
+ * Exit a parse tree produced by `CPP14Parser.compoundStatement`.
711
+ * @param ctx the parse tree
712
+ */
713
+ exitCompoundStatement?: (ctx: CompoundStatementContext) => void;
714
+ /**
715
+ * Enter a parse tree produced by `CPP14Parser.statementSeq`.
716
+ * @param ctx the parse tree
717
+ */
718
+ enterStatementSeq?: (ctx: StatementSeqContext) => void;
719
+ /**
720
+ * Exit a parse tree produced by `CPP14Parser.statementSeq`.
721
+ * @param ctx the parse tree
722
+ */
723
+ exitStatementSeq?: (ctx: StatementSeqContext) => void;
724
+ /**
725
+ * Enter a parse tree produced by `CPP14Parser.selectionStatement`.
726
+ * @param ctx the parse tree
727
+ */
728
+ enterSelectionStatement?: (ctx: SelectionStatementContext) => void;
729
+ /**
730
+ * Exit a parse tree produced by `CPP14Parser.selectionStatement`.
731
+ * @param ctx the parse tree
732
+ */
733
+ exitSelectionStatement?: (ctx: SelectionStatementContext) => void;
734
+ /**
735
+ * Enter a parse tree produced by `CPP14Parser.condition`.
736
+ * @param ctx the parse tree
737
+ */
738
+ enterCondition?: (ctx: ConditionContext) => void;
739
+ /**
740
+ * Exit a parse tree produced by `CPP14Parser.condition`.
741
+ * @param ctx the parse tree
742
+ */
743
+ exitCondition?: (ctx: ConditionContext) => void;
744
+ /**
745
+ * Enter a parse tree produced by `CPP14Parser.iterationStatement`.
746
+ * @param ctx the parse tree
747
+ */
748
+ enterIterationStatement?: (ctx: IterationStatementContext) => void;
749
+ /**
750
+ * Exit a parse tree produced by `CPP14Parser.iterationStatement`.
751
+ * @param ctx the parse tree
752
+ */
753
+ exitIterationStatement?: (ctx: IterationStatementContext) => void;
754
+ /**
755
+ * Enter a parse tree produced by `CPP14Parser.forInitStatement`.
756
+ * @param ctx the parse tree
757
+ */
758
+ enterForInitStatement?: (ctx: ForInitStatementContext) => void;
759
+ /**
760
+ * Exit a parse tree produced by `CPP14Parser.forInitStatement`.
761
+ * @param ctx the parse tree
762
+ */
763
+ exitForInitStatement?: (ctx: ForInitStatementContext) => void;
764
+ /**
765
+ * Enter a parse tree produced by `CPP14Parser.forRangeDeclaration`.
766
+ * @param ctx the parse tree
767
+ */
768
+ enterForRangeDeclaration?: (ctx: ForRangeDeclarationContext) => void;
769
+ /**
770
+ * Exit a parse tree produced by `CPP14Parser.forRangeDeclaration`.
771
+ * @param ctx the parse tree
772
+ */
773
+ exitForRangeDeclaration?: (ctx: ForRangeDeclarationContext) => void;
774
+ /**
775
+ * Enter a parse tree produced by `CPP14Parser.forRangeInitializer`.
776
+ * @param ctx the parse tree
777
+ */
778
+ enterForRangeInitializer?: (ctx: ForRangeInitializerContext) => void;
779
+ /**
780
+ * Exit a parse tree produced by `CPP14Parser.forRangeInitializer`.
781
+ * @param ctx the parse tree
782
+ */
783
+ exitForRangeInitializer?: (ctx: ForRangeInitializerContext) => void;
784
+ /**
785
+ * Enter a parse tree produced by `CPP14Parser.jumpStatement`.
786
+ * @param ctx the parse tree
787
+ */
788
+ enterJumpStatement?: (ctx: JumpStatementContext) => void;
789
+ /**
790
+ * Exit a parse tree produced by `CPP14Parser.jumpStatement`.
791
+ * @param ctx the parse tree
792
+ */
793
+ exitJumpStatement?: (ctx: JumpStatementContext) => void;
794
+ /**
795
+ * Enter a parse tree produced by `CPP14Parser.declarationStatement`.
796
+ * @param ctx the parse tree
797
+ */
798
+ enterDeclarationStatement?: (ctx: DeclarationStatementContext) => void;
799
+ /**
800
+ * Exit a parse tree produced by `CPP14Parser.declarationStatement`.
801
+ * @param ctx the parse tree
802
+ */
803
+ exitDeclarationStatement?: (ctx: DeclarationStatementContext) => void;
804
+ /**
805
+ * Enter a parse tree produced by `CPP14Parser.declarationseq`.
806
+ * @param ctx the parse tree
807
+ */
808
+ enterDeclarationseq?: (ctx: DeclarationseqContext) => void;
809
+ /**
810
+ * Exit a parse tree produced by `CPP14Parser.declarationseq`.
811
+ * @param ctx the parse tree
812
+ */
813
+ exitDeclarationseq?: (ctx: DeclarationseqContext) => void;
814
+ /**
815
+ * Enter a parse tree produced by `CPP14Parser.declaration`.
816
+ * @param ctx the parse tree
817
+ */
818
+ enterDeclaration?: (ctx: DeclarationContext) => void;
819
+ /**
820
+ * Exit a parse tree produced by `CPP14Parser.declaration`.
821
+ * @param ctx the parse tree
822
+ */
823
+ exitDeclaration?: (ctx: DeclarationContext) => void;
824
+ /**
825
+ * Enter a parse tree produced by `CPP14Parser.blockDeclaration`.
826
+ * @param ctx the parse tree
827
+ */
828
+ enterBlockDeclaration?: (ctx: BlockDeclarationContext) => void;
829
+ /**
830
+ * Exit a parse tree produced by `CPP14Parser.blockDeclaration`.
831
+ * @param ctx the parse tree
832
+ */
833
+ exitBlockDeclaration?: (ctx: BlockDeclarationContext) => void;
834
+ /**
835
+ * Enter a parse tree produced by `CPP14Parser.aliasDeclaration`.
836
+ * @param ctx the parse tree
837
+ */
838
+ enterAliasDeclaration?: (ctx: AliasDeclarationContext) => void;
839
+ /**
840
+ * Exit a parse tree produced by `CPP14Parser.aliasDeclaration`.
841
+ * @param ctx the parse tree
842
+ */
843
+ exitAliasDeclaration?: (ctx: AliasDeclarationContext) => void;
844
+ /**
845
+ * Enter a parse tree produced by `CPP14Parser.simpleDeclaration`.
846
+ * @param ctx the parse tree
847
+ */
848
+ enterSimpleDeclaration?: (ctx: SimpleDeclarationContext) => void;
849
+ /**
850
+ * Exit a parse tree produced by `CPP14Parser.simpleDeclaration`.
851
+ * @param ctx the parse tree
852
+ */
853
+ exitSimpleDeclaration?: (ctx: SimpleDeclarationContext) => void;
854
+ /**
855
+ * Enter a parse tree produced by `CPP14Parser.staticAssertDeclaration`.
856
+ * @param ctx the parse tree
857
+ */
858
+ enterStaticAssertDeclaration?: (ctx: StaticAssertDeclarationContext) => void;
859
+ /**
860
+ * Exit a parse tree produced by `CPP14Parser.staticAssertDeclaration`.
861
+ * @param ctx the parse tree
862
+ */
863
+ exitStaticAssertDeclaration?: (ctx: StaticAssertDeclarationContext) => void;
864
+ /**
865
+ * Enter a parse tree produced by `CPP14Parser.emptyDeclaration_`.
866
+ * @param ctx the parse tree
867
+ */
868
+ enterEmptyDeclaration_?: (ctx: EmptyDeclaration_Context) => void;
869
+ /**
870
+ * Exit a parse tree produced by `CPP14Parser.emptyDeclaration_`.
871
+ * @param ctx the parse tree
872
+ */
873
+ exitEmptyDeclaration_?: (ctx: EmptyDeclaration_Context) => void;
874
+ /**
875
+ * Enter a parse tree produced by `CPP14Parser.attributeDeclaration`.
876
+ * @param ctx the parse tree
877
+ */
878
+ enterAttributeDeclaration?: (ctx: AttributeDeclarationContext) => void;
879
+ /**
880
+ * Exit a parse tree produced by `CPP14Parser.attributeDeclaration`.
881
+ * @param ctx the parse tree
882
+ */
883
+ exitAttributeDeclaration?: (ctx: AttributeDeclarationContext) => void;
884
+ /**
885
+ * Enter a parse tree produced by `CPP14Parser.declSpecifier`.
886
+ * @param ctx the parse tree
887
+ */
888
+ enterDeclSpecifier?: (ctx: DeclSpecifierContext) => void;
889
+ /**
890
+ * Exit a parse tree produced by `CPP14Parser.declSpecifier`.
891
+ * @param ctx the parse tree
892
+ */
893
+ exitDeclSpecifier?: (ctx: DeclSpecifierContext) => void;
894
+ /**
895
+ * Enter a parse tree produced by `CPP14Parser.declSpecifierSeq`.
896
+ * @param ctx the parse tree
897
+ */
898
+ enterDeclSpecifierSeq?: (ctx: DeclSpecifierSeqContext) => void;
899
+ /**
900
+ * Exit a parse tree produced by `CPP14Parser.declSpecifierSeq`.
901
+ * @param ctx the parse tree
902
+ */
903
+ exitDeclSpecifierSeq?: (ctx: DeclSpecifierSeqContext) => void;
904
+ /**
905
+ * Enter a parse tree produced by `CPP14Parser.storageClassSpecifier`.
906
+ * @param ctx the parse tree
907
+ */
908
+ enterStorageClassSpecifier?: (ctx: StorageClassSpecifierContext) => void;
909
+ /**
910
+ * Exit a parse tree produced by `CPP14Parser.storageClassSpecifier`.
911
+ * @param ctx the parse tree
912
+ */
913
+ exitStorageClassSpecifier?: (ctx: StorageClassSpecifierContext) => void;
914
+ /**
915
+ * Enter a parse tree produced by `CPP14Parser.functionSpecifier`.
916
+ * @param ctx the parse tree
917
+ */
918
+ enterFunctionSpecifier?: (ctx: FunctionSpecifierContext) => void;
919
+ /**
920
+ * Exit a parse tree produced by `CPP14Parser.functionSpecifier`.
921
+ * @param ctx the parse tree
922
+ */
923
+ exitFunctionSpecifier?: (ctx: FunctionSpecifierContext) => void;
924
+ /**
925
+ * Enter a parse tree produced by `CPP14Parser.typedefName`.
926
+ * @param ctx the parse tree
927
+ */
928
+ enterTypedefName?: (ctx: TypedefNameContext) => void;
929
+ /**
930
+ * Exit a parse tree produced by `CPP14Parser.typedefName`.
931
+ * @param ctx the parse tree
932
+ */
933
+ exitTypedefName?: (ctx: TypedefNameContext) => void;
934
+ /**
935
+ * Enter a parse tree produced by `CPP14Parser.typeSpecifier`.
936
+ * @param ctx the parse tree
937
+ */
938
+ enterTypeSpecifier?: (ctx: TypeSpecifierContext) => void;
939
+ /**
940
+ * Exit a parse tree produced by `CPP14Parser.typeSpecifier`.
941
+ * @param ctx the parse tree
942
+ */
943
+ exitTypeSpecifier?: (ctx: TypeSpecifierContext) => void;
944
+ /**
945
+ * Enter a parse tree produced by `CPP14Parser.trailingTypeSpecifier`.
946
+ * @param ctx the parse tree
947
+ */
948
+ enterTrailingTypeSpecifier?: (ctx: TrailingTypeSpecifierContext) => void;
949
+ /**
950
+ * Exit a parse tree produced by `CPP14Parser.trailingTypeSpecifier`.
951
+ * @param ctx the parse tree
952
+ */
953
+ exitTrailingTypeSpecifier?: (ctx: TrailingTypeSpecifierContext) => void;
954
+ /**
955
+ * Enter a parse tree produced by `CPP14Parser.typeSpecifierSeq`.
956
+ * @param ctx the parse tree
957
+ */
958
+ enterTypeSpecifierSeq?: (ctx: TypeSpecifierSeqContext) => void;
959
+ /**
960
+ * Exit a parse tree produced by `CPP14Parser.typeSpecifierSeq`.
961
+ * @param ctx the parse tree
962
+ */
963
+ exitTypeSpecifierSeq?: (ctx: TypeSpecifierSeqContext) => void;
964
+ /**
965
+ * Enter a parse tree produced by `CPP14Parser.trailingTypeSpecifierSeq`.
966
+ * @param ctx the parse tree
967
+ */
968
+ enterTrailingTypeSpecifierSeq?: (ctx: TrailingTypeSpecifierSeqContext) => void;
969
+ /**
970
+ * Exit a parse tree produced by `CPP14Parser.trailingTypeSpecifierSeq`.
971
+ * @param ctx the parse tree
972
+ */
973
+ exitTrailingTypeSpecifierSeq?: (ctx: TrailingTypeSpecifierSeqContext) => void;
974
+ /**
975
+ * Enter a parse tree produced by `CPP14Parser.simpleTypeLengthModifier`.
976
+ * @param ctx the parse tree
977
+ */
978
+ enterSimpleTypeLengthModifier?: (ctx: SimpleTypeLengthModifierContext) => void;
979
+ /**
980
+ * Exit a parse tree produced by `CPP14Parser.simpleTypeLengthModifier`.
981
+ * @param ctx the parse tree
982
+ */
983
+ exitSimpleTypeLengthModifier?: (ctx: SimpleTypeLengthModifierContext) => void;
984
+ /**
985
+ * Enter a parse tree produced by `CPP14Parser.simpleTypeSignednessModifier`.
986
+ * @param ctx the parse tree
987
+ */
988
+ enterSimpleTypeSignednessModifier?: (ctx: SimpleTypeSignednessModifierContext) => void;
989
+ /**
990
+ * Exit a parse tree produced by `CPP14Parser.simpleTypeSignednessModifier`.
991
+ * @param ctx the parse tree
992
+ */
993
+ exitSimpleTypeSignednessModifier?: (ctx: SimpleTypeSignednessModifierContext) => void;
994
+ /**
995
+ * Enter a parse tree produced by `CPP14Parser.simpleTypeSpecifier`.
996
+ * @param ctx the parse tree
997
+ */
998
+ enterSimpleTypeSpecifier?: (ctx: SimpleTypeSpecifierContext) => void;
999
+ /**
1000
+ * Exit a parse tree produced by `CPP14Parser.simpleTypeSpecifier`.
1001
+ * @param ctx the parse tree
1002
+ */
1003
+ exitSimpleTypeSpecifier?: (ctx: SimpleTypeSpecifierContext) => void;
1004
+ /**
1005
+ * Enter a parse tree produced by `CPP14Parser.theTypeName`.
1006
+ * @param ctx the parse tree
1007
+ */
1008
+ enterTheTypeName?: (ctx: TheTypeNameContext) => void;
1009
+ /**
1010
+ * Exit a parse tree produced by `CPP14Parser.theTypeName`.
1011
+ * @param ctx the parse tree
1012
+ */
1013
+ exitTheTypeName?: (ctx: TheTypeNameContext) => void;
1014
+ /**
1015
+ * Enter a parse tree produced by `CPP14Parser.decltypeSpecifier`.
1016
+ * @param ctx the parse tree
1017
+ */
1018
+ enterDecltypeSpecifier?: (ctx: DecltypeSpecifierContext) => void;
1019
+ /**
1020
+ * Exit a parse tree produced by `CPP14Parser.decltypeSpecifier`.
1021
+ * @param ctx the parse tree
1022
+ */
1023
+ exitDecltypeSpecifier?: (ctx: DecltypeSpecifierContext) => void;
1024
+ /**
1025
+ * Enter a parse tree produced by `CPP14Parser.elaboratedTypeSpecifier`.
1026
+ * @param ctx the parse tree
1027
+ */
1028
+ enterElaboratedTypeSpecifier?: (ctx: ElaboratedTypeSpecifierContext) => void;
1029
+ /**
1030
+ * Exit a parse tree produced by `CPP14Parser.elaboratedTypeSpecifier`.
1031
+ * @param ctx the parse tree
1032
+ */
1033
+ exitElaboratedTypeSpecifier?: (ctx: ElaboratedTypeSpecifierContext) => void;
1034
+ /**
1035
+ * Enter a parse tree produced by `CPP14Parser.enumName`.
1036
+ * @param ctx the parse tree
1037
+ */
1038
+ enterEnumName?: (ctx: EnumNameContext) => void;
1039
+ /**
1040
+ * Exit a parse tree produced by `CPP14Parser.enumName`.
1041
+ * @param ctx the parse tree
1042
+ */
1043
+ exitEnumName?: (ctx: EnumNameContext) => void;
1044
+ /**
1045
+ * Enter a parse tree produced by `CPP14Parser.enumSpecifier`.
1046
+ * @param ctx the parse tree
1047
+ */
1048
+ enterEnumSpecifier?: (ctx: EnumSpecifierContext) => void;
1049
+ /**
1050
+ * Exit a parse tree produced by `CPP14Parser.enumSpecifier`.
1051
+ * @param ctx the parse tree
1052
+ */
1053
+ exitEnumSpecifier?: (ctx: EnumSpecifierContext) => void;
1054
+ /**
1055
+ * Enter a parse tree produced by `CPP14Parser.enumHead`.
1056
+ * @param ctx the parse tree
1057
+ */
1058
+ enterEnumHead?: (ctx: EnumHeadContext) => void;
1059
+ /**
1060
+ * Exit a parse tree produced by `CPP14Parser.enumHead`.
1061
+ * @param ctx the parse tree
1062
+ */
1063
+ exitEnumHead?: (ctx: EnumHeadContext) => void;
1064
+ /**
1065
+ * Enter a parse tree produced by `CPP14Parser.opaqueEnumDeclaration`.
1066
+ * @param ctx the parse tree
1067
+ */
1068
+ enterOpaqueEnumDeclaration?: (ctx: OpaqueEnumDeclarationContext) => void;
1069
+ /**
1070
+ * Exit a parse tree produced by `CPP14Parser.opaqueEnumDeclaration`.
1071
+ * @param ctx the parse tree
1072
+ */
1073
+ exitOpaqueEnumDeclaration?: (ctx: OpaqueEnumDeclarationContext) => void;
1074
+ /**
1075
+ * Enter a parse tree produced by `CPP14Parser.enumkey`.
1076
+ * @param ctx the parse tree
1077
+ */
1078
+ enterEnumkey?: (ctx: EnumkeyContext) => void;
1079
+ /**
1080
+ * Exit a parse tree produced by `CPP14Parser.enumkey`.
1081
+ * @param ctx the parse tree
1082
+ */
1083
+ exitEnumkey?: (ctx: EnumkeyContext) => void;
1084
+ /**
1085
+ * Enter a parse tree produced by `CPP14Parser.enumbase`.
1086
+ * @param ctx the parse tree
1087
+ */
1088
+ enterEnumbase?: (ctx: EnumbaseContext) => void;
1089
+ /**
1090
+ * Exit a parse tree produced by `CPP14Parser.enumbase`.
1091
+ * @param ctx the parse tree
1092
+ */
1093
+ exitEnumbase?: (ctx: EnumbaseContext) => void;
1094
+ /**
1095
+ * Enter a parse tree produced by `CPP14Parser.enumeratorList`.
1096
+ * @param ctx the parse tree
1097
+ */
1098
+ enterEnumeratorList?: (ctx: EnumeratorListContext) => void;
1099
+ /**
1100
+ * Exit a parse tree produced by `CPP14Parser.enumeratorList`.
1101
+ * @param ctx the parse tree
1102
+ */
1103
+ exitEnumeratorList?: (ctx: EnumeratorListContext) => void;
1104
+ /**
1105
+ * Enter a parse tree produced by `CPP14Parser.enumeratorDefinition`.
1106
+ * @param ctx the parse tree
1107
+ */
1108
+ enterEnumeratorDefinition?: (ctx: EnumeratorDefinitionContext) => void;
1109
+ /**
1110
+ * Exit a parse tree produced by `CPP14Parser.enumeratorDefinition`.
1111
+ * @param ctx the parse tree
1112
+ */
1113
+ exitEnumeratorDefinition?: (ctx: EnumeratorDefinitionContext) => void;
1114
+ /**
1115
+ * Enter a parse tree produced by `CPP14Parser.enumerator`.
1116
+ * @param ctx the parse tree
1117
+ */
1118
+ enterEnumerator?: (ctx: EnumeratorContext) => void;
1119
+ /**
1120
+ * Exit a parse tree produced by `CPP14Parser.enumerator`.
1121
+ * @param ctx the parse tree
1122
+ */
1123
+ exitEnumerator?: (ctx: EnumeratorContext) => void;
1124
+ /**
1125
+ * Enter a parse tree produced by `CPP14Parser.namespaceName`.
1126
+ * @param ctx the parse tree
1127
+ */
1128
+ enterNamespaceName?: (ctx: NamespaceNameContext) => void;
1129
+ /**
1130
+ * Exit a parse tree produced by `CPP14Parser.namespaceName`.
1131
+ * @param ctx the parse tree
1132
+ */
1133
+ exitNamespaceName?: (ctx: NamespaceNameContext) => void;
1134
+ /**
1135
+ * Enter a parse tree produced by `CPP14Parser.originalNamespaceName`.
1136
+ * @param ctx the parse tree
1137
+ */
1138
+ enterOriginalNamespaceName?: (ctx: OriginalNamespaceNameContext) => void;
1139
+ /**
1140
+ * Exit a parse tree produced by `CPP14Parser.originalNamespaceName`.
1141
+ * @param ctx the parse tree
1142
+ */
1143
+ exitOriginalNamespaceName?: (ctx: OriginalNamespaceNameContext) => void;
1144
+ /**
1145
+ * Enter a parse tree produced by `CPP14Parser.namespaceDefinition`.
1146
+ * @param ctx the parse tree
1147
+ */
1148
+ enterNamespaceDefinition?: (ctx: NamespaceDefinitionContext) => void;
1149
+ /**
1150
+ * Exit a parse tree produced by `CPP14Parser.namespaceDefinition`.
1151
+ * @param ctx the parse tree
1152
+ */
1153
+ exitNamespaceDefinition?: (ctx: NamespaceDefinitionContext) => void;
1154
+ /**
1155
+ * Enter a parse tree produced by `CPP14Parser.namespaceAlias`.
1156
+ * @param ctx the parse tree
1157
+ */
1158
+ enterNamespaceAlias?: (ctx: NamespaceAliasContext) => void;
1159
+ /**
1160
+ * Exit a parse tree produced by `CPP14Parser.namespaceAlias`.
1161
+ * @param ctx the parse tree
1162
+ */
1163
+ exitNamespaceAlias?: (ctx: NamespaceAliasContext) => void;
1164
+ /**
1165
+ * Enter a parse tree produced by `CPP14Parser.namespaceAliasDefinition`.
1166
+ * @param ctx the parse tree
1167
+ */
1168
+ enterNamespaceAliasDefinition?: (ctx: NamespaceAliasDefinitionContext) => void;
1169
+ /**
1170
+ * Exit a parse tree produced by `CPP14Parser.namespaceAliasDefinition`.
1171
+ * @param ctx the parse tree
1172
+ */
1173
+ exitNamespaceAliasDefinition?: (ctx: NamespaceAliasDefinitionContext) => void;
1174
+ /**
1175
+ * Enter a parse tree produced by `CPP14Parser.qualifiednamespacespecifier`.
1176
+ * @param ctx the parse tree
1177
+ */
1178
+ enterQualifiednamespacespecifier?: (ctx: QualifiednamespacespecifierContext) => void;
1179
+ /**
1180
+ * Exit a parse tree produced by `CPP14Parser.qualifiednamespacespecifier`.
1181
+ * @param ctx the parse tree
1182
+ */
1183
+ exitQualifiednamespacespecifier?: (ctx: QualifiednamespacespecifierContext) => void;
1184
+ /**
1185
+ * Enter a parse tree produced by `CPP14Parser.usingDeclaration`.
1186
+ * @param ctx the parse tree
1187
+ */
1188
+ enterUsingDeclaration?: (ctx: UsingDeclarationContext) => void;
1189
+ /**
1190
+ * Exit a parse tree produced by `CPP14Parser.usingDeclaration`.
1191
+ * @param ctx the parse tree
1192
+ */
1193
+ exitUsingDeclaration?: (ctx: UsingDeclarationContext) => void;
1194
+ /**
1195
+ * Enter a parse tree produced by `CPP14Parser.usingDirective`.
1196
+ * @param ctx the parse tree
1197
+ */
1198
+ enterUsingDirective?: (ctx: UsingDirectiveContext) => void;
1199
+ /**
1200
+ * Exit a parse tree produced by `CPP14Parser.usingDirective`.
1201
+ * @param ctx the parse tree
1202
+ */
1203
+ exitUsingDirective?: (ctx: UsingDirectiveContext) => void;
1204
+ /**
1205
+ * Enter a parse tree produced by `CPP14Parser.asmDefinition`.
1206
+ * @param ctx the parse tree
1207
+ */
1208
+ enterAsmDefinition?: (ctx: AsmDefinitionContext) => void;
1209
+ /**
1210
+ * Exit a parse tree produced by `CPP14Parser.asmDefinition`.
1211
+ * @param ctx the parse tree
1212
+ */
1213
+ exitAsmDefinition?: (ctx: AsmDefinitionContext) => void;
1214
+ /**
1215
+ * Enter a parse tree produced by `CPP14Parser.linkageSpecification`.
1216
+ * @param ctx the parse tree
1217
+ */
1218
+ enterLinkageSpecification?: (ctx: LinkageSpecificationContext) => void;
1219
+ /**
1220
+ * Exit a parse tree produced by `CPP14Parser.linkageSpecification`.
1221
+ * @param ctx the parse tree
1222
+ */
1223
+ exitLinkageSpecification?: (ctx: LinkageSpecificationContext) => void;
1224
+ /**
1225
+ * Enter a parse tree produced by `CPP14Parser.attributeSpecifierSeq`.
1226
+ * @param ctx the parse tree
1227
+ */
1228
+ enterAttributeSpecifierSeq?: (ctx: AttributeSpecifierSeqContext) => void;
1229
+ /**
1230
+ * Exit a parse tree produced by `CPP14Parser.attributeSpecifierSeq`.
1231
+ * @param ctx the parse tree
1232
+ */
1233
+ exitAttributeSpecifierSeq?: (ctx: AttributeSpecifierSeqContext) => void;
1234
+ /**
1235
+ * Enter a parse tree produced by `CPP14Parser.attributeSpecifier`.
1236
+ * @param ctx the parse tree
1237
+ */
1238
+ enterAttributeSpecifier?: (ctx: AttributeSpecifierContext) => void;
1239
+ /**
1240
+ * Exit a parse tree produced by `CPP14Parser.attributeSpecifier`.
1241
+ * @param ctx the parse tree
1242
+ */
1243
+ exitAttributeSpecifier?: (ctx: AttributeSpecifierContext) => void;
1244
+ /**
1245
+ * Enter a parse tree produced by `CPP14Parser.alignmentspecifier`.
1246
+ * @param ctx the parse tree
1247
+ */
1248
+ enterAlignmentspecifier?: (ctx: AlignmentspecifierContext) => void;
1249
+ /**
1250
+ * Exit a parse tree produced by `CPP14Parser.alignmentspecifier`.
1251
+ * @param ctx the parse tree
1252
+ */
1253
+ exitAlignmentspecifier?: (ctx: AlignmentspecifierContext) => void;
1254
+ /**
1255
+ * Enter a parse tree produced by `CPP14Parser.attributeList`.
1256
+ * @param ctx the parse tree
1257
+ */
1258
+ enterAttributeList?: (ctx: AttributeListContext) => void;
1259
+ /**
1260
+ * Exit a parse tree produced by `CPP14Parser.attributeList`.
1261
+ * @param ctx the parse tree
1262
+ */
1263
+ exitAttributeList?: (ctx: AttributeListContext) => void;
1264
+ /**
1265
+ * Enter a parse tree produced by `CPP14Parser.attribute`.
1266
+ * @param ctx the parse tree
1267
+ */
1268
+ enterAttribute?: (ctx: AttributeContext) => void;
1269
+ /**
1270
+ * Exit a parse tree produced by `CPP14Parser.attribute`.
1271
+ * @param ctx the parse tree
1272
+ */
1273
+ exitAttribute?: (ctx: AttributeContext) => void;
1274
+ /**
1275
+ * Enter a parse tree produced by `CPP14Parser.attributeNamespace`.
1276
+ * @param ctx the parse tree
1277
+ */
1278
+ enterAttributeNamespace?: (ctx: AttributeNamespaceContext) => void;
1279
+ /**
1280
+ * Exit a parse tree produced by `CPP14Parser.attributeNamespace`.
1281
+ * @param ctx the parse tree
1282
+ */
1283
+ exitAttributeNamespace?: (ctx: AttributeNamespaceContext) => void;
1284
+ /**
1285
+ * Enter a parse tree produced by `CPP14Parser.attributeArgumentClause`.
1286
+ * @param ctx the parse tree
1287
+ */
1288
+ enterAttributeArgumentClause?: (ctx: AttributeArgumentClauseContext) => void;
1289
+ /**
1290
+ * Exit a parse tree produced by `CPP14Parser.attributeArgumentClause`.
1291
+ * @param ctx the parse tree
1292
+ */
1293
+ exitAttributeArgumentClause?: (ctx: AttributeArgumentClauseContext) => void;
1294
+ /**
1295
+ * Enter a parse tree produced by `CPP14Parser.balancedTokenSeq`.
1296
+ * @param ctx the parse tree
1297
+ */
1298
+ enterBalancedTokenSeq?: (ctx: BalancedTokenSeqContext) => void;
1299
+ /**
1300
+ * Exit a parse tree produced by `CPP14Parser.balancedTokenSeq`.
1301
+ * @param ctx the parse tree
1302
+ */
1303
+ exitBalancedTokenSeq?: (ctx: BalancedTokenSeqContext) => void;
1304
+ /**
1305
+ * Enter a parse tree produced by `CPP14Parser.balancedtoken`.
1306
+ * @param ctx the parse tree
1307
+ */
1308
+ enterBalancedtoken?: (ctx: BalancedtokenContext) => void;
1309
+ /**
1310
+ * Exit a parse tree produced by `CPP14Parser.balancedtoken`.
1311
+ * @param ctx the parse tree
1312
+ */
1313
+ exitBalancedtoken?: (ctx: BalancedtokenContext) => void;
1314
+ /**
1315
+ * Enter a parse tree produced by `CPP14Parser.initDeclaratorList`.
1316
+ * @param ctx the parse tree
1317
+ */
1318
+ enterInitDeclaratorList?: (ctx: InitDeclaratorListContext) => void;
1319
+ /**
1320
+ * Exit a parse tree produced by `CPP14Parser.initDeclaratorList`.
1321
+ * @param ctx the parse tree
1322
+ */
1323
+ exitInitDeclaratorList?: (ctx: InitDeclaratorListContext) => void;
1324
+ /**
1325
+ * Enter a parse tree produced by `CPP14Parser.initDeclarator`.
1326
+ * @param ctx the parse tree
1327
+ */
1328
+ enterInitDeclarator?: (ctx: InitDeclaratorContext) => void;
1329
+ /**
1330
+ * Exit a parse tree produced by `CPP14Parser.initDeclarator`.
1331
+ * @param ctx the parse tree
1332
+ */
1333
+ exitInitDeclarator?: (ctx: InitDeclaratorContext) => void;
1334
+ /**
1335
+ * Enter a parse tree produced by `CPP14Parser.declarator`.
1336
+ * @param ctx the parse tree
1337
+ */
1338
+ enterDeclarator?: (ctx: DeclaratorContext) => void;
1339
+ /**
1340
+ * Exit a parse tree produced by `CPP14Parser.declarator`.
1341
+ * @param ctx the parse tree
1342
+ */
1343
+ exitDeclarator?: (ctx: DeclaratorContext) => void;
1344
+ /**
1345
+ * Enter a parse tree produced by `CPP14Parser.pointerDeclarator`.
1346
+ * @param ctx the parse tree
1347
+ */
1348
+ enterPointerDeclarator?: (ctx: PointerDeclaratorContext) => void;
1349
+ /**
1350
+ * Exit a parse tree produced by `CPP14Parser.pointerDeclarator`.
1351
+ * @param ctx the parse tree
1352
+ */
1353
+ exitPointerDeclarator?: (ctx: PointerDeclaratorContext) => void;
1354
+ /**
1355
+ * Enter a parse tree produced by `CPP14Parser.noPointerDeclarator`.
1356
+ * @param ctx the parse tree
1357
+ */
1358
+ enterNoPointerDeclarator?: (ctx: NoPointerDeclaratorContext) => void;
1359
+ /**
1360
+ * Exit a parse tree produced by `CPP14Parser.noPointerDeclarator`.
1361
+ * @param ctx the parse tree
1362
+ */
1363
+ exitNoPointerDeclarator?: (ctx: NoPointerDeclaratorContext) => void;
1364
+ /**
1365
+ * Enter a parse tree produced by `CPP14Parser.parametersAndQualifiers`.
1366
+ * @param ctx the parse tree
1367
+ */
1368
+ enterParametersAndQualifiers?: (ctx: ParametersAndQualifiersContext) => void;
1369
+ /**
1370
+ * Exit a parse tree produced by `CPP14Parser.parametersAndQualifiers`.
1371
+ * @param ctx the parse tree
1372
+ */
1373
+ exitParametersAndQualifiers?: (ctx: ParametersAndQualifiersContext) => void;
1374
+ /**
1375
+ * Enter a parse tree produced by `CPP14Parser.trailingReturnType`.
1376
+ * @param ctx the parse tree
1377
+ */
1378
+ enterTrailingReturnType?: (ctx: TrailingReturnTypeContext) => void;
1379
+ /**
1380
+ * Exit a parse tree produced by `CPP14Parser.trailingReturnType`.
1381
+ * @param ctx the parse tree
1382
+ */
1383
+ exitTrailingReturnType?: (ctx: TrailingReturnTypeContext) => void;
1384
+ /**
1385
+ * Enter a parse tree produced by `CPP14Parser.pointerOperator`.
1386
+ * @param ctx the parse tree
1387
+ */
1388
+ enterPointerOperator?: (ctx: PointerOperatorContext) => void;
1389
+ /**
1390
+ * Exit a parse tree produced by `CPP14Parser.pointerOperator`.
1391
+ * @param ctx the parse tree
1392
+ */
1393
+ exitPointerOperator?: (ctx: PointerOperatorContext) => void;
1394
+ /**
1395
+ * Enter a parse tree produced by `CPP14Parser.cvqualifierseq`.
1396
+ * @param ctx the parse tree
1397
+ */
1398
+ enterCvqualifierseq?: (ctx: CvqualifierseqContext) => void;
1399
+ /**
1400
+ * Exit a parse tree produced by `CPP14Parser.cvqualifierseq`.
1401
+ * @param ctx the parse tree
1402
+ */
1403
+ exitCvqualifierseq?: (ctx: CvqualifierseqContext) => void;
1404
+ /**
1405
+ * Enter a parse tree produced by `CPP14Parser.cvQualifier`.
1406
+ * @param ctx the parse tree
1407
+ */
1408
+ enterCvQualifier?: (ctx: CvQualifierContext) => void;
1409
+ /**
1410
+ * Exit a parse tree produced by `CPP14Parser.cvQualifier`.
1411
+ * @param ctx the parse tree
1412
+ */
1413
+ exitCvQualifier?: (ctx: CvQualifierContext) => void;
1414
+ /**
1415
+ * Enter a parse tree produced by `CPP14Parser.refqualifier`.
1416
+ * @param ctx the parse tree
1417
+ */
1418
+ enterRefqualifier?: (ctx: RefqualifierContext) => void;
1419
+ /**
1420
+ * Exit a parse tree produced by `CPP14Parser.refqualifier`.
1421
+ * @param ctx the parse tree
1422
+ */
1423
+ exitRefqualifier?: (ctx: RefqualifierContext) => void;
1424
+ /**
1425
+ * Enter a parse tree produced by `CPP14Parser.declaratorid`.
1426
+ * @param ctx the parse tree
1427
+ */
1428
+ enterDeclaratorid?: (ctx: DeclaratoridContext) => void;
1429
+ /**
1430
+ * Exit a parse tree produced by `CPP14Parser.declaratorid`.
1431
+ * @param ctx the parse tree
1432
+ */
1433
+ exitDeclaratorid?: (ctx: DeclaratoridContext) => void;
1434
+ /**
1435
+ * Enter a parse tree produced by `CPP14Parser.theTypeId`.
1436
+ * @param ctx the parse tree
1437
+ */
1438
+ enterTheTypeId?: (ctx: TheTypeIdContext) => void;
1439
+ /**
1440
+ * Exit a parse tree produced by `CPP14Parser.theTypeId`.
1441
+ * @param ctx the parse tree
1442
+ */
1443
+ exitTheTypeId?: (ctx: TheTypeIdContext) => void;
1444
+ /**
1445
+ * Enter a parse tree produced by `CPP14Parser.abstractDeclarator`.
1446
+ * @param ctx the parse tree
1447
+ */
1448
+ enterAbstractDeclarator?: (ctx: AbstractDeclaratorContext) => void;
1449
+ /**
1450
+ * Exit a parse tree produced by `CPP14Parser.abstractDeclarator`.
1451
+ * @param ctx the parse tree
1452
+ */
1453
+ exitAbstractDeclarator?: (ctx: AbstractDeclaratorContext) => void;
1454
+ /**
1455
+ * Enter a parse tree produced by `CPP14Parser.pointerAbstractDeclarator`.
1456
+ * @param ctx the parse tree
1457
+ */
1458
+ enterPointerAbstractDeclarator?: (ctx: PointerAbstractDeclaratorContext) => void;
1459
+ /**
1460
+ * Exit a parse tree produced by `CPP14Parser.pointerAbstractDeclarator`.
1461
+ * @param ctx the parse tree
1462
+ */
1463
+ exitPointerAbstractDeclarator?: (ctx: PointerAbstractDeclaratorContext) => void;
1464
+ /**
1465
+ * Enter a parse tree produced by `CPP14Parser.noPointerAbstractDeclarator`.
1466
+ * @param ctx the parse tree
1467
+ */
1468
+ enterNoPointerAbstractDeclarator?: (ctx: NoPointerAbstractDeclaratorContext) => void;
1469
+ /**
1470
+ * Exit a parse tree produced by `CPP14Parser.noPointerAbstractDeclarator`.
1471
+ * @param ctx the parse tree
1472
+ */
1473
+ exitNoPointerAbstractDeclarator?: (ctx: NoPointerAbstractDeclaratorContext) => void;
1474
+ /**
1475
+ * Enter a parse tree produced by `CPP14Parser.abstractPackDeclarator`.
1476
+ * @param ctx the parse tree
1477
+ */
1478
+ enterAbstractPackDeclarator?: (ctx: AbstractPackDeclaratorContext) => void;
1479
+ /**
1480
+ * Exit a parse tree produced by `CPP14Parser.abstractPackDeclarator`.
1481
+ * @param ctx the parse tree
1482
+ */
1483
+ exitAbstractPackDeclarator?: (ctx: AbstractPackDeclaratorContext) => void;
1484
+ /**
1485
+ * Enter a parse tree produced by `CPP14Parser.noPointerAbstractPackDeclarator`.
1486
+ * @param ctx the parse tree
1487
+ */
1488
+ enterNoPointerAbstractPackDeclarator?: (ctx: NoPointerAbstractPackDeclaratorContext) => void;
1489
+ /**
1490
+ * Exit a parse tree produced by `CPP14Parser.noPointerAbstractPackDeclarator`.
1491
+ * @param ctx the parse tree
1492
+ */
1493
+ exitNoPointerAbstractPackDeclarator?: (ctx: NoPointerAbstractPackDeclaratorContext) => void;
1494
+ /**
1495
+ * Enter a parse tree produced by `CPP14Parser.parameterDeclarationClause`.
1496
+ * @param ctx the parse tree
1497
+ */
1498
+ enterParameterDeclarationClause?: (ctx: ParameterDeclarationClauseContext) => void;
1499
+ /**
1500
+ * Exit a parse tree produced by `CPP14Parser.parameterDeclarationClause`.
1501
+ * @param ctx the parse tree
1502
+ */
1503
+ exitParameterDeclarationClause?: (ctx: ParameterDeclarationClauseContext) => void;
1504
+ /**
1505
+ * Enter a parse tree produced by `CPP14Parser.parameterDeclarationList`.
1506
+ * @param ctx the parse tree
1507
+ */
1508
+ enterParameterDeclarationList?: (ctx: ParameterDeclarationListContext) => void;
1509
+ /**
1510
+ * Exit a parse tree produced by `CPP14Parser.parameterDeclarationList`.
1511
+ * @param ctx the parse tree
1512
+ */
1513
+ exitParameterDeclarationList?: (ctx: ParameterDeclarationListContext) => void;
1514
+ /**
1515
+ * Enter a parse tree produced by `CPP14Parser.parameterDeclaration`.
1516
+ * @param ctx the parse tree
1517
+ */
1518
+ enterParameterDeclaration?: (ctx: ParameterDeclarationContext) => void;
1519
+ /**
1520
+ * Exit a parse tree produced by `CPP14Parser.parameterDeclaration`.
1521
+ * @param ctx the parse tree
1522
+ */
1523
+ exitParameterDeclaration?: (ctx: ParameterDeclarationContext) => void;
1524
+ /**
1525
+ * Enter a parse tree produced by `CPP14Parser.functionDefinition`.
1526
+ * @param ctx the parse tree
1527
+ */
1528
+ enterFunctionDefinition?: (ctx: FunctionDefinitionContext) => void;
1529
+ /**
1530
+ * Exit a parse tree produced by `CPP14Parser.functionDefinition`.
1531
+ * @param ctx the parse tree
1532
+ */
1533
+ exitFunctionDefinition?: (ctx: FunctionDefinitionContext) => void;
1534
+ /**
1535
+ * Enter a parse tree produced by `CPP14Parser.functionBody`.
1536
+ * @param ctx the parse tree
1537
+ */
1538
+ enterFunctionBody?: (ctx: FunctionBodyContext) => void;
1539
+ /**
1540
+ * Exit a parse tree produced by `CPP14Parser.functionBody`.
1541
+ * @param ctx the parse tree
1542
+ */
1543
+ exitFunctionBody?: (ctx: FunctionBodyContext) => void;
1544
+ /**
1545
+ * Enter a parse tree produced by `CPP14Parser.initializer`.
1546
+ * @param ctx the parse tree
1547
+ */
1548
+ enterInitializer?: (ctx: InitializerContext) => void;
1549
+ /**
1550
+ * Exit a parse tree produced by `CPP14Parser.initializer`.
1551
+ * @param ctx the parse tree
1552
+ */
1553
+ exitInitializer?: (ctx: InitializerContext) => void;
1554
+ /**
1555
+ * Enter a parse tree produced by `CPP14Parser.braceOrEqualInitializer`.
1556
+ * @param ctx the parse tree
1557
+ */
1558
+ enterBraceOrEqualInitializer?: (ctx: BraceOrEqualInitializerContext) => void;
1559
+ /**
1560
+ * Exit a parse tree produced by `CPP14Parser.braceOrEqualInitializer`.
1561
+ * @param ctx the parse tree
1562
+ */
1563
+ exitBraceOrEqualInitializer?: (ctx: BraceOrEqualInitializerContext) => void;
1564
+ /**
1565
+ * Enter a parse tree produced by `CPP14Parser.initializerClause`.
1566
+ * @param ctx the parse tree
1567
+ */
1568
+ enterInitializerClause?: (ctx: InitializerClauseContext) => void;
1569
+ /**
1570
+ * Exit a parse tree produced by `CPP14Parser.initializerClause`.
1571
+ * @param ctx the parse tree
1572
+ */
1573
+ exitInitializerClause?: (ctx: InitializerClauseContext) => void;
1574
+ /**
1575
+ * Enter a parse tree produced by `CPP14Parser.initializerList`.
1576
+ * @param ctx the parse tree
1577
+ */
1578
+ enterInitializerList?: (ctx: InitializerListContext) => void;
1579
+ /**
1580
+ * Exit a parse tree produced by `CPP14Parser.initializerList`.
1581
+ * @param ctx the parse tree
1582
+ */
1583
+ exitInitializerList?: (ctx: InitializerListContext) => void;
1584
+ /**
1585
+ * Enter a parse tree produced by `CPP14Parser.bracedInitList`.
1586
+ * @param ctx the parse tree
1587
+ */
1588
+ enterBracedInitList?: (ctx: BracedInitListContext) => void;
1589
+ /**
1590
+ * Exit a parse tree produced by `CPP14Parser.bracedInitList`.
1591
+ * @param ctx the parse tree
1592
+ */
1593
+ exitBracedInitList?: (ctx: BracedInitListContext) => void;
1594
+ /**
1595
+ * Enter a parse tree produced by `CPP14Parser.className`.
1596
+ * @param ctx the parse tree
1597
+ */
1598
+ enterClassName?: (ctx: ClassNameContext) => void;
1599
+ /**
1600
+ * Exit a parse tree produced by `CPP14Parser.className`.
1601
+ * @param ctx the parse tree
1602
+ */
1603
+ exitClassName?: (ctx: ClassNameContext) => void;
1604
+ /**
1605
+ * Enter a parse tree produced by `CPP14Parser.classSpecifier`.
1606
+ * @param ctx the parse tree
1607
+ */
1608
+ enterClassSpecifier?: (ctx: ClassSpecifierContext) => void;
1609
+ /**
1610
+ * Exit a parse tree produced by `CPP14Parser.classSpecifier`.
1611
+ * @param ctx the parse tree
1612
+ */
1613
+ exitClassSpecifier?: (ctx: ClassSpecifierContext) => void;
1614
+ /**
1615
+ * Enter a parse tree produced by `CPP14Parser.classHead`.
1616
+ * @param ctx the parse tree
1617
+ */
1618
+ enterClassHead?: (ctx: ClassHeadContext) => void;
1619
+ /**
1620
+ * Exit a parse tree produced by `CPP14Parser.classHead`.
1621
+ * @param ctx the parse tree
1622
+ */
1623
+ exitClassHead?: (ctx: ClassHeadContext) => void;
1624
+ /**
1625
+ * Enter a parse tree produced by `CPP14Parser.classHeadName`.
1626
+ * @param ctx the parse tree
1627
+ */
1628
+ enterClassHeadName?: (ctx: ClassHeadNameContext) => void;
1629
+ /**
1630
+ * Exit a parse tree produced by `CPP14Parser.classHeadName`.
1631
+ * @param ctx the parse tree
1632
+ */
1633
+ exitClassHeadName?: (ctx: ClassHeadNameContext) => void;
1634
+ /**
1635
+ * Enter a parse tree produced by `CPP14Parser.classVirtSpecifier`.
1636
+ * @param ctx the parse tree
1637
+ */
1638
+ enterClassVirtSpecifier?: (ctx: ClassVirtSpecifierContext) => void;
1639
+ /**
1640
+ * Exit a parse tree produced by `CPP14Parser.classVirtSpecifier`.
1641
+ * @param ctx the parse tree
1642
+ */
1643
+ exitClassVirtSpecifier?: (ctx: ClassVirtSpecifierContext) => void;
1644
+ /**
1645
+ * Enter a parse tree produced by `CPP14Parser.classKey`.
1646
+ * @param ctx the parse tree
1647
+ */
1648
+ enterClassKey?: (ctx: ClassKeyContext) => void;
1649
+ /**
1650
+ * Exit a parse tree produced by `CPP14Parser.classKey`.
1651
+ * @param ctx the parse tree
1652
+ */
1653
+ exitClassKey?: (ctx: ClassKeyContext) => void;
1654
+ /**
1655
+ * Enter a parse tree produced by `CPP14Parser.memberSpecification`.
1656
+ * @param ctx the parse tree
1657
+ */
1658
+ enterMemberSpecification?: (ctx: MemberSpecificationContext) => void;
1659
+ /**
1660
+ * Exit a parse tree produced by `CPP14Parser.memberSpecification`.
1661
+ * @param ctx the parse tree
1662
+ */
1663
+ exitMemberSpecification?: (ctx: MemberSpecificationContext) => void;
1664
+ /**
1665
+ * Enter a parse tree produced by `CPP14Parser.memberdeclaration`.
1666
+ * @param ctx the parse tree
1667
+ */
1668
+ enterMemberdeclaration?: (ctx: MemberdeclarationContext) => void;
1669
+ /**
1670
+ * Exit a parse tree produced by `CPP14Parser.memberdeclaration`.
1671
+ * @param ctx the parse tree
1672
+ */
1673
+ exitMemberdeclaration?: (ctx: MemberdeclarationContext) => void;
1674
+ /**
1675
+ * Enter a parse tree produced by `CPP14Parser.memberDeclaratorList`.
1676
+ * @param ctx the parse tree
1677
+ */
1678
+ enterMemberDeclaratorList?: (ctx: MemberDeclaratorListContext) => void;
1679
+ /**
1680
+ * Exit a parse tree produced by `CPP14Parser.memberDeclaratorList`.
1681
+ * @param ctx the parse tree
1682
+ */
1683
+ exitMemberDeclaratorList?: (ctx: MemberDeclaratorListContext) => void;
1684
+ /**
1685
+ * Enter a parse tree produced by `CPP14Parser.memberDeclarator`.
1686
+ * @param ctx the parse tree
1687
+ */
1688
+ enterMemberDeclarator?: (ctx: MemberDeclaratorContext) => void;
1689
+ /**
1690
+ * Exit a parse tree produced by `CPP14Parser.memberDeclarator`.
1691
+ * @param ctx the parse tree
1692
+ */
1693
+ exitMemberDeclarator?: (ctx: MemberDeclaratorContext) => void;
1694
+ /**
1695
+ * Enter a parse tree produced by `CPP14Parser.virtualSpecifierSeq`.
1696
+ * @param ctx the parse tree
1697
+ */
1698
+ enterVirtualSpecifierSeq?: (ctx: VirtualSpecifierSeqContext) => void;
1699
+ /**
1700
+ * Exit a parse tree produced by `CPP14Parser.virtualSpecifierSeq`.
1701
+ * @param ctx the parse tree
1702
+ */
1703
+ exitVirtualSpecifierSeq?: (ctx: VirtualSpecifierSeqContext) => void;
1704
+ /**
1705
+ * Enter a parse tree produced by `CPP14Parser.virtualSpecifier`.
1706
+ * @param ctx the parse tree
1707
+ */
1708
+ enterVirtualSpecifier?: (ctx: VirtualSpecifierContext) => void;
1709
+ /**
1710
+ * Exit a parse tree produced by `CPP14Parser.virtualSpecifier`.
1711
+ * @param ctx the parse tree
1712
+ */
1713
+ exitVirtualSpecifier?: (ctx: VirtualSpecifierContext) => void;
1714
+ /**
1715
+ * Enter a parse tree produced by `CPP14Parser.pureSpecifier`.
1716
+ * @param ctx the parse tree
1717
+ */
1718
+ enterPureSpecifier?: (ctx: PureSpecifierContext) => void;
1719
+ /**
1720
+ * Exit a parse tree produced by `CPP14Parser.pureSpecifier`.
1721
+ * @param ctx the parse tree
1722
+ */
1723
+ exitPureSpecifier?: (ctx: PureSpecifierContext) => void;
1724
+ /**
1725
+ * Enter a parse tree produced by `CPP14Parser.baseClause`.
1726
+ * @param ctx the parse tree
1727
+ */
1728
+ enterBaseClause?: (ctx: BaseClauseContext) => void;
1729
+ /**
1730
+ * Exit a parse tree produced by `CPP14Parser.baseClause`.
1731
+ * @param ctx the parse tree
1732
+ */
1733
+ exitBaseClause?: (ctx: BaseClauseContext) => void;
1734
+ /**
1735
+ * Enter a parse tree produced by `CPP14Parser.baseSpecifierList`.
1736
+ * @param ctx the parse tree
1737
+ */
1738
+ enterBaseSpecifierList?: (ctx: BaseSpecifierListContext) => void;
1739
+ /**
1740
+ * Exit a parse tree produced by `CPP14Parser.baseSpecifierList`.
1741
+ * @param ctx the parse tree
1742
+ */
1743
+ exitBaseSpecifierList?: (ctx: BaseSpecifierListContext) => void;
1744
+ /**
1745
+ * Enter a parse tree produced by `CPP14Parser.baseSpecifier`.
1746
+ * @param ctx the parse tree
1747
+ */
1748
+ enterBaseSpecifier?: (ctx: BaseSpecifierContext) => void;
1749
+ /**
1750
+ * Exit a parse tree produced by `CPP14Parser.baseSpecifier`.
1751
+ * @param ctx the parse tree
1752
+ */
1753
+ exitBaseSpecifier?: (ctx: BaseSpecifierContext) => void;
1754
+ /**
1755
+ * Enter a parse tree produced by `CPP14Parser.classOrDeclType`.
1756
+ * @param ctx the parse tree
1757
+ */
1758
+ enterClassOrDeclType?: (ctx: ClassOrDeclTypeContext) => void;
1759
+ /**
1760
+ * Exit a parse tree produced by `CPP14Parser.classOrDeclType`.
1761
+ * @param ctx the parse tree
1762
+ */
1763
+ exitClassOrDeclType?: (ctx: ClassOrDeclTypeContext) => void;
1764
+ /**
1765
+ * Enter a parse tree produced by `CPP14Parser.baseTypeSpecifier`.
1766
+ * @param ctx the parse tree
1767
+ */
1768
+ enterBaseTypeSpecifier?: (ctx: BaseTypeSpecifierContext) => void;
1769
+ /**
1770
+ * Exit a parse tree produced by `CPP14Parser.baseTypeSpecifier`.
1771
+ * @param ctx the parse tree
1772
+ */
1773
+ exitBaseTypeSpecifier?: (ctx: BaseTypeSpecifierContext) => void;
1774
+ /**
1775
+ * Enter a parse tree produced by `CPP14Parser.accessSpecifier`.
1776
+ * @param ctx the parse tree
1777
+ */
1778
+ enterAccessSpecifier?: (ctx: AccessSpecifierContext) => void;
1779
+ /**
1780
+ * Exit a parse tree produced by `CPP14Parser.accessSpecifier`.
1781
+ * @param ctx the parse tree
1782
+ */
1783
+ exitAccessSpecifier?: (ctx: AccessSpecifierContext) => void;
1784
+ /**
1785
+ * Enter a parse tree produced by `CPP14Parser.conversionFunctionId`.
1786
+ * @param ctx the parse tree
1787
+ */
1788
+ enterConversionFunctionId?: (ctx: ConversionFunctionIdContext) => void;
1789
+ /**
1790
+ * Exit a parse tree produced by `CPP14Parser.conversionFunctionId`.
1791
+ * @param ctx the parse tree
1792
+ */
1793
+ exitConversionFunctionId?: (ctx: ConversionFunctionIdContext) => void;
1794
+ /**
1795
+ * Enter a parse tree produced by `CPP14Parser.conversionTypeId`.
1796
+ * @param ctx the parse tree
1797
+ */
1798
+ enterConversionTypeId?: (ctx: ConversionTypeIdContext) => void;
1799
+ /**
1800
+ * Exit a parse tree produced by `CPP14Parser.conversionTypeId`.
1801
+ * @param ctx the parse tree
1802
+ */
1803
+ exitConversionTypeId?: (ctx: ConversionTypeIdContext) => void;
1804
+ /**
1805
+ * Enter a parse tree produced by `CPP14Parser.conversionDeclarator`.
1806
+ * @param ctx the parse tree
1807
+ */
1808
+ enterConversionDeclarator?: (ctx: ConversionDeclaratorContext) => void;
1809
+ /**
1810
+ * Exit a parse tree produced by `CPP14Parser.conversionDeclarator`.
1811
+ * @param ctx the parse tree
1812
+ */
1813
+ exitConversionDeclarator?: (ctx: ConversionDeclaratorContext) => void;
1814
+ /**
1815
+ * Enter a parse tree produced by `CPP14Parser.constructorInitializer`.
1816
+ * @param ctx the parse tree
1817
+ */
1818
+ enterConstructorInitializer?: (ctx: ConstructorInitializerContext) => void;
1819
+ /**
1820
+ * Exit a parse tree produced by `CPP14Parser.constructorInitializer`.
1821
+ * @param ctx the parse tree
1822
+ */
1823
+ exitConstructorInitializer?: (ctx: ConstructorInitializerContext) => void;
1824
+ /**
1825
+ * Enter a parse tree produced by `CPP14Parser.memInitializerList`.
1826
+ * @param ctx the parse tree
1827
+ */
1828
+ enterMemInitializerList?: (ctx: MemInitializerListContext) => void;
1829
+ /**
1830
+ * Exit a parse tree produced by `CPP14Parser.memInitializerList`.
1831
+ * @param ctx the parse tree
1832
+ */
1833
+ exitMemInitializerList?: (ctx: MemInitializerListContext) => void;
1834
+ /**
1835
+ * Enter a parse tree produced by `CPP14Parser.memInitializer`.
1836
+ * @param ctx the parse tree
1837
+ */
1838
+ enterMemInitializer?: (ctx: MemInitializerContext) => void;
1839
+ /**
1840
+ * Exit a parse tree produced by `CPP14Parser.memInitializer`.
1841
+ * @param ctx the parse tree
1842
+ */
1843
+ exitMemInitializer?: (ctx: MemInitializerContext) => void;
1844
+ /**
1845
+ * Enter a parse tree produced by `CPP14Parser.meminitializerid`.
1846
+ * @param ctx the parse tree
1847
+ */
1848
+ enterMeminitializerid?: (ctx: MeminitializeridContext) => void;
1849
+ /**
1850
+ * Exit a parse tree produced by `CPP14Parser.meminitializerid`.
1851
+ * @param ctx the parse tree
1852
+ */
1853
+ exitMeminitializerid?: (ctx: MeminitializeridContext) => void;
1854
+ /**
1855
+ * Enter a parse tree produced by `CPP14Parser.operatorFunctionId`.
1856
+ * @param ctx the parse tree
1857
+ */
1858
+ enterOperatorFunctionId?: (ctx: OperatorFunctionIdContext) => void;
1859
+ /**
1860
+ * Exit a parse tree produced by `CPP14Parser.operatorFunctionId`.
1861
+ * @param ctx the parse tree
1862
+ */
1863
+ exitOperatorFunctionId?: (ctx: OperatorFunctionIdContext) => void;
1864
+ /**
1865
+ * Enter a parse tree produced by `CPP14Parser.literalOperatorId`.
1866
+ * @param ctx the parse tree
1867
+ */
1868
+ enterLiteralOperatorId?: (ctx: LiteralOperatorIdContext) => void;
1869
+ /**
1870
+ * Exit a parse tree produced by `CPP14Parser.literalOperatorId`.
1871
+ * @param ctx the parse tree
1872
+ */
1873
+ exitLiteralOperatorId?: (ctx: LiteralOperatorIdContext) => void;
1874
+ /**
1875
+ * Enter a parse tree produced by `CPP14Parser.templateDeclaration`.
1876
+ * @param ctx the parse tree
1877
+ */
1878
+ enterTemplateDeclaration?: (ctx: TemplateDeclarationContext) => void;
1879
+ /**
1880
+ * Exit a parse tree produced by `CPP14Parser.templateDeclaration`.
1881
+ * @param ctx the parse tree
1882
+ */
1883
+ exitTemplateDeclaration?: (ctx: TemplateDeclarationContext) => void;
1884
+ /**
1885
+ * Enter a parse tree produced by `CPP14Parser.templateparameterList`.
1886
+ * @param ctx the parse tree
1887
+ */
1888
+ enterTemplateparameterList?: (ctx: TemplateparameterListContext) => void;
1889
+ /**
1890
+ * Exit a parse tree produced by `CPP14Parser.templateparameterList`.
1891
+ * @param ctx the parse tree
1892
+ */
1893
+ exitTemplateparameterList?: (ctx: TemplateparameterListContext) => void;
1894
+ /**
1895
+ * Enter a parse tree produced by `CPP14Parser.templateParameter`.
1896
+ * @param ctx the parse tree
1897
+ */
1898
+ enterTemplateParameter?: (ctx: TemplateParameterContext) => void;
1899
+ /**
1900
+ * Exit a parse tree produced by `CPP14Parser.templateParameter`.
1901
+ * @param ctx the parse tree
1902
+ */
1903
+ exitTemplateParameter?: (ctx: TemplateParameterContext) => void;
1904
+ /**
1905
+ * Enter a parse tree produced by `CPP14Parser.typeParameter`.
1906
+ * @param ctx the parse tree
1907
+ */
1908
+ enterTypeParameter?: (ctx: TypeParameterContext) => void;
1909
+ /**
1910
+ * Exit a parse tree produced by `CPP14Parser.typeParameter`.
1911
+ * @param ctx the parse tree
1912
+ */
1913
+ exitTypeParameter?: (ctx: TypeParameterContext) => void;
1914
+ /**
1915
+ * Enter a parse tree produced by `CPP14Parser.simpleTemplateId`.
1916
+ * @param ctx the parse tree
1917
+ */
1918
+ enterSimpleTemplateId?: (ctx: SimpleTemplateIdContext) => void;
1919
+ /**
1920
+ * Exit a parse tree produced by `CPP14Parser.simpleTemplateId`.
1921
+ * @param ctx the parse tree
1922
+ */
1923
+ exitSimpleTemplateId?: (ctx: SimpleTemplateIdContext) => void;
1924
+ /**
1925
+ * Enter a parse tree produced by `CPP14Parser.templateId`.
1926
+ * @param ctx the parse tree
1927
+ */
1928
+ enterTemplateId?: (ctx: TemplateIdContext) => void;
1929
+ /**
1930
+ * Exit a parse tree produced by `CPP14Parser.templateId`.
1931
+ * @param ctx the parse tree
1932
+ */
1933
+ exitTemplateId?: (ctx: TemplateIdContext) => void;
1934
+ /**
1935
+ * Enter a parse tree produced by `CPP14Parser.templateName`.
1936
+ * @param ctx the parse tree
1937
+ */
1938
+ enterTemplateName?: (ctx: TemplateNameContext) => void;
1939
+ /**
1940
+ * Exit a parse tree produced by `CPP14Parser.templateName`.
1941
+ * @param ctx the parse tree
1942
+ */
1943
+ exitTemplateName?: (ctx: TemplateNameContext) => void;
1944
+ /**
1945
+ * Enter a parse tree produced by `CPP14Parser.templateArgumentList`.
1946
+ * @param ctx the parse tree
1947
+ */
1948
+ enterTemplateArgumentList?: (ctx: TemplateArgumentListContext) => void;
1949
+ /**
1950
+ * Exit a parse tree produced by `CPP14Parser.templateArgumentList`.
1951
+ * @param ctx the parse tree
1952
+ */
1953
+ exitTemplateArgumentList?: (ctx: TemplateArgumentListContext) => void;
1954
+ /**
1955
+ * Enter a parse tree produced by `CPP14Parser.templateArgument`.
1956
+ * @param ctx the parse tree
1957
+ */
1958
+ enterTemplateArgument?: (ctx: TemplateArgumentContext) => void;
1959
+ /**
1960
+ * Exit a parse tree produced by `CPP14Parser.templateArgument`.
1961
+ * @param ctx the parse tree
1962
+ */
1963
+ exitTemplateArgument?: (ctx: TemplateArgumentContext) => void;
1964
+ /**
1965
+ * Enter a parse tree produced by `CPP14Parser.typeNameSpecifier`.
1966
+ * @param ctx the parse tree
1967
+ */
1968
+ enterTypeNameSpecifier?: (ctx: TypeNameSpecifierContext) => void;
1969
+ /**
1970
+ * Exit a parse tree produced by `CPP14Parser.typeNameSpecifier`.
1971
+ * @param ctx the parse tree
1972
+ */
1973
+ exitTypeNameSpecifier?: (ctx: TypeNameSpecifierContext) => void;
1974
+ /**
1975
+ * Enter a parse tree produced by `CPP14Parser.explicitInstantiation`.
1976
+ * @param ctx the parse tree
1977
+ */
1978
+ enterExplicitInstantiation?: (ctx: ExplicitInstantiationContext) => void;
1979
+ /**
1980
+ * Exit a parse tree produced by `CPP14Parser.explicitInstantiation`.
1981
+ * @param ctx the parse tree
1982
+ */
1983
+ exitExplicitInstantiation?: (ctx: ExplicitInstantiationContext) => void;
1984
+ /**
1985
+ * Enter a parse tree produced by `CPP14Parser.explicitSpecialization`.
1986
+ * @param ctx the parse tree
1987
+ */
1988
+ enterExplicitSpecialization?: (ctx: ExplicitSpecializationContext) => void;
1989
+ /**
1990
+ * Exit a parse tree produced by `CPP14Parser.explicitSpecialization`.
1991
+ * @param ctx the parse tree
1992
+ */
1993
+ exitExplicitSpecialization?: (ctx: ExplicitSpecializationContext) => void;
1994
+ /**
1995
+ * Enter a parse tree produced by `CPP14Parser.tryBlock`.
1996
+ * @param ctx the parse tree
1997
+ */
1998
+ enterTryBlock?: (ctx: TryBlockContext) => void;
1999
+ /**
2000
+ * Exit a parse tree produced by `CPP14Parser.tryBlock`.
2001
+ * @param ctx the parse tree
2002
+ */
2003
+ exitTryBlock?: (ctx: TryBlockContext) => void;
2004
+ /**
2005
+ * Enter a parse tree produced by `CPP14Parser.functionTryBlock`.
2006
+ * @param ctx the parse tree
2007
+ */
2008
+ enterFunctionTryBlock?: (ctx: FunctionTryBlockContext) => void;
2009
+ /**
2010
+ * Exit a parse tree produced by `CPP14Parser.functionTryBlock`.
2011
+ * @param ctx the parse tree
2012
+ */
2013
+ exitFunctionTryBlock?: (ctx: FunctionTryBlockContext) => void;
2014
+ /**
2015
+ * Enter a parse tree produced by `CPP14Parser.handlerSeq`.
2016
+ * @param ctx the parse tree
2017
+ */
2018
+ enterHandlerSeq?: (ctx: HandlerSeqContext) => void;
2019
+ /**
2020
+ * Exit a parse tree produced by `CPP14Parser.handlerSeq`.
2021
+ * @param ctx the parse tree
2022
+ */
2023
+ exitHandlerSeq?: (ctx: HandlerSeqContext) => void;
2024
+ /**
2025
+ * Enter a parse tree produced by `CPP14Parser.handler`.
2026
+ * @param ctx the parse tree
2027
+ */
2028
+ enterHandler?: (ctx: HandlerContext) => void;
2029
+ /**
2030
+ * Exit a parse tree produced by `CPP14Parser.handler`.
2031
+ * @param ctx the parse tree
2032
+ */
2033
+ exitHandler?: (ctx: HandlerContext) => void;
2034
+ /**
2035
+ * Enter a parse tree produced by `CPP14Parser.exceptionDeclaration`.
2036
+ * @param ctx the parse tree
2037
+ */
2038
+ enterExceptionDeclaration?: (ctx: ExceptionDeclarationContext) => void;
2039
+ /**
2040
+ * Exit a parse tree produced by `CPP14Parser.exceptionDeclaration`.
2041
+ * @param ctx the parse tree
2042
+ */
2043
+ exitExceptionDeclaration?: (ctx: ExceptionDeclarationContext) => void;
2044
+ /**
2045
+ * Enter a parse tree produced by `CPP14Parser.throwExpression`.
2046
+ * @param ctx the parse tree
2047
+ */
2048
+ enterThrowExpression?: (ctx: ThrowExpressionContext) => void;
2049
+ /**
2050
+ * Exit a parse tree produced by `CPP14Parser.throwExpression`.
2051
+ * @param ctx the parse tree
2052
+ */
2053
+ exitThrowExpression?: (ctx: ThrowExpressionContext) => void;
2054
+ /**
2055
+ * Enter a parse tree produced by `CPP14Parser.exceptionSpecification`.
2056
+ * @param ctx the parse tree
2057
+ */
2058
+ enterExceptionSpecification?: (ctx: ExceptionSpecificationContext) => void;
2059
+ /**
2060
+ * Exit a parse tree produced by `CPP14Parser.exceptionSpecification`.
2061
+ * @param ctx the parse tree
2062
+ */
2063
+ exitExceptionSpecification?: (ctx: ExceptionSpecificationContext) => void;
2064
+ /**
2065
+ * Enter a parse tree produced by `CPP14Parser.dynamicExceptionSpecification`.
2066
+ * @param ctx the parse tree
2067
+ */
2068
+ enterDynamicExceptionSpecification?: (ctx: DynamicExceptionSpecificationContext) => void;
2069
+ /**
2070
+ * Exit a parse tree produced by `CPP14Parser.dynamicExceptionSpecification`.
2071
+ * @param ctx the parse tree
2072
+ */
2073
+ exitDynamicExceptionSpecification?: (ctx: DynamicExceptionSpecificationContext) => void;
2074
+ /**
2075
+ * Enter a parse tree produced by `CPP14Parser.typeIdList`.
2076
+ * @param ctx the parse tree
2077
+ */
2078
+ enterTypeIdList?: (ctx: TypeIdListContext) => void;
2079
+ /**
2080
+ * Exit a parse tree produced by `CPP14Parser.typeIdList`.
2081
+ * @param ctx the parse tree
2082
+ */
2083
+ exitTypeIdList?: (ctx: TypeIdListContext) => void;
2084
+ /**
2085
+ * Enter a parse tree produced by `CPP14Parser.noeExceptSpecification`.
2086
+ * @param ctx the parse tree
2087
+ */
2088
+ enterNoeExceptSpecification?: (ctx: NoeExceptSpecificationContext) => void;
2089
+ /**
2090
+ * Exit a parse tree produced by `CPP14Parser.noeExceptSpecification`.
2091
+ * @param ctx the parse tree
2092
+ */
2093
+ exitNoeExceptSpecification?: (ctx: NoeExceptSpecificationContext) => void;
2094
+ /**
2095
+ * Enter a parse tree produced by `CPP14Parser.theOperator`.
2096
+ * @param ctx the parse tree
2097
+ */
2098
+ enterTheOperator?: (ctx: TheOperatorContext) => void;
2099
+ /**
2100
+ * Exit a parse tree produced by `CPP14Parser.theOperator`.
2101
+ * @param ctx the parse tree
2102
+ */
2103
+ exitTheOperator?: (ctx: TheOperatorContext) => void;
2104
+ /**
2105
+ * Enter a parse tree produced by `CPP14Parser.literal`.
2106
+ * @param ctx the parse tree
2107
+ */
2108
+ enterLiteral?: (ctx: LiteralContext) => void;
2109
+ /**
2110
+ * Exit a parse tree produced by `CPP14Parser.literal`.
2111
+ * @param ctx the parse tree
2112
+ */
2113
+ exitLiteral?: (ctx: LiteralContext) => void;
2114
+
2115
+ visitTerminal(node: TerminalNode): void {}
2116
+ visitErrorNode(node: ErrorNode): void {}
2117
+ enterEveryRule(node: ParserRuleContext): void {}
2118
+ exitEveryRule(node: ParserRuleContext): void {}
2119
+ }
2120
+