@apexdevtools/apex-parser 5.0.0 → 5.1.0-beta.1

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 (79) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +55 -4
  3. package/dist/browser/apex-parser.mjs +64579 -0
  4. package/dist/browser/apex-parser.mjs.map +1 -0
  5. package/dist/browser/apex-parser.umd.js +64784 -0
  6. package/dist/browser/apex-parser.umd.js.map +1 -0
  7. package/dist/cjs/ApexErrorListener.cjs +31 -0
  8. package/dist/cjs/ApexErrorListener.cjs.map +1 -0
  9. package/dist/cjs/ApexParserFactory.cjs +83 -0
  10. package/dist/cjs/ApexParserFactory.cjs.map +1 -0
  11. package/dist/cjs/CaseInsensitiveInputStream.cjs +30 -0
  12. package/dist/cjs/CaseInsensitiveInputStream.cjs.map +1 -0
  13. package/dist/cjs/Check.cjs +172 -0
  14. package/dist/cjs/Check.cjs.map +1 -0
  15. package/dist/cjs/antlr/ApexLexer.cjs +23244 -0
  16. package/dist/cjs/antlr/ApexLexer.cjs.map +1 -0
  17. package/dist/cjs/antlr/ApexParser.cjs +38369 -0
  18. package/dist/cjs/antlr/ApexParser.cjs.map +1 -0
  19. package/dist/cjs/antlr/ApexParserListener.cjs +1915 -0
  20. package/dist/cjs/antlr/ApexParserListener.cjs.map +1 -0
  21. package/dist/cjs/antlr/ApexParserVisitor.cjs +1147 -0
  22. package/dist/cjs/antlr/ApexParserVisitor.cjs.map +1 -0
  23. package/dist/cjs/index.cjs +214 -0
  24. package/dist/cjs/index.cjs.map +1 -0
  25. package/dist/esm/ApexErrorListener.js +27 -0
  26. package/dist/esm/ApexErrorListener.js.map +1 -0
  27. package/dist/esm/ApexParserFactory.js +78 -0
  28. package/dist/esm/ApexParserFactory.js.map +1 -0
  29. package/dist/esm/CaseInsensitiveInputStream.js +28 -0
  30. package/dist/esm/CaseInsensitiveInputStream.js.map +1 -0
  31. package/dist/esm/Check.js +169 -0
  32. package/dist/esm/Check.js.map +1 -0
  33. package/dist/esm/antlr/ApexLexer.js +23240 -0
  34. package/dist/esm/antlr/ApexLexer.js.map +1 -0
  35. package/dist/esm/antlr/ApexParser.js +38179 -0
  36. package/dist/esm/antlr/ApexParser.js.map +1 -0
  37. package/dist/esm/antlr/ApexParserListener.js +1911 -0
  38. package/dist/esm/antlr/ApexParserListener.js.map +1 -0
  39. package/dist/esm/antlr/ApexParserVisitor.js +1143 -0
  40. package/dist/esm/antlr/ApexParserVisitor.js.map +1 -0
  41. package/dist/esm/index.js +9 -0
  42. package/dist/esm/index.js.map +1 -0
  43. package/dist/types/ApexErrorListener.d.cts +26 -0
  44. package/dist/{src → types}/ApexErrorListener.d.ts +4 -3
  45. package/dist/types/ApexParserFactory.d.cts +81 -0
  46. package/dist/{src → types}/ApexParserFactory.d.ts +12 -0
  47. package/dist/types/CaseInsensitiveInputStream.d.ts +14 -0
  48. package/dist/types/Check.d.ts +36 -0
  49. package/dist/types/antlr/ApexLexer.d.cts +275 -0
  50. package/dist/{src → types}/antlr/ApexLexer.d.ts +54 -53
  51. package/dist/types/antlr/ApexParser.d.cts +3126 -0
  52. package/dist/{src → types}/antlr/ApexParser.d.ts +113 -85
  53. package/dist/{src/antlr/ApexParserListener.js → types/antlr/ApexParserListener.d.cts} +568 -366
  54. package/dist/{src → types}/antlr/ApexParserListener.d.ts +22 -0
  55. package/dist/{src/antlr/ApexParserVisitor.js → types/antlr/ApexParserVisitor.d.cts} +379 -185
  56. package/dist/{src → types}/antlr/ApexParserVisitor.d.ts +14 -0
  57. package/dist/types/index.browser.d.cts +8 -0
  58. package/dist/types/index.browser.d.ts +8 -0
  59. package/dist/types/index.d.ts +9 -0
  60. package/package.json +89 -21
  61. package/dist/src/ApexErrorListener.js +0 -61
  62. package/dist/src/ApexErrorListener.js.map +0 -1
  63. package/dist/src/ApexParserFactory.js +0 -116
  64. package/dist/src/ApexParserFactory.js.map +0 -1
  65. package/dist/src/CaseInsensitiveInputStream.js +0 -64
  66. package/dist/src/CaseInsensitiveInputStream.js.map +0 -1
  67. package/dist/src/Check.js +0 -205
  68. package/dist/src/Check.js.map +0 -1
  69. package/dist/src/antlr/ApexLexer.js +0 -1573
  70. package/dist/src/antlr/ApexLexer.js.map +0 -1
  71. package/dist/src/antlr/ApexParser.js +0 -20786
  72. package/dist/src/antlr/ApexParser.js.map +0 -1
  73. package/dist/src/antlr/ApexParserListener.js.map +0 -1
  74. package/dist/src/antlr/ApexParserVisitor.js.map +0 -1
  75. package/dist/src/index.js +0 -37
  76. package/dist/src/index.js.map +0 -1
  77. /package/dist/{src/CaseInsensitiveInputStream.d.ts → types/CaseInsensitiveInputStream.d.cts} +0 -0
  78. /package/dist/{src/Check.d.ts → types/Check.d.cts} +0 -0
  79. /package/dist/{src/index.d.ts → types/index.d.cts} +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApexParserListener.js","sources":["../../../src/antlr/ApexParserListener.ts"],"sourcesContent":["// Generated from ApexParser.g4 by ANTLR 4.13.2\n\nimport {ParseTreeListener} from \"antlr4\";\n\n\nimport { TriggerUnitContext } from \"./ApexParser.js\";\nimport { TriggerCaseContext } from \"./ApexParser.js\";\nimport { TriggerBlockContext } from \"./ApexParser.js\";\nimport { TriggerBlockMemberContext } from \"./ApexParser.js\";\nimport { AnonymousUnitContext } from \"./ApexParser.js\";\nimport { AnonymousBlockContext } from \"./ApexParser.js\";\nimport { AnonymousBlockMemberContext } from \"./ApexParser.js\";\nimport { CompilationUnitContext } from \"./ApexParser.js\";\nimport { TypeDeclarationContext } from \"./ApexParser.js\";\nimport { ClassDeclarationContext } from \"./ApexParser.js\";\nimport { EnumDeclarationContext } from \"./ApexParser.js\";\nimport { EnumConstantsContext } from \"./ApexParser.js\";\nimport { InterfaceDeclarationContext } from \"./ApexParser.js\";\nimport { TypeListContext } from \"./ApexParser.js\";\nimport { ClassBodyContext } from \"./ApexParser.js\";\nimport { InterfaceBodyContext } from \"./ApexParser.js\";\nimport { ClassBodyDeclarationContext } from \"./ApexParser.js\";\nimport { ModifierContext } from \"./ApexParser.js\";\nimport { MemberDeclarationContext } from \"./ApexParser.js\";\nimport { TriggerMemberDeclarationContext } from \"./ApexParser.js\";\nimport { AnonymousMemberDeclarationContext } from \"./ApexParser.js\";\nimport { MethodDeclarationContext } from \"./ApexParser.js\";\nimport { ConstructorDeclarationContext } from \"./ApexParser.js\";\nimport { FieldDeclarationContext } from \"./ApexParser.js\";\nimport { PropertyDeclarationContext } from \"./ApexParser.js\";\nimport { InterfaceMethodDeclarationContext } from \"./ApexParser.js\";\nimport { VariableDeclaratorsContext } from \"./ApexParser.js\";\nimport { VariableDeclaratorContext } from \"./ApexParser.js\";\nimport { ArrayInitializerContext } from \"./ApexParser.js\";\nimport { TypeRefContext } from \"./ApexParser.js\";\nimport { ArraySubscriptsContext } from \"./ApexParser.js\";\nimport { TypeNameContext } from \"./ApexParser.js\";\nimport { TypeArgumentsContext } from \"./ApexParser.js\";\nimport { FormalParametersContext } from \"./ApexParser.js\";\nimport { FormalParameterListContext } from \"./ApexParser.js\";\nimport { FormalParameterContext } from \"./ApexParser.js\";\nimport { QualifiedNameContext } from \"./ApexParser.js\";\nimport { LiteralContext } from \"./ApexParser.js\";\nimport { AnnotationContext } from \"./ApexParser.js\";\nimport { ElementValuePairsContext } from \"./ApexParser.js\";\nimport { ElementValuePairContext } from \"./ApexParser.js\";\nimport { ElementValueContext } from \"./ApexParser.js\";\nimport { ElementValueArrayInitializerContext } from \"./ApexParser.js\";\nimport { BlockContext } from \"./ApexParser.js\";\nimport { LocalVariableDeclarationStatementContext } from \"./ApexParser.js\";\nimport { LocalVariableDeclarationContext } from \"./ApexParser.js\";\nimport { StatementContext } from \"./ApexParser.js\";\nimport { IfStatementContext } from \"./ApexParser.js\";\nimport { SwitchStatementContext } from \"./ApexParser.js\";\nimport { WhenControlContext } from \"./ApexParser.js\";\nimport { WhenValueContext } from \"./ApexParser.js\";\nimport { WhenLiteralContext } from \"./ApexParser.js\";\nimport { ForStatementContext } from \"./ApexParser.js\";\nimport { WhileStatementContext } from \"./ApexParser.js\";\nimport { DoWhileStatementContext } from \"./ApexParser.js\";\nimport { TryStatementContext } from \"./ApexParser.js\";\nimport { ReturnStatementContext } from \"./ApexParser.js\";\nimport { ThrowStatementContext } from \"./ApexParser.js\";\nimport { BreakStatementContext } from \"./ApexParser.js\";\nimport { ContinueStatementContext } from \"./ApexParser.js\";\nimport { AccessLevelContext } from \"./ApexParser.js\";\nimport { InsertStatementContext } from \"./ApexParser.js\";\nimport { UpdateStatementContext } from \"./ApexParser.js\";\nimport { DeleteStatementContext } from \"./ApexParser.js\";\nimport { UndeleteStatementContext } from \"./ApexParser.js\";\nimport { UpsertStatementContext } from \"./ApexParser.js\";\nimport { MergeStatementContext } from \"./ApexParser.js\";\nimport { RunAsStatementContext } from \"./ApexParser.js\";\nimport { ExpressionStatementContext } from \"./ApexParser.js\";\nimport { PropertyBlockContext } from \"./ApexParser.js\";\nimport { GetterContext } from \"./ApexParser.js\";\nimport { SetterContext } from \"./ApexParser.js\";\nimport { CatchClauseContext } from \"./ApexParser.js\";\nimport { FinallyBlockContext } from \"./ApexParser.js\";\nimport { ForControlContext } from \"./ApexParser.js\";\nimport { ForInitContext } from \"./ApexParser.js\";\nimport { EnhancedForControlContext } from \"./ApexParser.js\";\nimport { ForUpdateContext } from \"./ApexParser.js\";\nimport { ParExpressionContext } from \"./ApexParser.js\";\nimport { ExpressionListContext } from \"./ApexParser.js\";\nimport { PrimaryExpressionContext } from \"./ApexParser.js\";\nimport { Arth1ExpressionContext } from \"./ApexParser.js\";\nimport { CoalExpressionContext } from \"./ApexParser.js\";\nimport { DotExpressionContext } from \"./ApexParser.js\";\nimport { BitOrExpressionContext } from \"./ApexParser.js\";\nimport { ArrayExpressionContext } from \"./ApexParser.js\";\nimport { NewExpressionContext } from \"./ApexParser.js\";\nimport { AssignExpressionContext } from \"./ApexParser.js\";\nimport { MethodCallExpressionContext } from \"./ApexParser.js\";\nimport { BitNotExpressionContext } from \"./ApexParser.js\";\nimport { Arth2ExpressionContext } from \"./ApexParser.js\";\nimport { LogAndExpressionContext } from \"./ApexParser.js\";\nimport { CastExpressionContext } from \"./ApexParser.js\";\nimport { BitAndExpressionContext } from \"./ApexParser.js\";\nimport { CmpExpressionContext } from \"./ApexParser.js\";\nimport { BitExpressionContext } from \"./ApexParser.js\";\nimport { LogOrExpressionContext } from \"./ApexParser.js\";\nimport { CondExpressionContext } from \"./ApexParser.js\";\nimport { EqualityExpressionContext } from \"./ApexParser.js\";\nimport { PostOpExpressionContext } from \"./ApexParser.js\";\nimport { NegExpressionContext } from \"./ApexParser.js\";\nimport { PreOpExpressionContext } from \"./ApexParser.js\";\nimport { SubExpressionContext } from \"./ApexParser.js\";\nimport { InstanceOfExpressionContext } from \"./ApexParser.js\";\nimport { ThisPrimaryContext } from \"./ApexParser.js\";\nimport { SuperPrimaryContext } from \"./ApexParser.js\";\nimport { LiteralPrimaryContext } from \"./ApexParser.js\";\nimport { TypeRefPrimaryContext } from \"./ApexParser.js\";\nimport { VoidPrimaryContext } from \"./ApexParser.js\";\nimport { IdPrimaryContext } from \"./ApexParser.js\";\nimport { SoqlPrimaryContext } from \"./ApexParser.js\";\nimport { SoslPrimaryContext } from \"./ApexParser.js\";\nimport { MethodCallContext } from \"./ApexParser.js\";\nimport { DotMethodCallContext } from \"./ApexParser.js\";\nimport { CreatorContext } from \"./ApexParser.js\";\nimport { CreatedNameContext } from \"./ApexParser.js\";\nimport { IdCreatedNamePairContext } from \"./ApexParser.js\";\nimport { NoRestContext } from \"./ApexParser.js\";\nimport { ClassCreatorRestContext } from \"./ApexParser.js\";\nimport { ArrayCreatorRestContext } from \"./ApexParser.js\";\nimport { MapCreatorRestContext } from \"./ApexParser.js\";\nimport { MapCreatorRestPairContext } from \"./ApexParser.js\";\nimport { SetCreatorRestContext } from \"./ApexParser.js\";\nimport { ArgumentsContext } from \"./ApexParser.js\";\nimport { SoqlLiteralContext } from \"./ApexParser.js\";\nimport { QueryContext } from \"./ApexParser.js\";\nimport { SubQueryContext } from \"./ApexParser.js\";\nimport { SelectListContext } from \"./ApexParser.js\";\nimport { SelectEntryContext } from \"./ApexParser.js\";\nimport { FieldNameContext } from \"./ApexParser.js\";\nimport { FromNameListContext } from \"./ApexParser.js\";\nimport { SubFieldListContext } from \"./ApexParser.js\";\nimport { SubFieldEntryContext } from \"./ApexParser.js\";\nimport { SoqlFieldsParameterContext } from \"./ApexParser.js\";\nimport { SoqlFunctionContext } from \"./ApexParser.js\";\nimport { DateFieldNameContext } from \"./ApexParser.js\";\nimport { LocationValueContext } from \"./ApexParser.js\";\nimport { CoordinateValueContext } from \"./ApexParser.js\";\nimport { TypeOfContext } from \"./ApexParser.js\";\nimport { WhenClauseContext } from \"./ApexParser.js\";\nimport { ElseClauseContext } from \"./ApexParser.js\";\nimport { FieldNameListContext } from \"./ApexParser.js\";\nimport { UsingScopeContext } from \"./ApexParser.js\";\nimport { WhereClauseContext } from \"./ApexParser.js\";\nimport { LogicalExpressionContext } from \"./ApexParser.js\";\nimport { ConditionalExpressionContext } from \"./ApexParser.js\";\nimport { FieldExpressionContext } from \"./ApexParser.js\";\nimport { ComparisonOperatorContext } from \"./ApexParser.js\";\nimport { ValueContext } from \"./ApexParser.js\";\nimport { ValueListContext } from \"./ApexParser.js\";\nimport { SignedNumberContext } from \"./ApexParser.js\";\nimport { WithClauseContext } from \"./ApexParser.js\";\nimport { FilteringExpressionContext } from \"./ApexParser.js\";\nimport { DataCategorySelectionContext } from \"./ApexParser.js\";\nimport { DataCategoryNameContext } from \"./ApexParser.js\";\nimport { FilteringSelectorContext } from \"./ApexParser.js\";\nimport { GroupByClauseContext } from \"./ApexParser.js\";\nimport { FieldGroupByListContext } from \"./ApexParser.js\";\nimport { FieldGroupByContext } from \"./ApexParser.js\";\nimport { OrderByClauseContext } from \"./ApexParser.js\";\nimport { FieldOrderListContext } from \"./ApexParser.js\";\nimport { FieldOrderContext } from \"./ApexParser.js\";\nimport { LimitClauseContext } from \"./ApexParser.js\";\nimport { OffsetClauseContext } from \"./ApexParser.js\";\nimport { AllRowsClauseContext } from \"./ApexParser.js\";\nimport { ForClausesContext } from \"./ApexParser.js\";\nimport { BoundExpressionContext } from \"./ApexParser.js\";\nimport { DateFormulaContext } from \"./ApexParser.js\";\nimport { SignedIntegerContext } from \"./ApexParser.js\";\nimport { SoqlIdContext } from \"./ApexParser.js\";\nimport { SoslLiteralContext } from \"./ApexParser.js\";\nimport { SoslLiteralAltContext } from \"./ApexParser.js\";\nimport { SoslClausesContext } from \"./ApexParser.js\";\nimport { SoslWithClauseContext } from \"./ApexParser.js\";\nimport { SearchGroupContext } from \"./ApexParser.js\";\nimport { FieldSpecListContext } from \"./ApexParser.js\";\nimport { FieldSpecContext } from \"./ApexParser.js\";\nimport { FieldListContext } from \"./ApexParser.js\";\nimport { UpdateListContext } from \"./ApexParser.js\";\nimport { UpdateTypeContext } from \"./ApexParser.js\";\nimport { NetworkListContext } from \"./ApexParser.js\";\nimport { SoslIdContext } from \"./ApexParser.js\";\nimport { IdContext } from \"./ApexParser.js\";\nimport { AnyIdContext } from \"./ApexParser.js\";\n\n\n/**\n * This interface defines a complete listener for a parse tree produced by\n * `ApexParser`.\n */\nexport default class ApexParserListener extends ParseTreeListener {\n\t/**\n\t * Enter a parse tree produced by `ApexParser.triggerUnit`.\n\t * @param ctx the parse tree\n\t */\n\tenterTriggerUnit?: (ctx: TriggerUnitContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.triggerUnit`.\n\t * @param ctx the parse tree\n\t */\n\texitTriggerUnit?: (ctx: TriggerUnitContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.triggerCase`.\n\t * @param ctx the parse tree\n\t */\n\tenterTriggerCase?: (ctx: TriggerCaseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.triggerCase`.\n\t * @param ctx the parse tree\n\t */\n\texitTriggerCase?: (ctx: TriggerCaseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.triggerBlock`.\n\t * @param ctx the parse tree\n\t */\n\tenterTriggerBlock?: (ctx: TriggerBlockContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.triggerBlock`.\n\t * @param ctx the parse tree\n\t */\n\texitTriggerBlock?: (ctx: TriggerBlockContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.triggerBlockMember`.\n\t * @param ctx the parse tree\n\t */\n\tenterTriggerBlockMember?: (ctx: TriggerBlockMemberContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.triggerBlockMember`.\n\t * @param ctx the parse tree\n\t */\n\texitTriggerBlockMember?: (ctx: TriggerBlockMemberContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.anonymousUnit`.\n\t * @param ctx the parse tree\n\t */\n\tenterAnonymousUnit?: (ctx: AnonymousUnitContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.anonymousUnit`.\n\t * @param ctx the parse tree\n\t */\n\texitAnonymousUnit?: (ctx: AnonymousUnitContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.anonymousBlock`.\n\t * @param ctx the parse tree\n\t */\n\tenterAnonymousBlock?: (ctx: AnonymousBlockContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.anonymousBlock`.\n\t * @param ctx the parse tree\n\t */\n\texitAnonymousBlock?: (ctx: AnonymousBlockContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.anonymousBlockMember`.\n\t * @param ctx the parse tree\n\t */\n\tenterAnonymousBlockMember?: (ctx: AnonymousBlockMemberContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.anonymousBlockMember`.\n\t * @param ctx the parse tree\n\t */\n\texitAnonymousBlockMember?: (ctx: AnonymousBlockMemberContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.compilationUnit`.\n\t * @param ctx the parse tree\n\t */\n\tenterCompilationUnit?: (ctx: CompilationUnitContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.compilationUnit`.\n\t * @param ctx the parse tree\n\t */\n\texitCompilationUnit?: (ctx: CompilationUnitContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.typeDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterTypeDeclaration?: (ctx: TypeDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.typeDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitTypeDeclaration?: (ctx: TypeDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.classDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterClassDeclaration?: (ctx: ClassDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.classDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitClassDeclaration?: (ctx: ClassDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.enumDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterEnumDeclaration?: (ctx: EnumDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.enumDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitEnumDeclaration?: (ctx: EnumDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.enumConstants`.\n\t * @param ctx the parse tree\n\t */\n\tenterEnumConstants?: (ctx: EnumConstantsContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.enumConstants`.\n\t * @param ctx the parse tree\n\t */\n\texitEnumConstants?: (ctx: EnumConstantsContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.interfaceDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterInterfaceDeclaration?: (ctx: InterfaceDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.interfaceDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitInterfaceDeclaration?: (ctx: InterfaceDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.typeList`.\n\t * @param ctx the parse tree\n\t */\n\tenterTypeList?: (ctx: TypeListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.typeList`.\n\t * @param ctx the parse tree\n\t */\n\texitTypeList?: (ctx: TypeListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.classBody`.\n\t * @param ctx the parse tree\n\t */\n\tenterClassBody?: (ctx: ClassBodyContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.classBody`.\n\t * @param ctx the parse tree\n\t */\n\texitClassBody?: (ctx: ClassBodyContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.interfaceBody`.\n\t * @param ctx the parse tree\n\t */\n\tenterInterfaceBody?: (ctx: InterfaceBodyContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.interfaceBody`.\n\t * @param ctx the parse tree\n\t */\n\texitInterfaceBody?: (ctx: InterfaceBodyContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.classBodyDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterClassBodyDeclaration?: (ctx: ClassBodyDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.classBodyDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitClassBodyDeclaration?: (ctx: ClassBodyDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.modifier`.\n\t * @param ctx the parse tree\n\t */\n\tenterModifier?: (ctx: ModifierContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.modifier`.\n\t * @param ctx the parse tree\n\t */\n\texitModifier?: (ctx: ModifierContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.memberDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterMemberDeclaration?: (ctx: MemberDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.memberDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitMemberDeclaration?: (ctx: MemberDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.triggerMemberDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterTriggerMemberDeclaration?: (ctx: TriggerMemberDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.triggerMemberDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitTriggerMemberDeclaration?: (ctx: TriggerMemberDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.anonymousMemberDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterAnonymousMemberDeclaration?: (ctx: AnonymousMemberDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.anonymousMemberDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitAnonymousMemberDeclaration?: (ctx: AnonymousMemberDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.methodDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterMethodDeclaration?: (ctx: MethodDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.methodDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitMethodDeclaration?: (ctx: MethodDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.constructorDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterConstructorDeclaration?: (ctx: ConstructorDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.constructorDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitConstructorDeclaration?: (ctx: ConstructorDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldDeclaration?: (ctx: FieldDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldDeclaration?: (ctx: FieldDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.propertyDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterPropertyDeclaration?: (ctx: PropertyDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.propertyDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitPropertyDeclaration?: (ctx: PropertyDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.interfaceMethodDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterInterfaceMethodDeclaration?: (ctx: InterfaceMethodDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.interfaceMethodDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitInterfaceMethodDeclaration?: (ctx: InterfaceMethodDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.variableDeclarators`.\n\t * @param ctx the parse tree\n\t */\n\tenterVariableDeclarators?: (ctx: VariableDeclaratorsContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.variableDeclarators`.\n\t * @param ctx the parse tree\n\t */\n\texitVariableDeclarators?: (ctx: VariableDeclaratorsContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.variableDeclarator`.\n\t * @param ctx the parse tree\n\t */\n\tenterVariableDeclarator?: (ctx: VariableDeclaratorContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.variableDeclarator`.\n\t * @param ctx the parse tree\n\t */\n\texitVariableDeclarator?: (ctx: VariableDeclaratorContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.arrayInitializer`.\n\t * @param ctx the parse tree\n\t */\n\tenterArrayInitializer?: (ctx: ArrayInitializerContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.arrayInitializer`.\n\t * @param ctx the parse tree\n\t */\n\texitArrayInitializer?: (ctx: ArrayInitializerContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.typeRef`.\n\t * @param ctx the parse tree\n\t */\n\tenterTypeRef?: (ctx: TypeRefContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.typeRef`.\n\t * @param ctx the parse tree\n\t */\n\texitTypeRef?: (ctx: TypeRefContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.arraySubscripts`.\n\t * @param ctx the parse tree\n\t */\n\tenterArraySubscripts?: (ctx: ArraySubscriptsContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.arraySubscripts`.\n\t * @param ctx the parse tree\n\t */\n\texitArraySubscripts?: (ctx: ArraySubscriptsContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.typeName`.\n\t * @param ctx the parse tree\n\t */\n\tenterTypeName?: (ctx: TypeNameContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.typeName`.\n\t * @param ctx the parse tree\n\t */\n\texitTypeName?: (ctx: TypeNameContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.typeArguments`.\n\t * @param ctx the parse tree\n\t */\n\tenterTypeArguments?: (ctx: TypeArgumentsContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.typeArguments`.\n\t * @param ctx the parse tree\n\t */\n\texitTypeArguments?: (ctx: TypeArgumentsContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.formalParameters`.\n\t * @param ctx the parse tree\n\t */\n\tenterFormalParameters?: (ctx: FormalParametersContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.formalParameters`.\n\t * @param ctx the parse tree\n\t */\n\texitFormalParameters?: (ctx: FormalParametersContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.formalParameterList`.\n\t * @param ctx the parse tree\n\t */\n\tenterFormalParameterList?: (ctx: FormalParameterListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.formalParameterList`.\n\t * @param ctx the parse tree\n\t */\n\texitFormalParameterList?: (ctx: FormalParameterListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.formalParameter`.\n\t * @param ctx the parse tree\n\t */\n\tenterFormalParameter?: (ctx: FormalParameterContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.formalParameter`.\n\t * @param ctx the parse tree\n\t */\n\texitFormalParameter?: (ctx: FormalParameterContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.qualifiedName`.\n\t * @param ctx the parse tree\n\t */\n\tenterQualifiedName?: (ctx: QualifiedNameContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.qualifiedName`.\n\t * @param ctx the parse tree\n\t */\n\texitQualifiedName?: (ctx: QualifiedNameContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.literal`.\n\t * @param ctx the parse tree\n\t */\n\tenterLiteral?: (ctx: LiteralContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.literal`.\n\t * @param ctx the parse tree\n\t */\n\texitLiteral?: (ctx: LiteralContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.annotation`.\n\t * @param ctx the parse tree\n\t */\n\tenterAnnotation?: (ctx: AnnotationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.annotation`.\n\t * @param ctx the parse tree\n\t */\n\texitAnnotation?: (ctx: AnnotationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.elementValuePairs`.\n\t * @param ctx the parse tree\n\t */\n\tenterElementValuePairs?: (ctx: ElementValuePairsContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.elementValuePairs`.\n\t * @param ctx the parse tree\n\t */\n\texitElementValuePairs?: (ctx: ElementValuePairsContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.elementValuePair`.\n\t * @param ctx the parse tree\n\t */\n\tenterElementValuePair?: (ctx: ElementValuePairContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.elementValuePair`.\n\t * @param ctx the parse tree\n\t */\n\texitElementValuePair?: (ctx: ElementValuePairContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.elementValue`.\n\t * @param ctx the parse tree\n\t */\n\tenterElementValue?: (ctx: ElementValueContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.elementValue`.\n\t * @param ctx the parse tree\n\t */\n\texitElementValue?: (ctx: ElementValueContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.elementValueArrayInitializer`.\n\t * @param ctx the parse tree\n\t */\n\tenterElementValueArrayInitializer?: (ctx: ElementValueArrayInitializerContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.elementValueArrayInitializer`.\n\t * @param ctx the parse tree\n\t */\n\texitElementValueArrayInitializer?: (ctx: ElementValueArrayInitializerContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.block`.\n\t * @param ctx the parse tree\n\t */\n\tenterBlock?: (ctx: BlockContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.block`.\n\t * @param ctx the parse tree\n\t */\n\texitBlock?: (ctx: BlockContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.localVariableDeclarationStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterLocalVariableDeclarationStatement?: (ctx: LocalVariableDeclarationStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.localVariableDeclarationStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitLocalVariableDeclarationStatement?: (ctx: LocalVariableDeclarationStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.localVariableDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\tenterLocalVariableDeclaration?: (ctx: LocalVariableDeclarationContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.localVariableDeclaration`.\n\t * @param ctx the parse tree\n\t */\n\texitLocalVariableDeclaration?: (ctx: LocalVariableDeclarationContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.statement`.\n\t * @param ctx the parse tree\n\t */\n\tenterStatement?: (ctx: StatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.statement`.\n\t * @param ctx the parse tree\n\t */\n\texitStatement?: (ctx: StatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.ifStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterIfStatement?: (ctx: IfStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.ifStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitIfStatement?: (ctx: IfStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.switchStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterSwitchStatement?: (ctx: SwitchStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.switchStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitSwitchStatement?: (ctx: SwitchStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.whenControl`.\n\t * @param ctx the parse tree\n\t */\n\tenterWhenControl?: (ctx: WhenControlContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.whenControl`.\n\t * @param ctx the parse tree\n\t */\n\texitWhenControl?: (ctx: WhenControlContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.whenValue`.\n\t * @param ctx the parse tree\n\t */\n\tenterWhenValue?: (ctx: WhenValueContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.whenValue`.\n\t * @param ctx the parse tree\n\t */\n\texitWhenValue?: (ctx: WhenValueContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.whenLiteral`.\n\t * @param ctx the parse tree\n\t */\n\tenterWhenLiteral?: (ctx: WhenLiteralContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.whenLiteral`.\n\t * @param ctx the parse tree\n\t */\n\texitWhenLiteral?: (ctx: WhenLiteralContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.forStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterForStatement?: (ctx: ForStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.forStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitForStatement?: (ctx: ForStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.whileStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterWhileStatement?: (ctx: WhileStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.whileStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitWhileStatement?: (ctx: WhileStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.doWhileStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterDoWhileStatement?: (ctx: DoWhileStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.doWhileStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitDoWhileStatement?: (ctx: DoWhileStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.tryStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterTryStatement?: (ctx: TryStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.tryStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitTryStatement?: (ctx: TryStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.returnStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterReturnStatement?: (ctx: ReturnStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.returnStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitReturnStatement?: (ctx: ReturnStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.throwStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterThrowStatement?: (ctx: ThrowStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.throwStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitThrowStatement?: (ctx: ThrowStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.breakStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterBreakStatement?: (ctx: BreakStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.breakStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitBreakStatement?: (ctx: BreakStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.continueStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterContinueStatement?: (ctx: ContinueStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.continueStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitContinueStatement?: (ctx: ContinueStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.accessLevel`.\n\t * @param ctx the parse tree\n\t */\n\tenterAccessLevel?: (ctx: AccessLevelContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.accessLevel`.\n\t * @param ctx the parse tree\n\t */\n\texitAccessLevel?: (ctx: AccessLevelContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.insertStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterInsertStatement?: (ctx: InsertStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.insertStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitInsertStatement?: (ctx: InsertStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.updateStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterUpdateStatement?: (ctx: UpdateStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.updateStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitUpdateStatement?: (ctx: UpdateStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.deleteStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterDeleteStatement?: (ctx: DeleteStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.deleteStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitDeleteStatement?: (ctx: DeleteStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.undeleteStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterUndeleteStatement?: (ctx: UndeleteStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.undeleteStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitUndeleteStatement?: (ctx: UndeleteStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.upsertStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterUpsertStatement?: (ctx: UpsertStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.upsertStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitUpsertStatement?: (ctx: UpsertStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.mergeStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterMergeStatement?: (ctx: MergeStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.mergeStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitMergeStatement?: (ctx: MergeStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.runAsStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterRunAsStatement?: (ctx: RunAsStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.runAsStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitRunAsStatement?: (ctx: RunAsStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.expressionStatement`.\n\t * @param ctx the parse tree\n\t */\n\tenterExpressionStatement?: (ctx: ExpressionStatementContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.expressionStatement`.\n\t * @param ctx the parse tree\n\t */\n\texitExpressionStatement?: (ctx: ExpressionStatementContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.propertyBlock`.\n\t * @param ctx the parse tree\n\t */\n\tenterPropertyBlock?: (ctx: PropertyBlockContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.propertyBlock`.\n\t * @param ctx the parse tree\n\t */\n\texitPropertyBlock?: (ctx: PropertyBlockContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.getter`.\n\t * @param ctx the parse tree\n\t */\n\tenterGetter?: (ctx: GetterContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.getter`.\n\t * @param ctx the parse tree\n\t */\n\texitGetter?: (ctx: GetterContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.setter`.\n\t * @param ctx the parse tree\n\t */\n\tenterSetter?: (ctx: SetterContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.setter`.\n\t * @param ctx the parse tree\n\t */\n\texitSetter?: (ctx: SetterContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.catchClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterCatchClause?: (ctx: CatchClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.catchClause`.\n\t * @param ctx the parse tree\n\t */\n\texitCatchClause?: (ctx: CatchClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.finallyBlock`.\n\t * @param ctx the parse tree\n\t */\n\tenterFinallyBlock?: (ctx: FinallyBlockContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.finallyBlock`.\n\t * @param ctx the parse tree\n\t */\n\texitFinallyBlock?: (ctx: FinallyBlockContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.forControl`.\n\t * @param ctx the parse tree\n\t */\n\tenterForControl?: (ctx: ForControlContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.forControl`.\n\t * @param ctx the parse tree\n\t */\n\texitForControl?: (ctx: ForControlContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.forInit`.\n\t * @param ctx the parse tree\n\t */\n\tenterForInit?: (ctx: ForInitContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.forInit`.\n\t * @param ctx the parse tree\n\t */\n\texitForInit?: (ctx: ForInitContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.enhancedForControl`.\n\t * @param ctx the parse tree\n\t */\n\tenterEnhancedForControl?: (ctx: EnhancedForControlContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.enhancedForControl`.\n\t * @param ctx the parse tree\n\t */\n\texitEnhancedForControl?: (ctx: EnhancedForControlContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.forUpdate`.\n\t * @param ctx the parse tree\n\t */\n\tenterForUpdate?: (ctx: ForUpdateContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.forUpdate`.\n\t * @param ctx the parse tree\n\t */\n\texitForUpdate?: (ctx: ForUpdateContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.parExpression`.\n\t * @param ctx the parse tree\n\t */\n\tenterParExpression?: (ctx: ParExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.parExpression`.\n\t * @param ctx the parse tree\n\t */\n\texitParExpression?: (ctx: ParExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.expressionList`.\n\t * @param ctx the parse tree\n\t */\n\tenterExpressionList?: (ctx: ExpressionListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.expressionList`.\n\t * @param ctx the parse tree\n\t */\n\texitExpressionList?: (ctx: ExpressionListContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `primaryExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `primaryExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `arth1Expression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterArth1Expression?: (ctx: Arth1ExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `arth1Expression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitArth1Expression?: (ctx: Arth1ExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `coalExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterCoalExpression?: (ctx: CoalExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `coalExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitCoalExpression?: (ctx: CoalExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `dotExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterDotExpression?: (ctx: DotExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `dotExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitDotExpression?: (ctx: DotExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `bitOrExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterBitOrExpression?: (ctx: BitOrExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `bitOrExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitBitOrExpression?: (ctx: BitOrExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `arrayExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterArrayExpression?: (ctx: ArrayExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `arrayExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitArrayExpression?: (ctx: ArrayExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `newExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterNewExpression?: (ctx: NewExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `newExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitNewExpression?: (ctx: NewExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `assignExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterAssignExpression?: (ctx: AssignExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `assignExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitAssignExpression?: (ctx: AssignExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `methodCallExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterMethodCallExpression?: (ctx: MethodCallExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `methodCallExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitMethodCallExpression?: (ctx: MethodCallExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `bitNotExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterBitNotExpression?: (ctx: BitNotExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `bitNotExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitBitNotExpression?: (ctx: BitNotExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `arth2Expression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterArth2Expression?: (ctx: Arth2ExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `arth2Expression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitArth2Expression?: (ctx: Arth2ExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `logAndExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterLogAndExpression?: (ctx: LogAndExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `logAndExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitLogAndExpression?: (ctx: LogAndExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `castExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterCastExpression?: (ctx: CastExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `castExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitCastExpression?: (ctx: CastExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `bitAndExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterBitAndExpression?: (ctx: BitAndExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `bitAndExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitBitAndExpression?: (ctx: BitAndExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `cmpExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterCmpExpression?: (ctx: CmpExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `cmpExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitCmpExpression?: (ctx: CmpExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `bitExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterBitExpression?: (ctx: BitExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `bitExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitBitExpression?: (ctx: BitExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `logOrExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterLogOrExpression?: (ctx: LogOrExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `logOrExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitLogOrExpression?: (ctx: LogOrExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `condExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterCondExpression?: (ctx: CondExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `condExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitCondExpression?: (ctx: CondExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `equalityExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterEqualityExpression?: (ctx: EqualityExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `equalityExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitEqualityExpression?: (ctx: EqualityExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `postOpExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterPostOpExpression?: (ctx: PostOpExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `postOpExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitPostOpExpression?: (ctx: PostOpExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `negExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterNegExpression?: (ctx: NegExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `negExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitNegExpression?: (ctx: NegExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `preOpExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterPreOpExpression?: (ctx: PreOpExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `preOpExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitPreOpExpression?: (ctx: PreOpExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `subExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterSubExpression?: (ctx: SubExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `subExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitSubExpression?: (ctx: SubExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `instanceOfExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\tenterInstanceOfExpression?: (ctx: InstanceOfExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `instanceOfExpression`\n\t * labeled alternative in `ApexParser.expression`.\n\t * @param ctx the parse tree\n\t */\n\texitInstanceOfExpression?: (ctx: InstanceOfExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `thisPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterThisPrimary?: (ctx: ThisPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `thisPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitThisPrimary?: (ctx: ThisPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `superPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterSuperPrimary?: (ctx: SuperPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `superPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitSuperPrimary?: (ctx: SuperPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `literalPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterLiteralPrimary?: (ctx: LiteralPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `literalPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitLiteralPrimary?: (ctx: LiteralPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `typeRefPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterTypeRefPrimary?: (ctx: TypeRefPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `typeRefPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitTypeRefPrimary?: (ctx: TypeRefPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `voidPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterVoidPrimary?: (ctx: VoidPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `voidPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitVoidPrimary?: (ctx: VoidPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `idPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterIdPrimary?: (ctx: IdPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `idPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitIdPrimary?: (ctx: IdPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `soqlPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoqlPrimary?: (ctx: SoqlPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `soqlPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitSoqlPrimary?: (ctx: SoqlPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by the `soslPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoslPrimary?: (ctx: SoslPrimaryContext) => void;\n\t/**\n\t * Exit a parse tree produced by the `soslPrimary`\n\t * labeled alternative in `ApexParser.primary`.\n\t * @param ctx the parse tree\n\t */\n\texitSoslPrimary?: (ctx: SoslPrimaryContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.methodCall`.\n\t * @param ctx the parse tree\n\t */\n\tenterMethodCall?: (ctx: MethodCallContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.methodCall`.\n\t * @param ctx the parse tree\n\t */\n\texitMethodCall?: (ctx: MethodCallContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.dotMethodCall`.\n\t * @param ctx the parse tree\n\t */\n\tenterDotMethodCall?: (ctx: DotMethodCallContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.dotMethodCall`.\n\t * @param ctx the parse tree\n\t */\n\texitDotMethodCall?: (ctx: DotMethodCallContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.creator`.\n\t * @param ctx the parse tree\n\t */\n\tenterCreator?: (ctx: CreatorContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.creator`.\n\t * @param ctx the parse tree\n\t */\n\texitCreator?: (ctx: CreatorContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.createdName`.\n\t * @param ctx the parse tree\n\t */\n\tenterCreatedName?: (ctx: CreatedNameContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.createdName`.\n\t * @param ctx the parse tree\n\t */\n\texitCreatedName?: (ctx: CreatedNameContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.idCreatedNamePair`.\n\t * @param ctx the parse tree\n\t */\n\tenterIdCreatedNamePair?: (ctx: IdCreatedNamePairContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.idCreatedNamePair`.\n\t * @param ctx the parse tree\n\t */\n\texitIdCreatedNamePair?: (ctx: IdCreatedNamePairContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.noRest`.\n\t * @param ctx the parse tree\n\t */\n\tenterNoRest?: (ctx: NoRestContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.noRest`.\n\t * @param ctx the parse tree\n\t */\n\texitNoRest?: (ctx: NoRestContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.classCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\tenterClassCreatorRest?: (ctx: ClassCreatorRestContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.classCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\texitClassCreatorRest?: (ctx: ClassCreatorRestContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.arrayCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\tenterArrayCreatorRest?: (ctx: ArrayCreatorRestContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.arrayCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\texitArrayCreatorRest?: (ctx: ArrayCreatorRestContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.mapCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\tenterMapCreatorRest?: (ctx: MapCreatorRestContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.mapCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\texitMapCreatorRest?: (ctx: MapCreatorRestContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.mapCreatorRestPair`.\n\t * @param ctx the parse tree\n\t */\n\tenterMapCreatorRestPair?: (ctx: MapCreatorRestPairContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.mapCreatorRestPair`.\n\t * @param ctx the parse tree\n\t */\n\texitMapCreatorRestPair?: (ctx: MapCreatorRestPairContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.setCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\tenterSetCreatorRest?: (ctx: SetCreatorRestContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.setCreatorRest`.\n\t * @param ctx the parse tree\n\t */\n\texitSetCreatorRest?: (ctx: SetCreatorRestContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.arguments`.\n\t * @param ctx the parse tree\n\t */\n\tenterArguments?: (ctx: ArgumentsContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.arguments`.\n\t * @param ctx the parse tree\n\t */\n\texitArguments?: (ctx: ArgumentsContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soqlLiteral`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoqlLiteral?: (ctx: SoqlLiteralContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soqlLiteral`.\n\t * @param ctx the parse tree\n\t */\n\texitSoqlLiteral?: (ctx: SoqlLiteralContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.query`.\n\t * @param ctx the parse tree\n\t */\n\tenterQuery?: (ctx: QueryContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.query`.\n\t * @param ctx the parse tree\n\t */\n\texitQuery?: (ctx: QueryContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.subQuery`.\n\t * @param ctx the parse tree\n\t */\n\tenterSubQuery?: (ctx: SubQueryContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.subQuery`.\n\t * @param ctx the parse tree\n\t */\n\texitSubQuery?: (ctx: SubQueryContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.selectList`.\n\t * @param ctx the parse tree\n\t */\n\tenterSelectList?: (ctx: SelectListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.selectList`.\n\t * @param ctx the parse tree\n\t */\n\texitSelectList?: (ctx: SelectListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.selectEntry`.\n\t * @param ctx the parse tree\n\t */\n\tenterSelectEntry?: (ctx: SelectEntryContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.selectEntry`.\n\t * @param ctx the parse tree\n\t */\n\texitSelectEntry?: (ctx: SelectEntryContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldName`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldName?: (ctx: FieldNameContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldName`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldName?: (ctx: FieldNameContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fromNameList`.\n\t * @param ctx the parse tree\n\t */\n\tenterFromNameList?: (ctx: FromNameListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fromNameList`.\n\t * @param ctx the parse tree\n\t */\n\texitFromNameList?: (ctx: FromNameListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.subFieldList`.\n\t * @param ctx the parse tree\n\t */\n\tenterSubFieldList?: (ctx: SubFieldListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.subFieldList`.\n\t * @param ctx the parse tree\n\t */\n\texitSubFieldList?: (ctx: SubFieldListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.subFieldEntry`.\n\t * @param ctx the parse tree\n\t */\n\tenterSubFieldEntry?: (ctx: SubFieldEntryContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.subFieldEntry`.\n\t * @param ctx the parse tree\n\t */\n\texitSubFieldEntry?: (ctx: SubFieldEntryContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soqlFieldsParameter`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoqlFieldsParameter?: (ctx: SoqlFieldsParameterContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soqlFieldsParameter`.\n\t * @param ctx the parse tree\n\t */\n\texitSoqlFieldsParameter?: (ctx: SoqlFieldsParameterContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soqlFunction`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoqlFunction?: (ctx: SoqlFunctionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soqlFunction`.\n\t * @param ctx the parse tree\n\t */\n\texitSoqlFunction?: (ctx: SoqlFunctionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.dateFieldName`.\n\t * @param ctx the parse tree\n\t */\n\tenterDateFieldName?: (ctx: DateFieldNameContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.dateFieldName`.\n\t * @param ctx the parse tree\n\t */\n\texitDateFieldName?: (ctx: DateFieldNameContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.locationValue`.\n\t * @param ctx the parse tree\n\t */\n\tenterLocationValue?: (ctx: LocationValueContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.locationValue`.\n\t * @param ctx the parse tree\n\t */\n\texitLocationValue?: (ctx: LocationValueContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.coordinateValue`.\n\t * @param ctx the parse tree\n\t */\n\tenterCoordinateValue?: (ctx: CoordinateValueContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.coordinateValue`.\n\t * @param ctx the parse tree\n\t */\n\texitCoordinateValue?: (ctx: CoordinateValueContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.typeOf`.\n\t * @param ctx the parse tree\n\t */\n\tenterTypeOf?: (ctx: TypeOfContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.typeOf`.\n\t * @param ctx the parse tree\n\t */\n\texitTypeOf?: (ctx: TypeOfContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.whenClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterWhenClause?: (ctx: WhenClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.whenClause`.\n\t * @param ctx the parse tree\n\t */\n\texitWhenClause?: (ctx: WhenClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.elseClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterElseClause?: (ctx: ElseClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.elseClause`.\n\t * @param ctx the parse tree\n\t */\n\texitElseClause?: (ctx: ElseClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldNameList`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldNameList?: (ctx: FieldNameListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldNameList`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldNameList?: (ctx: FieldNameListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.usingScope`.\n\t * @param ctx the parse tree\n\t */\n\tenterUsingScope?: (ctx: UsingScopeContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.usingScope`.\n\t * @param ctx the parse tree\n\t */\n\texitUsingScope?: (ctx: UsingScopeContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.whereClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterWhereClause?: (ctx: WhereClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.whereClause`.\n\t * @param ctx the parse tree\n\t */\n\texitWhereClause?: (ctx: WhereClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.logicalExpression`.\n\t * @param ctx the parse tree\n\t */\n\tenterLogicalExpression?: (ctx: LogicalExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.logicalExpression`.\n\t * @param ctx the parse tree\n\t */\n\texitLogicalExpression?: (ctx: LogicalExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.conditionalExpression`.\n\t * @param ctx the parse tree\n\t */\n\tenterConditionalExpression?: (ctx: ConditionalExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.conditionalExpression`.\n\t * @param ctx the parse tree\n\t */\n\texitConditionalExpression?: (ctx: ConditionalExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldExpression`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldExpression?: (ctx: FieldExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldExpression`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldExpression?: (ctx: FieldExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.comparisonOperator`.\n\t * @param ctx the parse tree\n\t */\n\tenterComparisonOperator?: (ctx: ComparisonOperatorContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.comparisonOperator`.\n\t * @param ctx the parse tree\n\t */\n\texitComparisonOperator?: (ctx: ComparisonOperatorContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.value`.\n\t * @param ctx the parse tree\n\t */\n\tenterValue?: (ctx: ValueContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.value`.\n\t * @param ctx the parse tree\n\t */\n\texitValue?: (ctx: ValueContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.valueList`.\n\t * @param ctx the parse tree\n\t */\n\tenterValueList?: (ctx: ValueListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.valueList`.\n\t * @param ctx the parse tree\n\t */\n\texitValueList?: (ctx: ValueListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.signedNumber`.\n\t * @param ctx the parse tree\n\t */\n\tenterSignedNumber?: (ctx: SignedNumberContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.signedNumber`.\n\t * @param ctx the parse tree\n\t */\n\texitSignedNumber?: (ctx: SignedNumberContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.withClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterWithClause?: (ctx: WithClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.withClause`.\n\t * @param ctx the parse tree\n\t */\n\texitWithClause?: (ctx: WithClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.filteringExpression`.\n\t * @param ctx the parse tree\n\t */\n\tenterFilteringExpression?: (ctx: FilteringExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.filteringExpression`.\n\t * @param ctx the parse tree\n\t */\n\texitFilteringExpression?: (ctx: FilteringExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.dataCategorySelection`.\n\t * @param ctx the parse tree\n\t */\n\tenterDataCategorySelection?: (ctx: DataCategorySelectionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.dataCategorySelection`.\n\t * @param ctx the parse tree\n\t */\n\texitDataCategorySelection?: (ctx: DataCategorySelectionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.dataCategoryName`.\n\t * @param ctx the parse tree\n\t */\n\tenterDataCategoryName?: (ctx: DataCategoryNameContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.dataCategoryName`.\n\t * @param ctx the parse tree\n\t */\n\texitDataCategoryName?: (ctx: DataCategoryNameContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.filteringSelector`.\n\t * @param ctx the parse tree\n\t */\n\tenterFilteringSelector?: (ctx: FilteringSelectorContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.filteringSelector`.\n\t * @param ctx the parse tree\n\t */\n\texitFilteringSelector?: (ctx: FilteringSelectorContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.groupByClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterGroupByClause?: (ctx: GroupByClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.groupByClause`.\n\t * @param ctx the parse tree\n\t */\n\texitGroupByClause?: (ctx: GroupByClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldGroupByList`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldGroupByList?: (ctx: FieldGroupByListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldGroupByList`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldGroupByList?: (ctx: FieldGroupByListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldGroupBy`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldGroupBy?: (ctx: FieldGroupByContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldGroupBy`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldGroupBy?: (ctx: FieldGroupByContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.orderByClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterOrderByClause?: (ctx: OrderByClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.orderByClause`.\n\t * @param ctx the parse tree\n\t */\n\texitOrderByClause?: (ctx: OrderByClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldOrderList`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldOrderList?: (ctx: FieldOrderListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldOrderList`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldOrderList?: (ctx: FieldOrderListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldOrder`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldOrder?: (ctx: FieldOrderContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldOrder`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldOrder?: (ctx: FieldOrderContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.limitClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterLimitClause?: (ctx: LimitClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.limitClause`.\n\t * @param ctx the parse tree\n\t */\n\texitLimitClause?: (ctx: LimitClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.offsetClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterOffsetClause?: (ctx: OffsetClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.offsetClause`.\n\t * @param ctx the parse tree\n\t */\n\texitOffsetClause?: (ctx: OffsetClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.allRowsClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterAllRowsClause?: (ctx: AllRowsClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.allRowsClause`.\n\t * @param ctx the parse tree\n\t */\n\texitAllRowsClause?: (ctx: AllRowsClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.forClauses`.\n\t * @param ctx the parse tree\n\t */\n\tenterForClauses?: (ctx: ForClausesContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.forClauses`.\n\t * @param ctx the parse tree\n\t */\n\texitForClauses?: (ctx: ForClausesContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.boundExpression`.\n\t * @param ctx the parse tree\n\t */\n\tenterBoundExpression?: (ctx: BoundExpressionContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.boundExpression`.\n\t * @param ctx the parse tree\n\t */\n\texitBoundExpression?: (ctx: BoundExpressionContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.dateFormula`.\n\t * @param ctx the parse tree\n\t */\n\tenterDateFormula?: (ctx: DateFormulaContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.dateFormula`.\n\t * @param ctx the parse tree\n\t */\n\texitDateFormula?: (ctx: DateFormulaContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.signedInteger`.\n\t * @param ctx the parse tree\n\t */\n\tenterSignedInteger?: (ctx: SignedIntegerContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.signedInteger`.\n\t * @param ctx the parse tree\n\t */\n\texitSignedInteger?: (ctx: SignedIntegerContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soqlId`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoqlId?: (ctx: SoqlIdContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soqlId`.\n\t * @param ctx the parse tree\n\t */\n\texitSoqlId?: (ctx: SoqlIdContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soslLiteral`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoslLiteral?: (ctx: SoslLiteralContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soslLiteral`.\n\t * @param ctx the parse tree\n\t */\n\texitSoslLiteral?: (ctx: SoslLiteralContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soslLiteralAlt`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoslLiteralAlt?: (ctx: SoslLiteralAltContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soslLiteralAlt`.\n\t * @param ctx the parse tree\n\t */\n\texitSoslLiteralAlt?: (ctx: SoslLiteralAltContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soslClauses`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoslClauses?: (ctx: SoslClausesContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soslClauses`.\n\t * @param ctx the parse tree\n\t */\n\texitSoslClauses?: (ctx: SoslClausesContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soslWithClause`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoslWithClause?: (ctx: SoslWithClauseContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soslWithClause`.\n\t * @param ctx the parse tree\n\t */\n\texitSoslWithClause?: (ctx: SoslWithClauseContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.searchGroup`.\n\t * @param ctx the parse tree\n\t */\n\tenterSearchGroup?: (ctx: SearchGroupContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.searchGroup`.\n\t * @param ctx the parse tree\n\t */\n\texitSearchGroup?: (ctx: SearchGroupContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldSpecList`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldSpecList?: (ctx: FieldSpecListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldSpecList`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldSpecList?: (ctx: FieldSpecListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldSpec`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldSpec?: (ctx: FieldSpecContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldSpec`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldSpec?: (ctx: FieldSpecContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.fieldList`.\n\t * @param ctx the parse tree\n\t */\n\tenterFieldList?: (ctx: FieldListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.fieldList`.\n\t * @param ctx the parse tree\n\t */\n\texitFieldList?: (ctx: FieldListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.updateList`.\n\t * @param ctx the parse tree\n\t */\n\tenterUpdateList?: (ctx: UpdateListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.updateList`.\n\t * @param ctx the parse tree\n\t */\n\texitUpdateList?: (ctx: UpdateListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.updateType`.\n\t * @param ctx the parse tree\n\t */\n\tenterUpdateType?: (ctx: UpdateTypeContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.updateType`.\n\t * @param ctx the parse tree\n\t */\n\texitUpdateType?: (ctx: UpdateTypeContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.networkList`.\n\t * @param ctx the parse tree\n\t */\n\tenterNetworkList?: (ctx: NetworkListContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.networkList`.\n\t * @param ctx the parse tree\n\t */\n\texitNetworkList?: (ctx: NetworkListContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.soslId`.\n\t * @param ctx the parse tree\n\t */\n\tenterSoslId?: (ctx: SoslIdContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.soslId`.\n\t * @param ctx the parse tree\n\t */\n\texitSoslId?: (ctx: SoslIdContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.id`.\n\t * @param ctx the parse tree\n\t */\n\tenterId?: (ctx: IdContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.id`.\n\t * @param ctx the parse tree\n\t */\n\texitId?: (ctx: IdContext) => void;\n\t/**\n\t * Enter a parse tree produced by `ApexParser.anyId`.\n\t * @param ctx the parse tree\n\t */\n\tenterAnyId?: (ctx: AnyIdContext) => void;\n\t/**\n\t * Exit a parse tree produced by `ApexParser.anyId`.\n\t * @param ctx the parse tree\n\t */\n\texitAnyId?: (ctx: AnyIdContext) => void;\n}\n\n"],"names":[],"mappings":"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AA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,kBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,iBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,kBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,iBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,yBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,wBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,kBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,kBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,iBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,kBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,iBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,mBAAA;AAAA;AAA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"}