@apexdevtools/apex-parser 4.4.1 → 5.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +112 -0
- package/README.md +98 -42
- package/lib/ApexErrorListener.d.ts +25 -0
- package/lib/ApexErrorListener.js +64 -0
- package/lib/ApexErrorListener.js.map +1 -0
- package/lib/ApexParserFactory.d.ts +69 -0
- package/lib/ApexParserFactory.js +125 -0
- package/lib/ApexParserFactory.js.map +1 -0
- package/lib/CaseInsensitiveInputStream.d.ts +11 -13
- package/lib/CaseInsensitiveInputStream.js +22 -28
- package/lib/CaseInsensitiveInputStream.js.map +1 -1
- package/lib/Check.d.ts +36 -0
- package/lib/Check.js +212 -0
- package/lib/Check.js.map +1 -0
- package/lib/{ApexLexer.d.ts → antlr/ApexLexer.d.ts} +11 -18
- package/lib/antlr/ApexLexer.js +1575 -0
- package/lib/antlr/ApexLexer.js.map +1 -0
- package/lib/{ApexParser.d.ts → antlr/ApexParser.d.ts} +1344 -1304
- package/lib/antlr/ApexParser.js +20976 -0
- package/lib/antlr/ApexParser.js.map +1 -0
- package/lib/{ApexParserListener.d.ts → antlr/ApexParserListener.d.ts} +708 -686
- package/lib/antlr/ApexParserListener.js +12 -0
- package/lib/antlr/ApexParserListener.js.map +1 -0
- package/lib/{ApexParserVisitor.d.ts → antlr/ApexParserVisitor.d.ts} +420 -406
- package/lib/antlr/ApexParserVisitor.js +15 -0
- package/lib/antlr/ApexParserVisitor.js.map +1 -0
- package/lib/index.d.ts +8 -24
- package/lib/index.js +13 -140
- package/lib/index.js.map +1 -1
- package/package.json +30 -27
- package/lib/ApexLexer.js +0 -1704
- package/lib/ApexLexer.js.map +0 -1
- package/lib/ApexParser.js +0 -19514
- package/lib/ApexParser.js.map +0 -1
- package/lib/ApexParserListener.js +0 -4
- package/lib/ApexParserListener.js.map +0 -1
- package/lib/ApexParserVisitor.js +0 -4
- package/lib/ApexParserVisitor.js.map +0 -1
- package/lib/ThrowingErrorListener.d.ts +0 -10
- package/lib/ThrowingErrorListener.js +0 -18
- package/lib/ThrowingErrorListener.js.map +0 -1
- package/lib/__tests__/ApexLexerTest.d.ts +0 -1
- package/lib/__tests__/ApexLexerTest.js +0 -48
- package/lib/__tests__/ApexLexerTest.js.map +0 -1
- package/lib/__tests__/ApexListenerTest.d.ts +0 -1
- package/lib/__tests__/ApexListenerTest.js +0 -41
- package/lib/__tests__/ApexListenerTest.js.map +0 -1
- package/lib/__tests__/ApexParserTest.d.ts +0 -1
- package/lib/__tests__/ApexParserTest.js +0 -199
- package/lib/__tests__/ApexParserTest.js.map +0 -1
- package/lib/__tests__/ApexTriggerTest.d.ts +0 -1
- package/lib/__tests__/ApexTriggerTest.js +0 -66
- package/lib/__tests__/ApexTriggerTest.js.map +0 -1
- package/lib/__tests__/ApexVisitorTest.d.ts +0 -1
- package/lib/__tests__/ApexVisitorTest.js +0 -46
- package/lib/__tests__/ApexVisitorTest.js.map +0 -1
- package/lib/__tests__/SOQLParserTest.d.ts +0 -1
- package/lib/__tests__/SOQLParserTest.js +0 -121
- package/lib/__tests__/SOQLParserTest.js.map +0 -1
- package/lib/__tests__/SOSLParserTest.d.ts +0 -1
- package/lib/__tests__/SOSLParserTest.js +0 -101
- package/lib/__tests__/SOSLParserTest.js.map +0 -1
- package/lib/__tests__/SyntaxErrorCounter.d.ts +0 -10
- package/lib/__tests__/SyntaxErrorCounter.js +0 -52
- package/lib/__tests__/SyntaxErrorCounter.js.map +0 -1
- package/lib/__tests__/system/SampleParseSys.d.ts +0 -1
- package/lib/__tests__/system/SampleParseSys.js +0 -75
- package/lib/__tests__/system/SampleParseSys.js.map +0 -1
|
@@ -1,1353 +1,1375 @@
|
|
|
1
|
-
import { ParseTreeListener } from "
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
1
|
+
import { ParseTreeListener } from "antlr4";
|
|
2
|
+
import { TriggerUnitContext } from "./ApexParser.js";
|
|
3
|
+
import { TriggerCaseContext } from "./ApexParser.js";
|
|
4
|
+
import { TriggerBlockContext } from "./ApexParser.js";
|
|
5
|
+
import { TriggerBlockMemberContext } from "./ApexParser.js";
|
|
6
|
+
import { AnonymousUnitContext } from "./ApexParser.js";
|
|
7
|
+
import { AnonymousBlockContext } from "./ApexParser.js";
|
|
8
|
+
import { AnonymousBlockMemberContext } from "./ApexParser.js";
|
|
9
|
+
import { CompilationUnitContext } from "./ApexParser.js";
|
|
10
|
+
import { TypeDeclarationContext } from "./ApexParser.js";
|
|
11
|
+
import { ClassDeclarationContext } from "./ApexParser.js";
|
|
12
|
+
import { EnumDeclarationContext } from "./ApexParser.js";
|
|
13
|
+
import { EnumConstantsContext } from "./ApexParser.js";
|
|
14
|
+
import { InterfaceDeclarationContext } from "./ApexParser.js";
|
|
15
|
+
import { TypeListContext } from "./ApexParser.js";
|
|
16
|
+
import { ClassBodyContext } from "./ApexParser.js";
|
|
17
|
+
import { InterfaceBodyContext } from "./ApexParser.js";
|
|
18
|
+
import { ClassBodyDeclarationContext } from "./ApexParser.js";
|
|
19
|
+
import { ModifierContext } from "./ApexParser.js";
|
|
20
|
+
import { MemberDeclarationContext } from "./ApexParser.js";
|
|
21
|
+
import { TriggerMemberDeclarationContext } from "./ApexParser.js";
|
|
22
|
+
import { AnonymousMemberDeclarationContext } from "./ApexParser.js";
|
|
23
|
+
import { MethodDeclarationContext } from "./ApexParser.js";
|
|
24
|
+
import { ConstructorDeclarationContext } from "./ApexParser.js";
|
|
25
|
+
import { FieldDeclarationContext } from "./ApexParser.js";
|
|
26
|
+
import { PropertyDeclarationContext } from "./ApexParser.js";
|
|
27
|
+
import { InterfaceMethodDeclarationContext } from "./ApexParser.js";
|
|
28
|
+
import { VariableDeclaratorsContext } from "./ApexParser.js";
|
|
29
|
+
import { VariableDeclaratorContext } from "./ApexParser.js";
|
|
30
|
+
import { ArrayInitializerContext } from "./ApexParser.js";
|
|
31
|
+
import { TypeRefContext } from "./ApexParser.js";
|
|
32
|
+
import { ArraySubscriptsContext } from "./ApexParser.js";
|
|
33
|
+
import { TypeNameContext } from "./ApexParser.js";
|
|
34
|
+
import { TypeArgumentsContext } from "./ApexParser.js";
|
|
35
|
+
import { FormalParametersContext } from "./ApexParser.js";
|
|
36
|
+
import { FormalParameterListContext } from "./ApexParser.js";
|
|
37
|
+
import { FormalParameterContext } from "./ApexParser.js";
|
|
38
|
+
import { QualifiedNameContext } from "./ApexParser.js";
|
|
39
|
+
import { LiteralContext } from "./ApexParser.js";
|
|
40
|
+
import { AnnotationContext } from "./ApexParser.js";
|
|
41
|
+
import { ElementValuePairsContext } from "./ApexParser.js";
|
|
42
|
+
import { ElementValuePairContext } from "./ApexParser.js";
|
|
43
|
+
import { ElementValueContext } from "./ApexParser.js";
|
|
44
|
+
import { ElementValueArrayInitializerContext } from "./ApexParser.js";
|
|
45
|
+
import { BlockContext } from "./ApexParser.js";
|
|
46
|
+
import { LocalVariableDeclarationStatementContext } from "./ApexParser.js";
|
|
47
|
+
import { LocalVariableDeclarationContext } from "./ApexParser.js";
|
|
48
|
+
import { StatementContext } from "./ApexParser.js";
|
|
49
|
+
import { IfStatementContext } from "./ApexParser.js";
|
|
50
|
+
import { SwitchStatementContext } from "./ApexParser.js";
|
|
51
|
+
import { WhenControlContext } from "./ApexParser.js";
|
|
52
|
+
import { WhenValueContext } from "./ApexParser.js";
|
|
53
|
+
import { WhenLiteralContext } from "./ApexParser.js";
|
|
54
|
+
import { ForStatementContext } from "./ApexParser.js";
|
|
55
|
+
import { WhileStatementContext } from "./ApexParser.js";
|
|
56
|
+
import { DoWhileStatementContext } from "./ApexParser.js";
|
|
57
|
+
import { TryStatementContext } from "./ApexParser.js";
|
|
58
|
+
import { ReturnStatementContext } from "./ApexParser.js";
|
|
59
|
+
import { ThrowStatementContext } from "./ApexParser.js";
|
|
60
|
+
import { BreakStatementContext } from "./ApexParser.js";
|
|
61
|
+
import { ContinueStatementContext } from "./ApexParser.js";
|
|
62
|
+
import { AccessLevelContext } from "./ApexParser.js";
|
|
63
|
+
import { InsertStatementContext } from "./ApexParser.js";
|
|
64
|
+
import { UpdateStatementContext } from "./ApexParser.js";
|
|
65
|
+
import { DeleteStatementContext } from "./ApexParser.js";
|
|
66
|
+
import { UndeleteStatementContext } from "./ApexParser.js";
|
|
67
|
+
import { UpsertStatementContext } from "./ApexParser.js";
|
|
68
|
+
import { MergeStatementContext } from "./ApexParser.js";
|
|
69
|
+
import { RunAsStatementContext } from "./ApexParser.js";
|
|
70
|
+
import { ExpressionStatementContext } from "./ApexParser.js";
|
|
71
|
+
import { PropertyBlockContext } from "./ApexParser.js";
|
|
72
|
+
import { GetterContext } from "./ApexParser.js";
|
|
73
|
+
import { SetterContext } from "./ApexParser.js";
|
|
74
|
+
import { CatchClauseContext } from "./ApexParser.js";
|
|
75
|
+
import { FinallyBlockContext } from "./ApexParser.js";
|
|
76
|
+
import { ForControlContext } from "./ApexParser.js";
|
|
77
|
+
import { ForInitContext } from "./ApexParser.js";
|
|
78
|
+
import { EnhancedForControlContext } from "./ApexParser.js";
|
|
79
|
+
import { ForUpdateContext } from "./ApexParser.js";
|
|
80
|
+
import { ParExpressionContext } from "./ApexParser.js";
|
|
81
|
+
import { ExpressionListContext } from "./ApexParser.js";
|
|
82
|
+
import { PrimaryExpressionContext } from "./ApexParser.js";
|
|
83
|
+
import { Arth1ExpressionContext } from "./ApexParser.js";
|
|
84
|
+
import { CoalExpressionContext } from "./ApexParser.js";
|
|
85
|
+
import { DotExpressionContext } from "./ApexParser.js";
|
|
86
|
+
import { BitOrExpressionContext } from "./ApexParser.js";
|
|
87
|
+
import { ArrayExpressionContext } from "./ApexParser.js";
|
|
88
|
+
import { NewExpressionContext } from "./ApexParser.js";
|
|
89
|
+
import { AssignExpressionContext } from "./ApexParser.js";
|
|
90
|
+
import { MethodCallExpressionContext } from "./ApexParser.js";
|
|
91
|
+
import { BitNotExpressionContext } from "./ApexParser.js";
|
|
92
|
+
import { Arth2ExpressionContext } from "./ApexParser.js";
|
|
93
|
+
import { LogAndExpressionContext } from "./ApexParser.js";
|
|
94
|
+
import { CastExpressionContext } from "./ApexParser.js";
|
|
95
|
+
import { BitAndExpressionContext } from "./ApexParser.js";
|
|
96
|
+
import { CmpExpressionContext } from "./ApexParser.js";
|
|
97
|
+
import { BitExpressionContext } from "./ApexParser.js";
|
|
98
|
+
import { LogOrExpressionContext } from "./ApexParser.js";
|
|
99
|
+
import { CondExpressionContext } from "./ApexParser.js";
|
|
100
|
+
import { EqualityExpressionContext } from "./ApexParser.js";
|
|
101
|
+
import { PostOpExpressionContext } from "./ApexParser.js";
|
|
102
|
+
import { NegExpressionContext } from "./ApexParser.js";
|
|
103
|
+
import { PreOpExpressionContext } from "./ApexParser.js";
|
|
104
|
+
import { SubExpressionContext } from "./ApexParser.js";
|
|
105
|
+
import { InstanceOfExpressionContext } from "./ApexParser.js";
|
|
106
|
+
import { ThisPrimaryContext } from "./ApexParser.js";
|
|
107
|
+
import { SuperPrimaryContext } from "./ApexParser.js";
|
|
108
|
+
import { LiteralPrimaryContext } from "./ApexParser.js";
|
|
109
|
+
import { TypeRefPrimaryContext } from "./ApexParser.js";
|
|
110
|
+
import { VoidPrimaryContext } from "./ApexParser.js";
|
|
111
|
+
import { IdPrimaryContext } from "./ApexParser.js";
|
|
112
|
+
import { SoqlPrimaryContext } from "./ApexParser.js";
|
|
113
|
+
import { SoslPrimaryContext } from "./ApexParser.js";
|
|
114
|
+
import { MethodCallContext } from "./ApexParser.js";
|
|
115
|
+
import { DotMethodCallContext } from "./ApexParser.js";
|
|
116
|
+
import { CreatorContext } from "./ApexParser.js";
|
|
117
|
+
import { CreatedNameContext } from "./ApexParser.js";
|
|
118
|
+
import { IdCreatedNamePairContext } from "./ApexParser.js";
|
|
119
|
+
import { NoRestContext } from "./ApexParser.js";
|
|
120
|
+
import { ClassCreatorRestContext } from "./ApexParser.js";
|
|
121
|
+
import { ArrayCreatorRestContext } from "./ApexParser.js";
|
|
122
|
+
import { MapCreatorRestContext } from "./ApexParser.js";
|
|
123
|
+
import { MapCreatorRestPairContext } from "./ApexParser.js";
|
|
124
|
+
import { SetCreatorRestContext } from "./ApexParser.js";
|
|
125
|
+
import { ArgumentsContext } from "./ApexParser.js";
|
|
126
|
+
import { SoqlLiteralContext } from "./ApexParser.js";
|
|
127
|
+
import { QueryContext } from "./ApexParser.js";
|
|
128
|
+
import { SubQueryContext } from "./ApexParser.js";
|
|
129
|
+
import { SelectListContext } from "./ApexParser.js";
|
|
130
|
+
import { SelectEntryContext } from "./ApexParser.js";
|
|
131
|
+
import { FieldNameContext } from "./ApexParser.js";
|
|
132
|
+
import { FromNameListContext } from "./ApexParser.js";
|
|
133
|
+
import { SubFieldListContext } from "./ApexParser.js";
|
|
134
|
+
import { SubFieldEntryContext } from "./ApexParser.js";
|
|
135
|
+
import { SoqlFieldsParameterContext } from "./ApexParser.js";
|
|
136
|
+
import { SoqlFunctionContext } from "./ApexParser.js";
|
|
137
|
+
import { DateFieldNameContext } from "./ApexParser.js";
|
|
138
|
+
import { LocationValueContext } from "./ApexParser.js";
|
|
139
|
+
import { CoordinateValueContext } from "./ApexParser.js";
|
|
140
|
+
import { TypeOfContext } from "./ApexParser.js";
|
|
141
|
+
import { WhenClauseContext } from "./ApexParser.js";
|
|
142
|
+
import { ElseClauseContext } from "./ApexParser.js";
|
|
143
|
+
import { FieldNameListContext } from "./ApexParser.js";
|
|
144
|
+
import { UsingScopeContext } from "./ApexParser.js";
|
|
145
|
+
import { WhereClauseContext } from "./ApexParser.js";
|
|
146
|
+
import { LogicalExpressionContext } from "./ApexParser.js";
|
|
147
|
+
import { ConditionalExpressionContext } from "./ApexParser.js";
|
|
148
|
+
import { FieldExpressionContext } from "./ApexParser.js";
|
|
149
|
+
import { ComparisonOperatorContext } from "./ApexParser.js";
|
|
150
|
+
import { ValueContext } from "./ApexParser.js";
|
|
151
|
+
import { ValueListContext } from "./ApexParser.js";
|
|
152
|
+
import { SignedNumberContext } from "./ApexParser.js";
|
|
153
|
+
import { WithClauseContext } from "./ApexParser.js";
|
|
154
|
+
import { FilteringExpressionContext } from "./ApexParser.js";
|
|
155
|
+
import { DataCategorySelectionContext } from "./ApexParser.js";
|
|
156
|
+
import { DataCategoryNameContext } from "./ApexParser.js";
|
|
157
|
+
import { FilteringSelectorContext } from "./ApexParser.js";
|
|
158
|
+
import { GroupByClauseContext } from "./ApexParser.js";
|
|
159
|
+
import { OrderByClauseContext } from "./ApexParser.js";
|
|
160
|
+
import { FieldOrderListContext } from "./ApexParser.js";
|
|
161
|
+
import { FieldOrderContext } from "./ApexParser.js";
|
|
162
|
+
import { LimitClauseContext } from "./ApexParser.js";
|
|
163
|
+
import { OffsetClauseContext } from "./ApexParser.js";
|
|
164
|
+
import { AllRowsClauseContext } from "./ApexParser.js";
|
|
165
|
+
import { ForClausesContext } from "./ApexParser.js";
|
|
166
|
+
import { BoundExpressionContext } from "./ApexParser.js";
|
|
167
|
+
import { DateFormulaContext } from "./ApexParser.js";
|
|
168
|
+
import { SignedIntegerContext } from "./ApexParser.js";
|
|
169
|
+
import { SoqlIdContext } from "./ApexParser.js";
|
|
170
|
+
import { SoslLiteralContext } from "./ApexParser.js";
|
|
171
|
+
import { SoslLiteralAltContext } from "./ApexParser.js";
|
|
172
|
+
import { SoslClausesContext } from "./ApexParser.js";
|
|
173
|
+
import { SoslWithClauseContext } from "./ApexParser.js";
|
|
174
|
+
import { SearchGroupContext } from "./ApexParser.js";
|
|
175
|
+
import { FieldSpecListContext } from "./ApexParser.js";
|
|
176
|
+
import { FieldSpecContext } from "./ApexParser.js";
|
|
177
|
+
import { FieldListContext } from "./ApexParser.js";
|
|
178
|
+
import { UpdateListContext } from "./ApexParser.js";
|
|
179
|
+
import { UpdateTypeContext } from "./ApexParser.js";
|
|
180
|
+
import { NetworkListContext } from "./ApexParser.js";
|
|
181
|
+
import { SoslIdContext } from "./ApexParser.js";
|
|
182
|
+
import { IdContext } from "./ApexParser.js";
|
|
183
|
+
import { AnyIdContext } from "./ApexParser.js";
|
|
182
184
|
/**
|
|
183
185
|
* This interface defines a complete listener for a parse tree produced by
|
|
184
186
|
* `ApexParser`.
|
|
185
187
|
*/
|
|
186
|
-
export
|
|
188
|
+
export default class ApexParserListener extends ParseTreeListener {
|
|
187
189
|
/**
|
|
188
|
-
* Enter a parse tree produced by
|
|
189
|
-
* labeled alternative in `ApexParser.primary`.
|
|
190
|
+
* Enter a parse tree produced by `ApexParser.triggerUnit`.
|
|
190
191
|
* @param ctx the parse tree
|
|
191
192
|
*/
|
|
192
|
-
|
|
193
|
+
enterTriggerUnit?: (ctx: TriggerUnitContext) => void;
|
|
193
194
|
/**
|
|
194
|
-
* Exit a parse tree produced by
|
|
195
|
-
* labeled alternative in `ApexParser.primary`.
|
|
195
|
+
* Exit a parse tree produced by `ApexParser.triggerUnit`.
|
|
196
196
|
* @param ctx the parse tree
|
|
197
197
|
*/
|
|
198
|
-
|
|
198
|
+
exitTriggerUnit?: (ctx: TriggerUnitContext) => void;
|
|
199
199
|
/**
|
|
200
|
-
* Enter a parse tree produced by
|
|
201
|
-
* labeled alternative in `ApexParser.primary`.
|
|
200
|
+
* Enter a parse tree produced by `ApexParser.triggerCase`.
|
|
202
201
|
* @param ctx the parse tree
|
|
203
202
|
*/
|
|
204
|
-
|
|
203
|
+
enterTriggerCase?: (ctx: TriggerCaseContext) => void;
|
|
205
204
|
/**
|
|
206
|
-
* Exit a parse tree produced by
|
|
207
|
-
* labeled alternative in `ApexParser.primary`.
|
|
205
|
+
* Exit a parse tree produced by `ApexParser.triggerCase`.
|
|
208
206
|
* @param ctx the parse tree
|
|
209
207
|
*/
|
|
210
|
-
|
|
208
|
+
exitTriggerCase?: (ctx: TriggerCaseContext) => void;
|
|
211
209
|
/**
|
|
212
|
-
* Enter a parse tree produced by
|
|
213
|
-
* labeled alternative in `ApexParser.primary`.
|
|
210
|
+
* Enter a parse tree produced by `ApexParser.triggerBlock`.
|
|
214
211
|
* @param ctx the parse tree
|
|
215
212
|
*/
|
|
216
|
-
|
|
213
|
+
enterTriggerBlock?: (ctx: TriggerBlockContext) => void;
|
|
217
214
|
/**
|
|
218
|
-
* Exit a parse tree produced by
|
|
219
|
-
* labeled alternative in `ApexParser.primary`.
|
|
215
|
+
* Exit a parse tree produced by `ApexParser.triggerBlock`.
|
|
220
216
|
* @param ctx the parse tree
|
|
221
217
|
*/
|
|
222
|
-
|
|
218
|
+
exitTriggerBlock?: (ctx: TriggerBlockContext) => void;
|
|
223
219
|
/**
|
|
224
|
-
* Enter a parse tree produced by
|
|
225
|
-
* labeled alternative in `ApexParser.primary`.
|
|
220
|
+
* Enter a parse tree produced by `ApexParser.triggerBlockMember`.
|
|
226
221
|
* @param ctx the parse tree
|
|
227
222
|
*/
|
|
228
|
-
|
|
223
|
+
enterTriggerBlockMember?: (ctx: TriggerBlockMemberContext) => void;
|
|
229
224
|
/**
|
|
230
|
-
* Exit a parse tree produced by
|
|
231
|
-
* labeled alternative in `ApexParser.primary`.
|
|
225
|
+
* Exit a parse tree produced by `ApexParser.triggerBlockMember`.
|
|
232
226
|
* @param ctx the parse tree
|
|
233
227
|
*/
|
|
234
|
-
|
|
228
|
+
exitTriggerBlockMember?: (ctx: TriggerBlockMemberContext) => void;
|
|
235
229
|
/**
|
|
236
|
-
* Enter a parse tree produced by
|
|
237
|
-
* labeled alternative in `ApexParser.primary`.
|
|
230
|
+
* Enter a parse tree produced by `ApexParser.anonymousUnit`.
|
|
238
231
|
* @param ctx the parse tree
|
|
239
232
|
*/
|
|
240
|
-
|
|
233
|
+
enterAnonymousUnit?: (ctx: AnonymousUnitContext) => void;
|
|
241
234
|
/**
|
|
242
|
-
* Exit a parse tree produced by
|
|
243
|
-
* labeled alternative in `ApexParser.primary`.
|
|
235
|
+
* Exit a parse tree produced by `ApexParser.anonymousUnit`.
|
|
244
236
|
* @param ctx the parse tree
|
|
245
237
|
*/
|
|
246
|
-
|
|
238
|
+
exitAnonymousUnit?: (ctx: AnonymousUnitContext) => void;
|
|
247
239
|
/**
|
|
248
|
-
* Enter a parse tree produced by
|
|
249
|
-
* labeled alternative in `ApexParser.primary`.
|
|
240
|
+
* Enter a parse tree produced by `ApexParser.anonymousBlock`.
|
|
250
241
|
* @param ctx the parse tree
|
|
251
242
|
*/
|
|
252
|
-
|
|
243
|
+
enterAnonymousBlock?: (ctx: AnonymousBlockContext) => void;
|
|
253
244
|
/**
|
|
254
|
-
* Exit a parse tree produced by
|
|
255
|
-
* labeled alternative in `ApexParser.primary`.
|
|
245
|
+
* Exit a parse tree produced by `ApexParser.anonymousBlock`.
|
|
256
246
|
* @param ctx the parse tree
|
|
257
247
|
*/
|
|
258
|
-
|
|
248
|
+
exitAnonymousBlock?: (ctx: AnonymousBlockContext) => void;
|
|
259
249
|
/**
|
|
260
|
-
* Enter a parse tree produced by
|
|
261
|
-
* labeled alternative in `ApexParser.primary`.
|
|
250
|
+
* Enter a parse tree produced by `ApexParser.anonymousBlockMember`.
|
|
262
251
|
* @param ctx the parse tree
|
|
263
252
|
*/
|
|
264
|
-
|
|
253
|
+
enterAnonymousBlockMember?: (ctx: AnonymousBlockMemberContext) => void;
|
|
265
254
|
/**
|
|
266
|
-
* Exit a parse tree produced by
|
|
267
|
-
* labeled alternative in `ApexParser.primary`.
|
|
255
|
+
* Exit a parse tree produced by `ApexParser.anonymousBlockMember`.
|
|
268
256
|
* @param ctx the parse tree
|
|
269
257
|
*/
|
|
270
|
-
|
|
258
|
+
exitAnonymousBlockMember?: (ctx: AnonymousBlockMemberContext) => void;
|
|
271
259
|
/**
|
|
272
|
-
* Enter a parse tree produced by
|
|
273
|
-
* labeled alternative in `ApexParser.primary`.
|
|
260
|
+
* Enter a parse tree produced by `ApexParser.compilationUnit`.
|
|
274
261
|
* @param ctx the parse tree
|
|
275
262
|
*/
|
|
276
|
-
|
|
263
|
+
enterCompilationUnit?: (ctx: CompilationUnitContext) => void;
|
|
277
264
|
/**
|
|
278
|
-
* Exit a parse tree produced by
|
|
279
|
-
* labeled alternative in `ApexParser.primary`.
|
|
265
|
+
* Exit a parse tree produced by `ApexParser.compilationUnit`.
|
|
280
266
|
* @param ctx the parse tree
|
|
281
267
|
*/
|
|
282
|
-
|
|
268
|
+
exitCompilationUnit?: (ctx: CompilationUnitContext) => void;
|
|
283
269
|
/**
|
|
284
|
-
* Enter a parse tree produced by
|
|
285
|
-
* labeled alternative in `ApexParser.expression`.
|
|
270
|
+
* Enter a parse tree produced by `ApexParser.typeDeclaration`.
|
|
286
271
|
* @param ctx the parse tree
|
|
287
272
|
*/
|
|
288
|
-
|
|
273
|
+
enterTypeDeclaration?: (ctx: TypeDeclarationContext) => void;
|
|
289
274
|
/**
|
|
290
|
-
* Exit a parse tree produced by
|
|
291
|
-
* labeled alternative in `ApexParser.expression`.
|
|
275
|
+
* Exit a parse tree produced by `ApexParser.typeDeclaration`.
|
|
292
276
|
* @param ctx the parse tree
|
|
293
277
|
*/
|
|
294
|
-
|
|
278
|
+
exitTypeDeclaration?: (ctx: TypeDeclarationContext) => void;
|
|
295
279
|
/**
|
|
296
|
-
* Enter a parse tree produced by
|
|
297
|
-
* labeled alternative in `ApexParser.expression`.
|
|
280
|
+
* Enter a parse tree produced by `ApexParser.classDeclaration`.
|
|
298
281
|
* @param ctx the parse tree
|
|
299
282
|
*/
|
|
300
|
-
|
|
283
|
+
enterClassDeclaration?: (ctx: ClassDeclarationContext) => void;
|
|
301
284
|
/**
|
|
302
|
-
* Exit a parse tree produced by
|
|
303
|
-
* labeled alternative in `ApexParser.expression`.
|
|
285
|
+
* Exit a parse tree produced by `ApexParser.classDeclaration`.
|
|
304
286
|
* @param ctx the parse tree
|
|
305
287
|
*/
|
|
306
|
-
|
|
288
|
+
exitClassDeclaration?: (ctx: ClassDeclarationContext) => void;
|
|
307
289
|
/**
|
|
308
|
-
* Enter a parse tree produced by
|
|
309
|
-
* labeled alternative in `ApexParser.expression`.
|
|
290
|
+
* Enter a parse tree produced by `ApexParser.enumDeclaration`.
|
|
310
291
|
* @param ctx the parse tree
|
|
311
292
|
*/
|
|
312
|
-
|
|
293
|
+
enterEnumDeclaration?: (ctx: EnumDeclarationContext) => void;
|
|
313
294
|
/**
|
|
314
|
-
* Exit a parse tree produced by
|
|
315
|
-
* labeled alternative in `ApexParser.expression`.
|
|
295
|
+
* Exit a parse tree produced by `ApexParser.enumDeclaration`.
|
|
316
296
|
* @param ctx the parse tree
|
|
317
297
|
*/
|
|
318
|
-
|
|
298
|
+
exitEnumDeclaration?: (ctx: EnumDeclarationContext) => void;
|
|
319
299
|
/**
|
|
320
|
-
* Enter a parse tree produced by
|
|
321
|
-
* labeled alternative in `ApexParser.expression`.
|
|
300
|
+
* Enter a parse tree produced by `ApexParser.enumConstants`.
|
|
322
301
|
* @param ctx the parse tree
|
|
323
302
|
*/
|
|
324
|
-
|
|
303
|
+
enterEnumConstants?: (ctx: EnumConstantsContext) => void;
|
|
325
304
|
/**
|
|
326
|
-
* Exit a parse tree produced by
|
|
327
|
-
* labeled alternative in `ApexParser.expression`.
|
|
305
|
+
* Exit a parse tree produced by `ApexParser.enumConstants`.
|
|
328
306
|
* @param ctx the parse tree
|
|
329
307
|
*/
|
|
330
|
-
|
|
308
|
+
exitEnumConstants?: (ctx: EnumConstantsContext) => void;
|
|
331
309
|
/**
|
|
332
|
-
* Enter a parse tree produced by
|
|
333
|
-
* labeled alternative in `ApexParser.expression`.
|
|
310
|
+
* Enter a parse tree produced by `ApexParser.interfaceDeclaration`.
|
|
334
311
|
* @param ctx the parse tree
|
|
335
312
|
*/
|
|
336
|
-
|
|
313
|
+
enterInterfaceDeclaration?: (ctx: InterfaceDeclarationContext) => void;
|
|
337
314
|
/**
|
|
338
|
-
* Exit a parse tree produced by
|
|
339
|
-
* labeled alternative in `ApexParser.expression`.
|
|
315
|
+
* Exit a parse tree produced by `ApexParser.interfaceDeclaration`.
|
|
340
316
|
* @param ctx the parse tree
|
|
341
317
|
*/
|
|
342
|
-
|
|
318
|
+
exitInterfaceDeclaration?: (ctx: InterfaceDeclarationContext) => void;
|
|
343
319
|
/**
|
|
344
|
-
* Enter a parse tree produced by
|
|
345
|
-
* labeled alternative in `ApexParser.expression`.
|
|
320
|
+
* Enter a parse tree produced by `ApexParser.typeList`.
|
|
346
321
|
* @param ctx the parse tree
|
|
347
322
|
*/
|
|
348
|
-
|
|
323
|
+
enterTypeList?: (ctx: TypeListContext) => void;
|
|
349
324
|
/**
|
|
350
|
-
* Exit a parse tree produced by
|
|
351
|
-
* labeled alternative in `ApexParser.expression`.
|
|
325
|
+
* Exit a parse tree produced by `ApexParser.typeList`.
|
|
352
326
|
* @param ctx the parse tree
|
|
353
327
|
*/
|
|
354
|
-
|
|
328
|
+
exitTypeList?: (ctx: TypeListContext) => void;
|
|
355
329
|
/**
|
|
356
|
-
* Enter a parse tree produced by
|
|
357
|
-
* labeled alternative in `ApexParser.expression`.
|
|
330
|
+
* Enter a parse tree produced by `ApexParser.classBody`.
|
|
358
331
|
* @param ctx the parse tree
|
|
359
332
|
*/
|
|
360
|
-
|
|
333
|
+
enterClassBody?: (ctx: ClassBodyContext) => void;
|
|
361
334
|
/**
|
|
362
|
-
* Exit a parse tree produced by
|
|
363
|
-
* labeled alternative in `ApexParser.expression`.
|
|
335
|
+
* Exit a parse tree produced by `ApexParser.classBody`.
|
|
364
336
|
* @param ctx the parse tree
|
|
365
337
|
*/
|
|
366
|
-
|
|
338
|
+
exitClassBody?: (ctx: ClassBodyContext) => void;
|
|
367
339
|
/**
|
|
368
|
-
* Enter a parse tree produced by
|
|
369
|
-
* labeled alternative in `ApexParser.expression`.
|
|
340
|
+
* Enter a parse tree produced by `ApexParser.interfaceBody`.
|
|
370
341
|
* @param ctx the parse tree
|
|
371
342
|
*/
|
|
372
|
-
|
|
343
|
+
enterInterfaceBody?: (ctx: InterfaceBodyContext) => void;
|
|
373
344
|
/**
|
|
374
|
-
* Exit a parse tree produced by
|
|
375
|
-
* labeled alternative in `ApexParser.expression`.
|
|
345
|
+
* Exit a parse tree produced by `ApexParser.interfaceBody`.
|
|
376
346
|
* @param ctx the parse tree
|
|
377
347
|
*/
|
|
378
|
-
|
|
348
|
+
exitInterfaceBody?: (ctx: InterfaceBodyContext) => void;
|
|
379
349
|
/**
|
|
380
|
-
* Enter a parse tree produced by
|
|
381
|
-
* labeled alternative in `ApexParser.expression`.
|
|
350
|
+
* Enter a parse tree produced by `ApexParser.classBodyDeclaration`.
|
|
382
351
|
* @param ctx the parse tree
|
|
383
352
|
*/
|
|
384
|
-
|
|
353
|
+
enterClassBodyDeclaration?: (ctx: ClassBodyDeclarationContext) => void;
|
|
385
354
|
/**
|
|
386
|
-
* Exit a parse tree produced by
|
|
387
|
-
* labeled alternative in `ApexParser.expression`.
|
|
355
|
+
* Exit a parse tree produced by `ApexParser.classBodyDeclaration`.
|
|
388
356
|
* @param ctx the parse tree
|
|
389
357
|
*/
|
|
390
|
-
|
|
358
|
+
exitClassBodyDeclaration?: (ctx: ClassBodyDeclarationContext) => void;
|
|
391
359
|
/**
|
|
392
|
-
* Enter a parse tree produced by
|
|
393
|
-
* labeled alternative in `ApexParser.expression`.
|
|
360
|
+
* Enter a parse tree produced by `ApexParser.modifier`.
|
|
394
361
|
* @param ctx the parse tree
|
|
395
362
|
*/
|
|
396
|
-
|
|
363
|
+
enterModifier?: (ctx: ModifierContext) => void;
|
|
397
364
|
/**
|
|
398
|
-
* Exit a parse tree produced by
|
|
399
|
-
* labeled alternative in `ApexParser.expression`.
|
|
365
|
+
* Exit a parse tree produced by `ApexParser.modifier`.
|
|
400
366
|
* @param ctx the parse tree
|
|
401
367
|
*/
|
|
402
|
-
|
|
368
|
+
exitModifier?: (ctx: ModifierContext) => void;
|
|
403
369
|
/**
|
|
404
|
-
* Enter a parse tree produced by
|
|
405
|
-
* labeled alternative in `ApexParser.expression`.
|
|
370
|
+
* Enter a parse tree produced by `ApexParser.memberDeclaration`.
|
|
406
371
|
* @param ctx the parse tree
|
|
407
372
|
*/
|
|
408
|
-
|
|
373
|
+
enterMemberDeclaration?: (ctx: MemberDeclarationContext) => void;
|
|
409
374
|
/**
|
|
410
|
-
* Exit a parse tree produced by
|
|
411
|
-
* labeled alternative in `ApexParser.expression`.
|
|
375
|
+
* Exit a parse tree produced by `ApexParser.memberDeclaration`.
|
|
412
376
|
* @param ctx the parse tree
|
|
413
377
|
*/
|
|
414
|
-
|
|
378
|
+
exitMemberDeclaration?: (ctx: MemberDeclarationContext) => void;
|
|
415
379
|
/**
|
|
416
|
-
* Enter a parse tree produced by
|
|
417
|
-
* labeled alternative in `ApexParser.expression`.
|
|
380
|
+
* Enter a parse tree produced by `ApexParser.triggerMemberDeclaration`.
|
|
418
381
|
* @param ctx the parse tree
|
|
419
382
|
*/
|
|
420
|
-
|
|
383
|
+
enterTriggerMemberDeclaration?: (ctx: TriggerMemberDeclarationContext) => void;
|
|
421
384
|
/**
|
|
422
|
-
* Exit a parse tree produced by
|
|
423
|
-
* labeled alternative in `ApexParser.expression`.
|
|
385
|
+
* Exit a parse tree produced by `ApexParser.triggerMemberDeclaration`.
|
|
424
386
|
* @param ctx the parse tree
|
|
425
387
|
*/
|
|
426
|
-
|
|
388
|
+
exitTriggerMemberDeclaration?: (ctx: TriggerMemberDeclarationContext) => void;
|
|
427
389
|
/**
|
|
428
|
-
* Enter a parse tree produced by
|
|
429
|
-
* labeled alternative in `ApexParser.expression`.
|
|
390
|
+
* Enter a parse tree produced by `ApexParser.anonymousMemberDeclaration`.
|
|
430
391
|
* @param ctx the parse tree
|
|
431
392
|
*/
|
|
432
|
-
|
|
393
|
+
enterAnonymousMemberDeclaration?: (ctx: AnonymousMemberDeclarationContext) => void;
|
|
433
394
|
/**
|
|
434
|
-
* Exit a parse tree produced by
|
|
435
|
-
* labeled alternative in `ApexParser.expression`.
|
|
395
|
+
* Exit a parse tree produced by `ApexParser.anonymousMemberDeclaration`.
|
|
436
396
|
* @param ctx the parse tree
|
|
437
397
|
*/
|
|
438
|
-
|
|
398
|
+
exitAnonymousMemberDeclaration?: (ctx: AnonymousMemberDeclarationContext) => void;
|
|
439
399
|
/**
|
|
440
|
-
* Enter a parse tree produced by
|
|
441
|
-
* labeled alternative in `ApexParser.expression`.
|
|
400
|
+
* Enter a parse tree produced by `ApexParser.methodDeclaration`.
|
|
442
401
|
* @param ctx the parse tree
|
|
443
402
|
*/
|
|
444
|
-
|
|
403
|
+
enterMethodDeclaration?: (ctx: MethodDeclarationContext) => void;
|
|
445
404
|
/**
|
|
446
|
-
* Exit a parse tree produced by
|
|
447
|
-
* labeled alternative in `ApexParser.expression`.
|
|
405
|
+
* Exit a parse tree produced by `ApexParser.methodDeclaration`.
|
|
448
406
|
* @param ctx the parse tree
|
|
449
407
|
*/
|
|
450
|
-
|
|
408
|
+
exitMethodDeclaration?: (ctx: MethodDeclarationContext) => void;
|
|
451
409
|
/**
|
|
452
|
-
* Enter a parse tree produced by
|
|
453
|
-
* labeled alternative in `ApexParser.expression`.
|
|
410
|
+
* Enter a parse tree produced by `ApexParser.constructorDeclaration`.
|
|
454
411
|
* @param ctx the parse tree
|
|
455
412
|
*/
|
|
456
|
-
|
|
413
|
+
enterConstructorDeclaration?: (ctx: ConstructorDeclarationContext) => void;
|
|
457
414
|
/**
|
|
458
|
-
* Exit a parse tree produced by
|
|
459
|
-
* labeled alternative in `ApexParser.expression`.
|
|
415
|
+
* Exit a parse tree produced by `ApexParser.constructorDeclaration`.
|
|
460
416
|
* @param ctx the parse tree
|
|
461
417
|
*/
|
|
462
|
-
|
|
418
|
+
exitConstructorDeclaration?: (ctx: ConstructorDeclarationContext) => void;
|
|
463
419
|
/**
|
|
464
|
-
* Enter a parse tree produced by
|
|
465
|
-
* labeled alternative in `ApexParser.expression`.
|
|
420
|
+
* Enter a parse tree produced by `ApexParser.fieldDeclaration`.
|
|
466
421
|
* @param ctx the parse tree
|
|
467
422
|
*/
|
|
468
|
-
|
|
423
|
+
enterFieldDeclaration?: (ctx: FieldDeclarationContext) => void;
|
|
469
424
|
/**
|
|
470
|
-
* Exit a parse tree produced by
|
|
471
|
-
* labeled alternative in `ApexParser.expression`.
|
|
425
|
+
* Exit a parse tree produced by `ApexParser.fieldDeclaration`.
|
|
472
426
|
* @param ctx the parse tree
|
|
473
427
|
*/
|
|
474
|
-
|
|
428
|
+
exitFieldDeclaration?: (ctx: FieldDeclarationContext) => void;
|
|
475
429
|
/**
|
|
476
|
-
* Enter a parse tree produced by
|
|
477
|
-
* labeled alternative in `ApexParser.expression`.
|
|
430
|
+
* Enter a parse tree produced by `ApexParser.propertyDeclaration`.
|
|
478
431
|
* @param ctx the parse tree
|
|
479
432
|
*/
|
|
480
|
-
|
|
433
|
+
enterPropertyDeclaration?: (ctx: PropertyDeclarationContext) => void;
|
|
481
434
|
/**
|
|
482
|
-
* Exit a parse tree produced by
|
|
483
|
-
* labeled alternative in `ApexParser.expression`.
|
|
435
|
+
* Exit a parse tree produced by `ApexParser.propertyDeclaration`.
|
|
484
436
|
* @param ctx the parse tree
|
|
485
437
|
*/
|
|
486
|
-
|
|
438
|
+
exitPropertyDeclaration?: (ctx: PropertyDeclarationContext) => void;
|
|
487
439
|
/**
|
|
488
|
-
* Enter a parse tree produced by
|
|
489
|
-
* labeled alternative in `ApexParser.expression`.
|
|
440
|
+
* Enter a parse tree produced by `ApexParser.interfaceMethodDeclaration`.
|
|
490
441
|
* @param ctx the parse tree
|
|
491
442
|
*/
|
|
492
|
-
|
|
443
|
+
enterInterfaceMethodDeclaration?: (ctx: InterfaceMethodDeclarationContext) => void;
|
|
493
444
|
/**
|
|
494
|
-
* Exit a parse tree produced by
|
|
495
|
-
* labeled alternative in `ApexParser.expression`.
|
|
445
|
+
* Exit a parse tree produced by `ApexParser.interfaceMethodDeclaration`.
|
|
496
446
|
* @param ctx the parse tree
|
|
497
447
|
*/
|
|
498
|
-
|
|
448
|
+
exitInterfaceMethodDeclaration?: (ctx: InterfaceMethodDeclarationContext) => void;
|
|
499
449
|
/**
|
|
500
|
-
* Enter a parse tree produced by
|
|
501
|
-
* labeled alternative in `ApexParser.expression`.
|
|
450
|
+
* Enter a parse tree produced by `ApexParser.variableDeclarators`.
|
|
502
451
|
* @param ctx the parse tree
|
|
503
452
|
*/
|
|
504
|
-
|
|
453
|
+
enterVariableDeclarators?: (ctx: VariableDeclaratorsContext) => void;
|
|
505
454
|
/**
|
|
506
|
-
* Exit a parse tree produced by
|
|
507
|
-
* labeled alternative in `ApexParser.expression`.
|
|
455
|
+
* Exit a parse tree produced by `ApexParser.variableDeclarators`.
|
|
508
456
|
* @param ctx the parse tree
|
|
509
457
|
*/
|
|
510
|
-
|
|
458
|
+
exitVariableDeclarators?: (ctx: VariableDeclaratorsContext) => void;
|
|
511
459
|
/**
|
|
512
|
-
* Enter a parse tree produced by
|
|
513
|
-
* labeled alternative in `ApexParser.expression`.
|
|
460
|
+
* Enter a parse tree produced by `ApexParser.variableDeclarator`.
|
|
514
461
|
* @param ctx the parse tree
|
|
515
462
|
*/
|
|
516
|
-
|
|
463
|
+
enterVariableDeclarator?: (ctx: VariableDeclaratorContext) => void;
|
|
517
464
|
/**
|
|
518
|
-
* Exit a parse tree produced by
|
|
519
|
-
* labeled alternative in `ApexParser.expression`.
|
|
465
|
+
* Exit a parse tree produced by `ApexParser.variableDeclarator`.
|
|
520
466
|
* @param ctx the parse tree
|
|
521
467
|
*/
|
|
522
|
-
|
|
468
|
+
exitVariableDeclarator?: (ctx: VariableDeclaratorContext) => void;
|
|
523
469
|
/**
|
|
524
|
-
* Enter a parse tree produced by
|
|
525
|
-
* labeled alternative in `ApexParser.expression`.
|
|
470
|
+
* Enter a parse tree produced by `ApexParser.arrayInitializer`.
|
|
526
471
|
* @param ctx the parse tree
|
|
527
472
|
*/
|
|
528
|
-
|
|
473
|
+
enterArrayInitializer?: (ctx: ArrayInitializerContext) => void;
|
|
529
474
|
/**
|
|
530
|
-
* Exit a parse tree produced by
|
|
531
|
-
* labeled alternative in `ApexParser.expression`.
|
|
475
|
+
* Exit a parse tree produced by `ApexParser.arrayInitializer`.
|
|
532
476
|
* @param ctx the parse tree
|
|
533
477
|
*/
|
|
534
|
-
|
|
478
|
+
exitArrayInitializer?: (ctx: ArrayInitializerContext) => void;
|
|
535
479
|
/**
|
|
536
|
-
* Enter a parse tree produced by
|
|
537
|
-
* labeled alternative in `ApexParser.expression`.
|
|
480
|
+
* Enter a parse tree produced by `ApexParser.typeRef`.
|
|
538
481
|
* @param ctx the parse tree
|
|
539
482
|
*/
|
|
540
|
-
|
|
483
|
+
enterTypeRef?: (ctx: TypeRefContext) => void;
|
|
541
484
|
/**
|
|
542
|
-
* Exit a parse tree produced by
|
|
543
|
-
* labeled alternative in `ApexParser.expression`.
|
|
485
|
+
* Exit a parse tree produced by `ApexParser.typeRef`.
|
|
544
486
|
* @param ctx the parse tree
|
|
545
487
|
*/
|
|
546
|
-
|
|
488
|
+
exitTypeRef?: (ctx: TypeRefContext) => void;
|
|
547
489
|
/**
|
|
548
|
-
* Enter a parse tree produced by
|
|
549
|
-
* labeled alternative in `ApexParser.expression`.
|
|
490
|
+
* Enter a parse tree produced by `ApexParser.arraySubscripts`.
|
|
550
491
|
* @param ctx the parse tree
|
|
551
492
|
*/
|
|
552
|
-
|
|
493
|
+
enterArraySubscripts?: (ctx: ArraySubscriptsContext) => void;
|
|
553
494
|
/**
|
|
554
|
-
* Exit a parse tree produced by
|
|
555
|
-
* labeled alternative in `ApexParser.expression`.
|
|
495
|
+
* Exit a parse tree produced by `ApexParser.arraySubscripts`.
|
|
556
496
|
* @param ctx the parse tree
|
|
557
497
|
*/
|
|
558
|
-
|
|
498
|
+
exitArraySubscripts?: (ctx: ArraySubscriptsContext) => void;
|
|
559
499
|
/**
|
|
560
|
-
* Enter a parse tree produced by
|
|
561
|
-
* labeled alternative in `ApexParser.expression`.
|
|
500
|
+
* Enter a parse tree produced by `ApexParser.typeName`.
|
|
562
501
|
* @param ctx the parse tree
|
|
563
502
|
*/
|
|
564
|
-
|
|
503
|
+
enterTypeName?: (ctx: TypeNameContext) => void;
|
|
565
504
|
/**
|
|
566
|
-
* Exit a parse tree produced by
|
|
567
|
-
* labeled alternative in `ApexParser.expression`.
|
|
505
|
+
* Exit a parse tree produced by `ApexParser.typeName`.
|
|
568
506
|
* @param ctx the parse tree
|
|
569
507
|
*/
|
|
570
|
-
|
|
508
|
+
exitTypeName?: (ctx: TypeNameContext) => void;
|
|
571
509
|
/**
|
|
572
|
-
* Enter a parse tree produced by `ApexParser.
|
|
510
|
+
* Enter a parse tree produced by `ApexParser.typeArguments`.
|
|
573
511
|
* @param ctx the parse tree
|
|
574
512
|
*/
|
|
575
|
-
|
|
513
|
+
enterTypeArguments?: (ctx: TypeArgumentsContext) => void;
|
|
576
514
|
/**
|
|
577
|
-
* Exit a parse tree produced by `ApexParser.
|
|
515
|
+
* Exit a parse tree produced by `ApexParser.typeArguments`.
|
|
578
516
|
* @param ctx the parse tree
|
|
579
517
|
*/
|
|
580
|
-
|
|
518
|
+
exitTypeArguments?: (ctx: TypeArgumentsContext) => void;
|
|
581
519
|
/**
|
|
582
|
-
* Enter a parse tree produced by `ApexParser.
|
|
520
|
+
* Enter a parse tree produced by `ApexParser.formalParameters`.
|
|
583
521
|
* @param ctx the parse tree
|
|
584
522
|
*/
|
|
585
|
-
|
|
523
|
+
enterFormalParameters?: (ctx: FormalParametersContext) => void;
|
|
586
524
|
/**
|
|
587
|
-
* Exit a parse tree produced by `ApexParser.
|
|
525
|
+
* Exit a parse tree produced by `ApexParser.formalParameters`.
|
|
588
526
|
* @param ctx the parse tree
|
|
589
527
|
*/
|
|
590
|
-
|
|
528
|
+
exitFormalParameters?: (ctx: FormalParametersContext) => void;
|
|
591
529
|
/**
|
|
592
|
-
* Enter a parse tree produced by `ApexParser.
|
|
530
|
+
* Enter a parse tree produced by `ApexParser.formalParameterList`.
|
|
593
531
|
* @param ctx the parse tree
|
|
594
532
|
*/
|
|
595
|
-
|
|
533
|
+
enterFormalParameterList?: (ctx: FormalParameterListContext) => void;
|
|
596
534
|
/**
|
|
597
|
-
* Exit a parse tree produced by `ApexParser.
|
|
535
|
+
* Exit a parse tree produced by `ApexParser.formalParameterList`.
|
|
598
536
|
* @param ctx the parse tree
|
|
599
537
|
*/
|
|
600
|
-
|
|
538
|
+
exitFormalParameterList?: (ctx: FormalParameterListContext) => void;
|
|
601
539
|
/**
|
|
602
|
-
* Enter a parse tree produced by `ApexParser.
|
|
540
|
+
* Enter a parse tree produced by `ApexParser.formalParameter`.
|
|
603
541
|
* @param ctx the parse tree
|
|
604
542
|
*/
|
|
605
|
-
|
|
543
|
+
enterFormalParameter?: (ctx: FormalParameterContext) => void;
|
|
606
544
|
/**
|
|
607
|
-
* Exit a parse tree produced by `ApexParser.
|
|
545
|
+
* Exit a parse tree produced by `ApexParser.formalParameter`.
|
|
608
546
|
* @param ctx the parse tree
|
|
609
547
|
*/
|
|
610
|
-
|
|
548
|
+
exitFormalParameter?: (ctx: FormalParameterContext) => void;
|
|
611
549
|
/**
|
|
612
|
-
* Enter a parse tree produced by `ApexParser.
|
|
550
|
+
* Enter a parse tree produced by `ApexParser.qualifiedName`.
|
|
613
551
|
* @param ctx the parse tree
|
|
614
552
|
*/
|
|
615
|
-
|
|
553
|
+
enterQualifiedName?: (ctx: QualifiedNameContext) => void;
|
|
616
554
|
/**
|
|
617
|
-
* Exit a parse tree produced by `ApexParser.
|
|
555
|
+
* Exit a parse tree produced by `ApexParser.qualifiedName`.
|
|
618
556
|
* @param ctx the parse tree
|
|
619
557
|
*/
|
|
620
|
-
|
|
558
|
+
exitQualifiedName?: (ctx: QualifiedNameContext) => void;
|
|
621
559
|
/**
|
|
622
|
-
* Enter a parse tree produced by `ApexParser.
|
|
560
|
+
* Enter a parse tree produced by `ApexParser.literal`.
|
|
623
561
|
* @param ctx the parse tree
|
|
624
562
|
*/
|
|
625
|
-
|
|
563
|
+
enterLiteral?: (ctx: LiteralContext) => void;
|
|
626
564
|
/**
|
|
627
|
-
* Exit a parse tree produced by `ApexParser.
|
|
565
|
+
* Exit a parse tree produced by `ApexParser.literal`.
|
|
628
566
|
* @param ctx the parse tree
|
|
629
567
|
*/
|
|
630
|
-
|
|
568
|
+
exitLiteral?: (ctx: LiteralContext) => void;
|
|
631
569
|
/**
|
|
632
|
-
* Enter a parse tree produced by `ApexParser.
|
|
570
|
+
* Enter a parse tree produced by `ApexParser.annotation`.
|
|
633
571
|
* @param ctx the parse tree
|
|
634
572
|
*/
|
|
635
|
-
|
|
573
|
+
enterAnnotation?: (ctx: AnnotationContext) => void;
|
|
636
574
|
/**
|
|
637
|
-
* Exit a parse tree produced by `ApexParser.
|
|
575
|
+
* Exit a parse tree produced by `ApexParser.annotation`.
|
|
638
576
|
* @param ctx the parse tree
|
|
639
577
|
*/
|
|
640
|
-
|
|
578
|
+
exitAnnotation?: (ctx: AnnotationContext) => void;
|
|
641
579
|
/**
|
|
642
|
-
* Enter a parse tree produced by `ApexParser.
|
|
580
|
+
* Enter a parse tree produced by `ApexParser.elementValuePairs`.
|
|
643
581
|
* @param ctx the parse tree
|
|
644
582
|
*/
|
|
645
|
-
|
|
583
|
+
enterElementValuePairs?: (ctx: ElementValuePairsContext) => void;
|
|
646
584
|
/**
|
|
647
|
-
* Exit a parse tree produced by `ApexParser.
|
|
585
|
+
* Exit a parse tree produced by `ApexParser.elementValuePairs`.
|
|
648
586
|
* @param ctx the parse tree
|
|
649
587
|
*/
|
|
650
|
-
|
|
588
|
+
exitElementValuePairs?: (ctx: ElementValuePairsContext) => void;
|
|
651
589
|
/**
|
|
652
|
-
* Enter a parse tree produced by `ApexParser.
|
|
590
|
+
* Enter a parse tree produced by `ApexParser.elementValuePair`.
|
|
653
591
|
* @param ctx the parse tree
|
|
654
592
|
*/
|
|
655
|
-
|
|
593
|
+
enterElementValuePair?: (ctx: ElementValuePairContext) => void;
|
|
656
594
|
/**
|
|
657
|
-
* Exit a parse tree produced by `ApexParser.
|
|
595
|
+
* Exit a parse tree produced by `ApexParser.elementValuePair`.
|
|
658
596
|
* @param ctx the parse tree
|
|
659
597
|
*/
|
|
660
|
-
|
|
598
|
+
exitElementValuePair?: (ctx: ElementValuePairContext) => void;
|
|
661
599
|
/**
|
|
662
|
-
* Enter a parse tree produced by `ApexParser.
|
|
600
|
+
* Enter a parse tree produced by `ApexParser.elementValue`.
|
|
663
601
|
* @param ctx the parse tree
|
|
664
602
|
*/
|
|
665
|
-
|
|
603
|
+
enterElementValue?: (ctx: ElementValueContext) => void;
|
|
666
604
|
/**
|
|
667
|
-
* Exit a parse tree produced by `ApexParser.
|
|
605
|
+
* Exit a parse tree produced by `ApexParser.elementValue`.
|
|
668
606
|
* @param ctx the parse tree
|
|
669
607
|
*/
|
|
670
|
-
|
|
608
|
+
exitElementValue?: (ctx: ElementValueContext) => void;
|
|
671
609
|
/**
|
|
672
|
-
* Enter a parse tree produced by `ApexParser.
|
|
610
|
+
* Enter a parse tree produced by `ApexParser.elementValueArrayInitializer`.
|
|
673
611
|
* @param ctx the parse tree
|
|
674
612
|
*/
|
|
675
|
-
|
|
613
|
+
enterElementValueArrayInitializer?: (ctx: ElementValueArrayInitializerContext) => void;
|
|
676
614
|
/**
|
|
677
|
-
* Exit a parse tree produced by `ApexParser.
|
|
615
|
+
* Exit a parse tree produced by `ApexParser.elementValueArrayInitializer`.
|
|
678
616
|
* @param ctx the parse tree
|
|
679
617
|
*/
|
|
680
|
-
|
|
618
|
+
exitElementValueArrayInitializer?: (ctx: ElementValueArrayInitializerContext) => void;
|
|
681
619
|
/**
|
|
682
|
-
* Enter a parse tree produced by `ApexParser.
|
|
620
|
+
* Enter a parse tree produced by `ApexParser.block`.
|
|
683
621
|
* @param ctx the parse tree
|
|
684
622
|
*/
|
|
685
|
-
|
|
623
|
+
enterBlock?: (ctx: BlockContext) => void;
|
|
686
624
|
/**
|
|
687
|
-
* Exit a parse tree produced by `ApexParser.
|
|
625
|
+
* Exit a parse tree produced by `ApexParser.block`.
|
|
688
626
|
* @param ctx the parse tree
|
|
689
627
|
*/
|
|
690
|
-
|
|
628
|
+
exitBlock?: (ctx: BlockContext) => void;
|
|
691
629
|
/**
|
|
692
|
-
* Enter a parse tree produced by `ApexParser.
|
|
630
|
+
* Enter a parse tree produced by `ApexParser.localVariableDeclarationStatement`.
|
|
693
631
|
* @param ctx the parse tree
|
|
694
632
|
*/
|
|
695
|
-
|
|
633
|
+
enterLocalVariableDeclarationStatement?: (ctx: LocalVariableDeclarationStatementContext) => void;
|
|
696
634
|
/**
|
|
697
|
-
* Exit a parse tree produced by `ApexParser.
|
|
635
|
+
* Exit a parse tree produced by `ApexParser.localVariableDeclarationStatement`.
|
|
698
636
|
* @param ctx the parse tree
|
|
699
637
|
*/
|
|
700
|
-
|
|
638
|
+
exitLocalVariableDeclarationStatement?: (ctx: LocalVariableDeclarationStatementContext) => void;
|
|
701
639
|
/**
|
|
702
|
-
* Enter a parse tree produced by `ApexParser.
|
|
640
|
+
* Enter a parse tree produced by `ApexParser.localVariableDeclaration`.
|
|
703
641
|
* @param ctx the parse tree
|
|
704
642
|
*/
|
|
705
|
-
|
|
643
|
+
enterLocalVariableDeclaration?: (ctx: LocalVariableDeclarationContext) => void;
|
|
706
644
|
/**
|
|
707
|
-
* Exit a parse tree produced by `ApexParser.
|
|
645
|
+
* Exit a parse tree produced by `ApexParser.localVariableDeclaration`.
|
|
708
646
|
* @param ctx the parse tree
|
|
709
647
|
*/
|
|
710
|
-
|
|
648
|
+
exitLocalVariableDeclaration?: (ctx: LocalVariableDeclarationContext) => void;
|
|
711
649
|
/**
|
|
712
|
-
* Enter a parse tree produced by `ApexParser.
|
|
650
|
+
* Enter a parse tree produced by `ApexParser.statement`.
|
|
713
651
|
* @param ctx the parse tree
|
|
714
652
|
*/
|
|
715
|
-
|
|
653
|
+
enterStatement?: (ctx: StatementContext) => void;
|
|
716
654
|
/**
|
|
717
|
-
* Exit a parse tree produced by `ApexParser.
|
|
655
|
+
* Exit a parse tree produced by `ApexParser.statement`.
|
|
718
656
|
* @param ctx the parse tree
|
|
719
657
|
*/
|
|
720
|
-
|
|
658
|
+
exitStatement?: (ctx: StatementContext) => void;
|
|
721
659
|
/**
|
|
722
|
-
* Enter a parse tree produced by `ApexParser.
|
|
660
|
+
* Enter a parse tree produced by `ApexParser.ifStatement`.
|
|
723
661
|
* @param ctx the parse tree
|
|
724
662
|
*/
|
|
725
|
-
|
|
663
|
+
enterIfStatement?: (ctx: IfStatementContext) => void;
|
|
726
664
|
/**
|
|
727
|
-
* Exit a parse tree produced by `ApexParser.
|
|
665
|
+
* Exit a parse tree produced by `ApexParser.ifStatement`.
|
|
728
666
|
* @param ctx the parse tree
|
|
729
667
|
*/
|
|
730
|
-
|
|
668
|
+
exitIfStatement?: (ctx: IfStatementContext) => void;
|
|
731
669
|
/**
|
|
732
|
-
* Enter a parse tree produced by `ApexParser.
|
|
670
|
+
* Enter a parse tree produced by `ApexParser.switchStatement`.
|
|
733
671
|
* @param ctx the parse tree
|
|
734
672
|
*/
|
|
735
|
-
|
|
673
|
+
enterSwitchStatement?: (ctx: SwitchStatementContext) => void;
|
|
736
674
|
/**
|
|
737
|
-
* Exit a parse tree produced by `ApexParser.
|
|
675
|
+
* Exit a parse tree produced by `ApexParser.switchStatement`.
|
|
738
676
|
* @param ctx the parse tree
|
|
739
677
|
*/
|
|
740
|
-
|
|
678
|
+
exitSwitchStatement?: (ctx: SwitchStatementContext) => void;
|
|
741
679
|
/**
|
|
742
|
-
* Enter a parse tree produced by `ApexParser.
|
|
680
|
+
* Enter a parse tree produced by `ApexParser.whenControl`.
|
|
743
681
|
* @param ctx the parse tree
|
|
744
682
|
*/
|
|
745
|
-
|
|
683
|
+
enterWhenControl?: (ctx: WhenControlContext) => void;
|
|
746
684
|
/**
|
|
747
|
-
* Exit a parse tree produced by `ApexParser.
|
|
685
|
+
* Exit a parse tree produced by `ApexParser.whenControl`.
|
|
748
686
|
* @param ctx the parse tree
|
|
749
687
|
*/
|
|
750
|
-
|
|
688
|
+
exitWhenControl?: (ctx: WhenControlContext) => void;
|
|
751
689
|
/**
|
|
752
|
-
* Enter a parse tree produced by `ApexParser.
|
|
690
|
+
* Enter a parse tree produced by `ApexParser.whenValue`.
|
|
753
691
|
* @param ctx the parse tree
|
|
754
692
|
*/
|
|
755
|
-
|
|
693
|
+
enterWhenValue?: (ctx: WhenValueContext) => void;
|
|
756
694
|
/**
|
|
757
|
-
* Exit a parse tree produced by `ApexParser.
|
|
695
|
+
* Exit a parse tree produced by `ApexParser.whenValue`.
|
|
758
696
|
* @param ctx the parse tree
|
|
759
697
|
*/
|
|
760
|
-
|
|
698
|
+
exitWhenValue?: (ctx: WhenValueContext) => void;
|
|
761
699
|
/**
|
|
762
|
-
* Enter a parse tree produced by `ApexParser.
|
|
700
|
+
* Enter a parse tree produced by `ApexParser.whenLiteral`.
|
|
763
701
|
* @param ctx the parse tree
|
|
764
702
|
*/
|
|
765
|
-
|
|
703
|
+
enterWhenLiteral?: (ctx: WhenLiteralContext) => void;
|
|
766
704
|
/**
|
|
767
|
-
* Exit a parse tree produced by `ApexParser.
|
|
705
|
+
* Exit a parse tree produced by `ApexParser.whenLiteral`.
|
|
768
706
|
* @param ctx the parse tree
|
|
769
707
|
*/
|
|
770
|
-
|
|
708
|
+
exitWhenLiteral?: (ctx: WhenLiteralContext) => void;
|
|
771
709
|
/**
|
|
772
|
-
* Enter a parse tree produced by `ApexParser.
|
|
710
|
+
* Enter a parse tree produced by `ApexParser.forStatement`.
|
|
773
711
|
* @param ctx the parse tree
|
|
774
712
|
*/
|
|
775
|
-
|
|
713
|
+
enterForStatement?: (ctx: ForStatementContext) => void;
|
|
776
714
|
/**
|
|
777
|
-
* Exit a parse tree produced by `ApexParser.
|
|
715
|
+
* Exit a parse tree produced by `ApexParser.forStatement`.
|
|
778
716
|
* @param ctx the parse tree
|
|
779
717
|
*/
|
|
780
|
-
|
|
718
|
+
exitForStatement?: (ctx: ForStatementContext) => void;
|
|
781
719
|
/**
|
|
782
|
-
* Enter a parse tree produced by `ApexParser.
|
|
720
|
+
* Enter a parse tree produced by `ApexParser.whileStatement`.
|
|
783
721
|
* @param ctx the parse tree
|
|
784
722
|
*/
|
|
785
|
-
|
|
723
|
+
enterWhileStatement?: (ctx: WhileStatementContext) => void;
|
|
786
724
|
/**
|
|
787
|
-
* Exit a parse tree produced by `ApexParser.
|
|
725
|
+
* Exit a parse tree produced by `ApexParser.whileStatement`.
|
|
788
726
|
* @param ctx the parse tree
|
|
789
727
|
*/
|
|
790
|
-
|
|
728
|
+
exitWhileStatement?: (ctx: WhileStatementContext) => void;
|
|
791
729
|
/**
|
|
792
|
-
* Enter a parse tree produced by `ApexParser.
|
|
730
|
+
* Enter a parse tree produced by `ApexParser.doWhileStatement`.
|
|
793
731
|
* @param ctx the parse tree
|
|
794
732
|
*/
|
|
795
|
-
|
|
733
|
+
enterDoWhileStatement?: (ctx: DoWhileStatementContext) => void;
|
|
796
734
|
/**
|
|
797
|
-
* Exit a parse tree produced by `ApexParser.
|
|
735
|
+
* Exit a parse tree produced by `ApexParser.doWhileStatement`.
|
|
798
736
|
* @param ctx the parse tree
|
|
799
737
|
*/
|
|
800
|
-
|
|
738
|
+
exitDoWhileStatement?: (ctx: DoWhileStatementContext) => void;
|
|
801
739
|
/**
|
|
802
|
-
* Enter a parse tree produced by `ApexParser.
|
|
740
|
+
* Enter a parse tree produced by `ApexParser.tryStatement`.
|
|
803
741
|
* @param ctx the parse tree
|
|
804
742
|
*/
|
|
805
|
-
|
|
743
|
+
enterTryStatement?: (ctx: TryStatementContext) => void;
|
|
806
744
|
/**
|
|
807
|
-
* Exit a parse tree produced by `ApexParser.
|
|
745
|
+
* Exit a parse tree produced by `ApexParser.tryStatement`.
|
|
808
746
|
* @param ctx the parse tree
|
|
809
747
|
*/
|
|
810
|
-
|
|
748
|
+
exitTryStatement?: (ctx: TryStatementContext) => void;
|
|
811
749
|
/**
|
|
812
|
-
* Enter a parse tree produced by `ApexParser.
|
|
750
|
+
* Enter a parse tree produced by `ApexParser.returnStatement`.
|
|
813
751
|
* @param ctx the parse tree
|
|
814
752
|
*/
|
|
815
|
-
|
|
753
|
+
enterReturnStatement?: (ctx: ReturnStatementContext) => void;
|
|
816
754
|
/**
|
|
817
|
-
* Exit a parse tree produced by `ApexParser.
|
|
755
|
+
* Exit a parse tree produced by `ApexParser.returnStatement`.
|
|
818
756
|
* @param ctx the parse tree
|
|
819
757
|
*/
|
|
820
|
-
|
|
758
|
+
exitReturnStatement?: (ctx: ReturnStatementContext) => void;
|
|
821
759
|
/**
|
|
822
|
-
* Enter a parse tree produced by `ApexParser.
|
|
760
|
+
* Enter a parse tree produced by `ApexParser.throwStatement`.
|
|
823
761
|
* @param ctx the parse tree
|
|
824
762
|
*/
|
|
825
|
-
|
|
763
|
+
enterThrowStatement?: (ctx: ThrowStatementContext) => void;
|
|
826
764
|
/**
|
|
827
|
-
* Exit a parse tree produced by `ApexParser.
|
|
765
|
+
* Exit a parse tree produced by `ApexParser.throwStatement`.
|
|
828
766
|
* @param ctx the parse tree
|
|
829
767
|
*/
|
|
830
|
-
|
|
768
|
+
exitThrowStatement?: (ctx: ThrowStatementContext) => void;
|
|
831
769
|
/**
|
|
832
|
-
* Enter a parse tree produced by `ApexParser.
|
|
770
|
+
* Enter a parse tree produced by `ApexParser.breakStatement`.
|
|
833
771
|
* @param ctx the parse tree
|
|
834
772
|
*/
|
|
835
|
-
|
|
773
|
+
enterBreakStatement?: (ctx: BreakStatementContext) => void;
|
|
836
774
|
/**
|
|
837
|
-
* Exit a parse tree produced by `ApexParser.
|
|
775
|
+
* Exit a parse tree produced by `ApexParser.breakStatement`.
|
|
838
776
|
* @param ctx the parse tree
|
|
839
777
|
*/
|
|
840
|
-
|
|
778
|
+
exitBreakStatement?: (ctx: BreakStatementContext) => void;
|
|
841
779
|
/**
|
|
842
|
-
* Enter a parse tree produced by `ApexParser.
|
|
780
|
+
* Enter a parse tree produced by `ApexParser.continueStatement`.
|
|
843
781
|
* @param ctx the parse tree
|
|
844
782
|
*/
|
|
845
|
-
|
|
783
|
+
enterContinueStatement?: (ctx: ContinueStatementContext) => void;
|
|
846
784
|
/**
|
|
847
|
-
* Exit a parse tree produced by `ApexParser.
|
|
785
|
+
* Exit a parse tree produced by `ApexParser.continueStatement`.
|
|
848
786
|
* @param ctx the parse tree
|
|
849
787
|
*/
|
|
850
|
-
|
|
788
|
+
exitContinueStatement?: (ctx: ContinueStatementContext) => void;
|
|
851
789
|
/**
|
|
852
|
-
* Enter a parse tree produced by `ApexParser.
|
|
790
|
+
* Enter a parse tree produced by `ApexParser.accessLevel`.
|
|
853
791
|
* @param ctx the parse tree
|
|
854
792
|
*/
|
|
855
|
-
|
|
793
|
+
enterAccessLevel?: (ctx: AccessLevelContext) => void;
|
|
856
794
|
/**
|
|
857
|
-
* Exit a parse tree produced by `ApexParser.
|
|
795
|
+
* Exit a parse tree produced by `ApexParser.accessLevel`.
|
|
858
796
|
* @param ctx the parse tree
|
|
859
797
|
*/
|
|
860
|
-
|
|
798
|
+
exitAccessLevel?: (ctx: AccessLevelContext) => void;
|
|
861
799
|
/**
|
|
862
|
-
* Enter a parse tree produced by `ApexParser.
|
|
800
|
+
* Enter a parse tree produced by `ApexParser.insertStatement`.
|
|
863
801
|
* @param ctx the parse tree
|
|
864
802
|
*/
|
|
865
|
-
|
|
803
|
+
enterInsertStatement?: (ctx: InsertStatementContext) => void;
|
|
866
804
|
/**
|
|
867
|
-
* Exit a parse tree produced by `ApexParser.
|
|
805
|
+
* Exit a parse tree produced by `ApexParser.insertStatement`.
|
|
868
806
|
* @param ctx the parse tree
|
|
869
807
|
*/
|
|
870
|
-
|
|
808
|
+
exitInsertStatement?: (ctx: InsertStatementContext) => void;
|
|
871
809
|
/**
|
|
872
|
-
* Enter a parse tree produced by `ApexParser.
|
|
810
|
+
* Enter a parse tree produced by `ApexParser.updateStatement`.
|
|
873
811
|
* @param ctx the parse tree
|
|
874
812
|
*/
|
|
875
|
-
|
|
813
|
+
enterUpdateStatement?: (ctx: UpdateStatementContext) => void;
|
|
876
814
|
/**
|
|
877
|
-
* Exit a parse tree produced by `ApexParser.
|
|
815
|
+
* Exit a parse tree produced by `ApexParser.updateStatement`.
|
|
878
816
|
* @param ctx the parse tree
|
|
879
817
|
*/
|
|
880
|
-
|
|
818
|
+
exitUpdateStatement?: (ctx: UpdateStatementContext) => void;
|
|
881
819
|
/**
|
|
882
|
-
* Enter a parse tree produced by `ApexParser.
|
|
820
|
+
* Enter a parse tree produced by `ApexParser.deleteStatement`.
|
|
883
821
|
* @param ctx the parse tree
|
|
884
822
|
*/
|
|
885
|
-
|
|
823
|
+
enterDeleteStatement?: (ctx: DeleteStatementContext) => void;
|
|
886
824
|
/**
|
|
887
|
-
* Exit a parse tree produced by `ApexParser.
|
|
825
|
+
* Exit a parse tree produced by `ApexParser.deleteStatement`.
|
|
888
826
|
* @param ctx the parse tree
|
|
889
827
|
*/
|
|
890
|
-
|
|
828
|
+
exitDeleteStatement?: (ctx: DeleteStatementContext) => void;
|
|
891
829
|
/**
|
|
892
|
-
* Enter a parse tree produced by `ApexParser.
|
|
830
|
+
* Enter a parse tree produced by `ApexParser.undeleteStatement`.
|
|
893
831
|
* @param ctx the parse tree
|
|
894
832
|
*/
|
|
895
|
-
|
|
833
|
+
enterUndeleteStatement?: (ctx: UndeleteStatementContext) => void;
|
|
896
834
|
/**
|
|
897
|
-
* Exit a parse tree produced by `ApexParser.
|
|
835
|
+
* Exit a parse tree produced by `ApexParser.undeleteStatement`.
|
|
898
836
|
* @param ctx the parse tree
|
|
899
837
|
*/
|
|
900
|
-
|
|
838
|
+
exitUndeleteStatement?: (ctx: UndeleteStatementContext) => void;
|
|
901
839
|
/**
|
|
902
|
-
* Enter a parse tree produced by `ApexParser.
|
|
840
|
+
* Enter a parse tree produced by `ApexParser.upsertStatement`.
|
|
903
841
|
* @param ctx the parse tree
|
|
904
842
|
*/
|
|
905
|
-
|
|
843
|
+
enterUpsertStatement?: (ctx: UpsertStatementContext) => void;
|
|
906
844
|
/**
|
|
907
|
-
* Exit a parse tree produced by `ApexParser.
|
|
845
|
+
* Exit a parse tree produced by `ApexParser.upsertStatement`.
|
|
908
846
|
* @param ctx the parse tree
|
|
909
847
|
*/
|
|
910
|
-
|
|
848
|
+
exitUpsertStatement?: (ctx: UpsertStatementContext) => void;
|
|
911
849
|
/**
|
|
912
|
-
* Enter a parse tree produced by `ApexParser.
|
|
850
|
+
* Enter a parse tree produced by `ApexParser.mergeStatement`.
|
|
913
851
|
* @param ctx the parse tree
|
|
914
852
|
*/
|
|
915
|
-
|
|
853
|
+
enterMergeStatement?: (ctx: MergeStatementContext) => void;
|
|
916
854
|
/**
|
|
917
|
-
* Exit a parse tree produced by `ApexParser.
|
|
855
|
+
* Exit a parse tree produced by `ApexParser.mergeStatement`.
|
|
918
856
|
* @param ctx the parse tree
|
|
919
857
|
*/
|
|
920
|
-
|
|
858
|
+
exitMergeStatement?: (ctx: MergeStatementContext) => void;
|
|
921
859
|
/**
|
|
922
|
-
* Enter a parse tree produced by `ApexParser.
|
|
860
|
+
* Enter a parse tree produced by `ApexParser.runAsStatement`.
|
|
923
861
|
* @param ctx the parse tree
|
|
924
862
|
*/
|
|
925
|
-
|
|
863
|
+
enterRunAsStatement?: (ctx: RunAsStatementContext) => void;
|
|
926
864
|
/**
|
|
927
|
-
* Exit a parse tree produced by `ApexParser.
|
|
865
|
+
* Exit a parse tree produced by `ApexParser.runAsStatement`.
|
|
928
866
|
* @param ctx the parse tree
|
|
929
867
|
*/
|
|
930
|
-
|
|
868
|
+
exitRunAsStatement?: (ctx: RunAsStatementContext) => void;
|
|
931
869
|
/**
|
|
932
|
-
* Enter a parse tree produced by `ApexParser.
|
|
870
|
+
* Enter a parse tree produced by `ApexParser.expressionStatement`.
|
|
933
871
|
* @param ctx the parse tree
|
|
934
872
|
*/
|
|
935
|
-
|
|
873
|
+
enterExpressionStatement?: (ctx: ExpressionStatementContext) => void;
|
|
936
874
|
/**
|
|
937
|
-
* Exit a parse tree produced by `ApexParser.
|
|
875
|
+
* Exit a parse tree produced by `ApexParser.expressionStatement`.
|
|
938
876
|
* @param ctx the parse tree
|
|
939
877
|
*/
|
|
940
|
-
|
|
878
|
+
exitExpressionStatement?: (ctx: ExpressionStatementContext) => void;
|
|
941
879
|
/**
|
|
942
|
-
* Enter a parse tree produced by `ApexParser.
|
|
880
|
+
* Enter a parse tree produced by `ApexParser.propertyBlock`.
|
|
943
881
|
* @param ctx the parse tree
|
|
944
882
|
*/
|
|
945
|
-
|
|
883
|
+
enterPropertyBlock?: (ctx: PropertyBlockContext) => void;
|
|
946
884
|
/**
|
|
947
|
-
* Exit a parse tree produced by `ApexParser.
|
|
885
|
+
* Exit a parse tree produced by `ApexParser.propertyBlock`.
|
|
948
886
|
* @param ctx the parse tree
|
|
949
887
|
*/
|
|
950
|
-
|
|
888
|
+
exitPropertyBlock?: (ctx: PropertyBlockContext) => void;
|
|
951
889
|
/**
|
|
952
|
-
* Enter a parse tree produced by `ApexParser.
|
|
890
|
+
* Enter a parse tree produced by `ApexParser.getter`.
|
|
953
891
|
* @param ctx the parse tree
|
|
954
892
|
*/
|
|
955
|
-
|
|
893
|
+
enterGetter?: (ctx: GetterContext) => void;
|
|
956
894
|
/**
|
|
957
|
-
* Exit a parse tree produced by `ApexParser.
|
|
895
|
+
* Exit a parse tree produced by `ApexParser.getter`.
|
|
958
896
|
* @param ctx the parse tree
|
|
959
897
|
*/
|
|
960
|
-
|
|
898
|
+
exitGetter?: (ctx: GetterContext) => void;
|
|
961
899
|
/**
|
|
962
|
-
* Enter a parse tree produced by `ApexParser.
|
|
900
|
+
* Enter a parse tree produced by `ApexParser.setter`.
|
|
963
901
|
* @param ctx the parse tree
|
|
964
902
|
*/
|
|
965
|
-
|
|
903
|
+
enterSetter?: (ctx: SetterContext) => void;
|
|
966
904
|
/**
|
|
967
|
-
* Exit a parse tree produced by `ApexParser.
|
|
905
|
+
* Exit a parse tree produced by `ApexParser.setter`.
|
|
968
906
|
* @param ctx the parse tree
|
|
969
907
|
*/
|
|
970
|
-
|
|
908
|
+
exitSetter?: (ctx: SetterContext) => void;
|
|
971
909
|
/**
|
|
972
|
-
* Enter a parse tree produced by `ApexParser.
|
|
910
|
+
* Enter a parse tree produced by `ApexParser.catchClause`.
|
|
973
911
|
* @param ctx the parse tree
|
|
974
912
|
*/
|
|
975
|
-
|
|
913
|
+
enterCatchClause?: (ctx: CatchClauseContext) => void;
|
|
976
914
|
/**
|
|
977
|
-
* Exit a parse tree produced by `ApexParser.
|
|
915
|
+
* Exit a parse tree produced by `ApexParser.catchClause`.
|
|
978
916
|
* @param ctx the parse tree
|
|
979
917
|
*/
|
|
980
|
-
|
|
918
|
+
exitCatchClause?: (ctx: CatchClauseContext) => void;
|
|
981
919
|
/**
|
|
982
|
-
* Enter a parse tree produced by `ApexParser.
|
|
920
|
+
* Enter a parse tree produced by `ApexParser.finallyBlock`.
|
|
983
921
|
* @param ctx the parse tree
|
|
984
922
|
*/
|
|
985
|
-
|
|
923
|
+
enterFinallyBlock?: (ctx: FinallyBlockContext) => void;
|
|
986
924
|
/**
|
|
987
|
-
* Exit a parse tree produced by `ApexParser.
|
|
925
|
+
* Exit a parse tree produced by `ApexParser.finallyBlock`.
|
|
988
926
|
* @param ctx the parse tree
|
|
989
927
|
*/
|
|
990
|
-
|
|
928
|
+
exitFinallyBlock?: (ctx: FinallyBlockContext) => void;
|
|
991
929
|
/**
|
|
992
|
-
* Enter a parse tree produced by `ApexParser.
|
|
930
|
+
* Enter a parse tree produced by `ApexParser.forControl`.
|
|
993
931
|
* @param ctx the parse tree
|
|
994
932
|
*/
|
|
995
|
-
|
|
933
|
+
enterForControl?: (ctx: ForControlContext) => void;
|
|
996
934
|
/**
|
|
997
|
-
* Exit a parse tree produced by `ApexParser.
|
|
935
|
+
* Exit a parse tree produced by `ApexParser.forControl`.
|
|
998
936
|
* @param ctx the parse tree
|
|
999
937
|
*/
|
|
1000
|
-
|
|
938
|
+
exitForControl?: (ctx: ForControlContext) => void;
|
|
1001
939
|
/**
|
|
1002
|
-
* Enter a parse tree produced by `ApexParser.
|
|
940
|
+
* Enter a parse tree produced by `ApexParser.forInit`.
|
|
1003
941
|
* @param ctx the parse tree
|
|
1004
942
|
*/
|
|
1005
|
-
|
|
943
|
+
enterForInit?: (ctx: ForInitContext) => void;
|
|
1006
944
|
/**
|
|
1007
|
-
* Exit a parse tree produced by `ApexParser.
|
|
945
|
+
* Exit a parse tree produced by `ApexParser.forInit`.
|
|
1008
946
|
* @param ctx the parse tree
|
|
1009
947
|
*/
|
|
1010
|
-
|
|
948
|
+
exitForInit?: (ctx: ForInitContext) => void;
|
|
1011
949
|
/**
|
|
1012
|
-
* Enter a parse tree produced by `ApexParser.
|
|
950
|
+
* Enter a parse tree produced by `ApexParser.enhancedForControl`.
|
|
1013
951
|
* @param ctx the parse tree
|
|
1014
952
|
*/
|
|
1015
|
-
|
|
953
|
+
enterEnhancedForControl?: (ctx: EnhancedForControlContext) => void;
|
|
1016
954
|
/**
|
|
1017
|
-
* Exit a parse tree produced by `ApexParser.
|
|
955
|
+
* Exit a parse tree produced by `ApexParser.enhancedForControl`.
|
|
1018
956
|
* @param ctx the parse tree
|
|
1019
957
|
*/
|
|
1020
|
-
|
|
958
|
+
exitEnhancedForControl?: (ctx: EnhancedForControlContext) => void;
|
|
1021
959
|
/**
|
|
1022
|
-
* Enter a parse tree produced by `ApexParser.
|
|
960
|
+
* Enter a parse tree produced by `ApexParser.forUpdate`.
|
|
1023
961
|
* @param ctx the parse tree
|
|
1024
962
|
*/
|
|
1025
|
-
|
|
963
|
+
enterForUpdate?: (ctx: ForUpdateContext) => void;
|
|
1026
964
|
/**
|
|
1027
|
-
* Exit a parse tree produced by `ApexParser.
|
|
965
|
+
* Exit a parse tree produced by `ApexParser.forUpdate`.
|
|
1028
966
|
* @param ctx the parse tree
|
|
1029
967
|
*/
|
|
1030
|
-
|
|
968
|
+
exitForUpdate?: (ctx: ForUpdateContext) => void;
|
|
1031
969
|
/**
|
|
1032
|
-
* Enter a parse tree produced by `ApexParser.
|
|
970
|
+
* Enter a parse tree produced by `ApexParser.parExpression`.
|
|
1033
971
|
* @param ctx the parse tree
|
|
1034
972
|
*/
|
|
1035
|
-
|
|
973
|
+
enterParExpression?: (ctx: ParExpressionContext) => void;
|
|
1036
974
|
/**
|
|
1037
|
-
* Exit a parse tree produced by `ApexParser.
|
|
975
|
+
* Exit a parse tree produced by `ApexParser.parExpression`.
|
|
1038
976
|
* @param ctx the parse tree
|
|
1039
977
|
*/
|
|
1040
|
-
|
|
978
|
+
exitParExpression?: (ctx: ParExpressionContext) => void;
|
|
1041
979
|
/**
|
|
1042
|
-
* Enter a parse tree produced by `ApexParser.
|
|
980
|
+
* Enter a parse tree produced by `ApexParser.expressionList`.
|
|
1043
981
|
* @param ctx the parse tree
|
|
1044
982
|
*/
|
|
1045
|
-
|
|
983
|
+
enterExpressionList?: (ctx: ExpressionListContext) => void;
|
|
1046
984
|
/**
|
|
1047
|
-
* Exit a parse tree produced by `ApexParser.
|
|
985
|
+
* Exit a parse tree produced by `ApexParser.expressionList`.
|
|
1048
986
|
* @param ctx the parse tree
|
|
1049
987
|
*/
|
|
1050
|
-
|
|
988
|
+
exitExpressionList?: (ctx: ExpressionListContext) => void;
|
|
1051
989
|
/**
|
|
1052
|
-
* Enter a parse tree produced by `
|
|
990
|
+
* Enter a parse tree produced by the `primaryExpression`
|
|
991
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1053
992
|
* @param ctx the parse tree
|
|
1054
993
|
*/
|
|
1055
|
-
|
|
994
|
+
enterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;
|
|
1056
995
|
/**
|
|
1057
|
-
* Exit a parse tree produced by `
|
|
996
|
+
* Exit a parse tree produced by the `primaryExpression`
|
|
997
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1058
998
|
* @param ctx the parse tree
|
|
1059
999
|
*/
|
|
1060
|
-
|
|
1000
|
+
exitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;
|
|
1061
1001
|
/**
|
|
1062
|
-
* Enter a parse tree produced by `
|
|
1002
|
+
* Enter a parse tree produced by the `arth1Expression`
|
|
1003
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1063
1004
|
* @param ctx the parse tree
|
|
1064
1005
|
*/
|
|
1065
|
-
|
|
1006
|
+
enterArth1Expression?: (ctx: Arth1ExpressionContext) => void;
|
|
1066
1007
|
/**
|
|
1067
|
-
* Exit a parse tree produced by `
|
|
1008
|
+
* Exit a parse tree produced by the `arth1Expression`
|
|
1009
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1068
1010
|
* @param ctx the parse tree
|
|
1069
1011
|
*/
|
|
1070
|
-
|
|
1012
|
+
exitArth1Expression?: (ctx: Arth1ExpressionContext) => void;
|
|
1071
1013
|
/**
|
|
1072
|
-
* Enter a parse tree produced by `
|
|
1014
|
+
* Enter a parse tree produced by the `coalExpression`
|
|
1015
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1073
1016
|
* @param ctx the parse tree
|
|
1074
1017
|
*/
|
|
1075
|
-
|
|
1018
|
+
enterCoalExpression?: (ctx: CoalExpressionContext) => void;
|
|
1076
1019
|
/**
|
|
1077
|
-
* Exit a parse tree produced by `
|
|
1020
|
+
* Exit a parse tree produced by the `coalExpression`
|
|
1021
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1078
1022
|
* @param ctx the parse tree
|
|
1079
1023
|
*/
|
|
1080
|
-
|
|
1024
|
+
exitCoalExpression?: (ctx: CoalExpressionContext) => void;
|
|
1081
1025
|
/**
|
|
1082
|
-
* Enter a parse tree produced by `
|
|
1026
|
+
* Enter a parse tree produced by the `dotExpression`
|
|
1027
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1083
1028
|
* @param ctx the parse tree
|
|
1084
1029
|
*/
|
|
1085
|
-
|
|
1030
|
+
enterDotExpression?: (ctx: DotExpressionContext) => void;
|
|
1086
1031
|
/**
|
|
1087
|
-
* Exit a parse tree produced by `
|
|
1032
|
+
* Exit a parse tree produced by the `dotExpression`
|
|
1033
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1088
1034
|
* @param ctx the parse tree
|
|
1089
1035
|
*/
|
|
1090
|
-
|
|
1036
|
+
exitDotExpression?: (ctx: DotExpressionContext) => void;
|
|
1091
1037
|
/**
|
|
1092
|
-
* Enter a parse tree produced by `
|
|
1038
|
+
* Enter a parse tree produced by the `bitOrExpression`
|
|
1039
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1093
1040
|
* @param ctx the parse tree
|
|
1094
1041
|
*/
|
|
1095
|
-
|
|
1042
|
+
enterBitOrExpression?: (ctx: BitOrExpressionContext) => void;
|
|
1096
1043
|
/**
|
|
1097
|
-
* Exit a parse tree produced by `
|
|
1044
|
+
* Exit a parse tree produced by the `bitOrExpression`
|
|
1045
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1098
1046
|
* @param ctx the parse tree
|
|
1099
1047
|
*/
|
|
1100
|
-
|
|
1048
|
+
exitBitOrExpression?: (ctx: BitOrExpressionContext) => void;
|
|
1101
1049
|
/**
|
|
1102
|
-
* Enter a parse tree produced by `
|
|
1050
|
+
* Enter a parse tree produced by the `arrayExpression`
|
|
1051
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1103
1052
|
* @param ctx the parse tree
|
|
1104
1053
|
*/
|
|
1105
|
-
|
|
1054
|
+
enterArrayExpression?: (ctx: ArrayExpressionContext) => void;
|
|
1106
1055
|
/**
|
|
1107
|
-
* Exit a parse tree produced by `
|
|
1056
|
+
* Exit a parse tree produced by the `arrayExpression`
|
|
1057
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1108
1058
|
* @param ctx the parse tree
|
|
1109
1059
|
*/
|
|
1110
|
-
|
|
1060
|
+
exitArrayExpression?: (ctx: ArrayExpressionContext) => void;
|
|
1111
1061
|
/**
|
|
1112
|
-
* Enter a parse tree produced by `
|
|
1062
|
+
* Enter a parse tree produced by the `newExpression`
|
|
1063
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1113
1064
|
* @param ctx the parse tree
|
|
1114
1065
|
*/
|
|
1115
|
-
|
|
1066
|
+
enterNewExpression?: (ctx: NewExpressionContext) => void;
|
|
1116
1067
|
/**
|
|
1117
|
-
* Exit a parse tree produced by `
|
|
1068
|
+
* Exit a parse tree produced by the `newExpression`
|
|
1069
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1118
1070
|
* @param ctx the parse tree
|
|
1119
1071
|
*/
|
|
1120
|
-
|
|
1072
|
+
exitNewExpression?: (ctx: NewExpressionContext) => void;
|
|
1121
1073
|
/**
|
|
1122
|
-
* Enter a parse tree produced by `
|
|
1074
|
+
* Enter a parse tree produced by the `assignExpression`
|
|
1075
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1123
1076
|
* @param ctx the parse tree
|
|
1124
1077
|
*/
|
|
1125
|
-
|
|
1078
|
+
enterAssignExpression?: (ctx: AssignExpressionContext) => void;
|
|
1126
1079
|
/**
|
|
1127
|
-
* Exit a parse tree produced by `
|
|
1080
|
+
* Exit a parse tree produced by the `assignExpression`
|
|
1081
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1128
1082
|
* @param ctx the parse tree
|
|
1129
1083
|
*/
|
|
1130
|
-
|
|
1084
|
+
exitAssignExpression?: (ctx: AssignExpressionContext) => void;
|
|
1131
1085
|
/**
|
|
1132
|
-
* Enter a parse tree produced by `
|
|
1086
|
+
* Enter a parse tree produced by the `methodCallExpression`
|
|
1087
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1133
1088
|
* @param ctx the parse tree
|
|
1134
1089
|
*/
|
|
1135
|
-
|
|
1090
|
+
enterMethodCallExpression?: (ctx: MethodCallExpressionContext) => void;
|
|
1136
1091
|
/**
|
|
1137
|
-
* Exit a parse tree produced by `
|
|
1092
|
+
* Exit a parse tree produced by the `methodCallExpression`
|
|
1093
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1138
1094
|
* @param ctx the parse tree
|
|
1139
1095
|
*/
|
|
1140
|
-
|
|
1096
|
+
exitMethodCallExpression?: (ctx: MethodCallExpressionContext) => void;
|
|
1141
1097
|
/**
|
|
1142
|
-
* Enter a parse tree produced by `
|
|
1098
|
+
* Enter a parse tree produced by the `bitNotExpression`
|
|
1099
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1143
1100
|
* @param ctx the parse tree
|
|
1144
1101
|
*/
|
|
1145
|
-
|
|
1102
|
+
enterBitNotExpression?: (ctx: BitNotExpressionContext) => void;
|
|
1146
1103
|
/**
|
|
1147
|
-
* Exit a parse tree produced by `
|
|
1104
|
+
* Exit a parse tree produced by the `bitNotExpression`
|
|
1105
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1148
1106
|
* @param ctx the parse tree
|
|
1149
1107
|
*/
|
|
1150
|
-
|
|
1108
|
+
exitBitNotExpression?: (ctx: BitNotExpressionContext) => void;
|
|
1151
1109
|
/**
|
|
1152
|
-
* Enter a parse tree produced by `
|
|
1110
|
+
* Enter a parse tree produced by the `arth2Expression`
|
|
1111
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1153
1112
|
* @param ctx the parse tree
|
|
1154
1113
|
*/
|
|
1155
|
-
|
|
1114
|
+
enterArth2Expression?: (ctx: Arth2ExpressionContext) => void;
|
|
1156
1115
|
/**
|
|
1157
|
-
* Exit a parse tree produced by `
|
|
1116
|
+
* Exit a parse tree produced by the `arth2Expression`
|
|
1117
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1158
1118
|
* @param ctx the parse tree
|
|
1159
1119
|
*/
|
|
1160
|
-
|
|
1120
|
+
exitArth2Expression?: (ctx: Arth2ExpressionContext) => void;
|
|
1161
1121
|
/**
|
|
1162
|
-
* Enter a parse tree produced by `
|
|
1122
|
+
* Enter a parse tree produced by the `logAndExpression`
|
|
1123
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1163
1124
|
* @param ctx the parse tree
|
|
1164
1125
|
*/
|
|
1165
|
-
|
|
1126
|
+
enterLogAndExpression?: (ctx: LogAndExpressionContext) => void;
|
|
1166
1127
|
/**
|
|
1167
|
-
* Exit a parse tree produced by `
|
|
1128
|
+
* Exit a parse tree produced by the `logAndExpression`
|
|
1129
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1168
1130
|
* @param ctx the parse tree
|
|
1169
1131
|
*/
|
|
1170
|
-
|
|
1132
|
+
exitLogAndExpression?: (ctx: LogAndExpressionContext) => void;
|
|
1171
1133
|
/**
|
|
1172
|
-
* Enter a parse tree produced by `
|
|
1134
|
+
* Enter a parse tree produced by the `castExpression`
|
|
1135
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1173
1136
|
* @param ctx the parse tree
|
|
1174
1137
|
*/
|
|
1175
|
-
|
|
1138
|
+
enterCastExpression?: (ctx: CastExpressionContext) => void;
|
|
1176
1139
|
/**
|
|
1177
|
-
* Exit a parse tree produced by `
|
|
1140
|
+
* Exit a parse tree produced by the `castExpression`
|
|
1141
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1178
1142
|
* @param ctx the parse tree
|
|
1179
1143
|
*/
|
|
1180
|
-
|
|
1144
|
+
exitCastExpression?: (ctx: CastExpressionContext) => void;
|
|
1181
1145
|
/**
|
|
1182
|
-
* Enter a parse tree produced by `
|
|
1146
|
+
* Enter a parse tree produced by the `bitAndExpression`
|
|
1147
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1183
1148
|
* @param ctx the parse tree
|
|
1184
1149
|
*/
|
|
1185
|
-
|
|
1150
|
+
enterBitAndExpression?: (ctx: BitAndExpressionContext) => void;
|
|
1186
1151
|
/**
|
|
1187
|
-
* Exit a parse tree produced by `
|
|
1152
|
+
* Exit a parse tree produced by the `bitAndExpression`
|
|
1153
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1188
1154
|
* @param ctx the parse tree
|
|
1189
1155
|
*/
|
|
1190
|
-
|
|
1156
|
+
exitBitAndExpression?: (ctx: BitAndExpressionContext) => void;
|
|
1191
1157
|
/**
|
|
1192
|
-
* Enter a parse tree produced by `
|
|
1158
|
+
* Enter a parse tree produced by the `cmpExpression`
|
|
1159
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1193
1160
|
* @param ctx the parse tree
|
|
1194
1161
|
*/
|
|
1195
|
-
|
|
1162
|
+
enterCmpExpression?: (ctx: CmpExpressionContext) => void;
|
|
1196
1163
|
/**
|
|
1197
|
-
* Exit a parse tree produced by `
|
|
1164
|
+
* Exit a parse tree produced by the `cmpExpression`
|
|
1165
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1198
1166
|
* @param ctx the parse tree
|
|
1199
1167
|
*/
|
|
1200
|
-
|
|
1168
|
+
exitCmpExpression?: (ctx: CmpExpressionContext) => void;
|
|
1201
1169
|
/**
|
|
1202
|
-
* Enter a parse tree produced by `
|
|
1170
|
+
* Enter a parse tree produced by the `bitExpression`
|
|
1171
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1203
1172
|
* @param ctx the parse tree
|
|
1204
1173
|
*/
|
|
1205
|
-
|
|
1174
|
+
enterBitExpression?: (ctx: BitExpressionContext) => void;
|
|
1206
1175
|
/**
|
|
1207
|
-
* Exit a parse tree produced by `
|
|
1176
|
+
* Exit a parse tree produced by the `bitExpression`
|
|
1177
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1208
1178
|
* @param ctx the parse tree
|
|
1209
1179
|
*/
|
|
1210
|
-
|
|
1180
|
+
exitBitExpression?: (ctx: BitExpressionContext) => void;
|
|
1211
1181
|
/**
|
|
1212
|
-
* Enter a parse tree produced by `
|
|
1182
|
+
* Enter a parse tree produced by the `logOrExpression`
|
|
1183
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1213
1184
|
* @param ctx the parse tree
|
|
1214
1185
|
*/
|
|
1215
|
-
|
|
1186
|
+
enterLogOrExpression?: (ctx: LogOrExpressionContext) => void;
|
|
1216
1187
|
/**
|
|
1217
|
-
* Exit a parse tree produced by `
|
|
1188
|
+
* Exit a parse tree produced by the `logOrExpression`
|
|
1189
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1218
1190
|
* @param ctx the parse tree
|
|
1219
1191
|
*/
|
|
1220
|
-
|
|
1192
|
+
exitLogOrExpression?: (ctx: LogOrExpressionContext) => void;
|
|
1221
1193
|
/**
|
|
1222
|
-
* Enter a parse tree produced by `
|
|
1194
|
+
* Enter a parse tree produced by the `condExpression`
|
|
1195
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1223
1196
|
* @param ctx the parse tree
|
|
1224
1197
|
*/
|
|
1225
|
-
|
|
1198
|
+
enterCondExpression?: (ctx: CondExpressionContext) => void;
|
|
1226
1199
|
/**
|
|
1227
|
-
* Exit a parse tree produced by `
|
|
1200
|
+
* Exit a parse tree produced by the `condExpression`
|
|
1201
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1228
1202
|
* @param ctx the parse tree
|
|
1229
1203
|
*/
|
|
1230
|
-
|
|
1204
|
+
exitCondExpression?: (ctx: CondExpressionContext) => void;
|
|
1231
1205
|
/**
|
|
1232
|
-
* Enter a parse tree produced by `
|
|
1206
|
+
* Enter a parse tree produced by the `equalityExpression`
|
|
1207
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1233
1208
|
* @param ctx the parse tree
|
|
1234
1209
|
*/
|
|
1235
|
-
|
|
1210
|
+
enterEqualityExpression?: (ctx: EqualityExpressionContext) => void;
|
|
1236
1211
|
/**
|
|
1237
|
-
* Exit a parse tree produced by `
|
|
1212
|
+
* Exit a parse tree produced by the `equalityExpression`
|
|
1213
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1238
1214
|
* @param ctx the parse tree
|
|
1239
1215
|
*/
|
|
1240
|
-
|
|
1216
|
+
exitEqualityExpression?: (ctx: EqualityExpressionContext) => void;
|
|
1241
1217
|
/**
|
|
1242
|
-
* Enter a parse tree produced by `
|
|
1218
|
+
* Enter a parse tree produced by the `postOpExpression`
|
|
1219
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1243
1220
|
* @param ctx the parse tree
|
|
1244
1221
|
*/
|
|
1245
|
-
|
|
1222
|
+
enterPostOpExpression?: (ctx: PostOpExpressionContext) => void;
|
|
1246
1223
|
/**
|
|
1247
|
-
* Exit a parse tree produced by `
|
|
1224
|
+
* Exit a parse tree produced by the `postOpExpression`
|
|
1225
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1248
1226
|
* @param ctx the parse tree
|
|
1249
1227
|
*/
|
|
1250
|
-
|
|
1228
|
+
exitPostOpExpression?: (ctx: PostOpExpressionContext) => void;
|
|
1251
1229
|
/**
|
|
1252
|
-
* Enter a parse tree produced by `
|
|
1230
|
+
* Enter a parse tree produced by the `negExpression`
|
|
1231
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1253
1232
|
* @param ctx the parse tree
|
|
1254
1233
|
*/
|
|
1255
|
-
|
|
1234
|
+
enterNegExpression?: (ctx: NegExpressionContext) => void;
|
|
1256
1235
|
/**
|
|
1257
|
-
* Exit a parse tree produced by `
|
|
1236
|
+
* Exit a parse tree produced by the `negExpression`
|
|
1237
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1258
1238
|
* @param ctx the parse tree
|
|
1259
1239
|
*/
|
|
1260
|
-
|
|
1240
|
+
exitNegExpression?: (ctx: NegExpressionContext) => void;
|
|
1261
1241
|
/**
|
|
1262
|
-
* Enter a parse tree produced by `
|
|
1242
|
+
* Enter a parse tree produced by the `preOpExpression`
|
|
1243
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1263
1244
|
* @param ctx the parse tree
|
|
1264
1245
|
*/
|
|
1265
|
-
|
|
1246
|
+
enterPreOpExpression?: (ctx: PreOpExpressionContext) => void;
|
|
1266
1247
|
/**
|
|
1267
|
-
* Exit a parse tree produced by `
|
|
1248
|
+
* Exit a parse tree produced by the `preOpExpression`
|
|
1249
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1268
1250
|
* @param ctx the parse tree
|
|
1269
1251
|
*/
|
|
1270
|
-
|
|
1252
|
+
exitPreOpExpression?: (ctx: PreOpExpressionContext) => void;
|
|
1271
1253
|
/**
|
|
1272
|
-
* Enter a parse tree produced by `
|
|
1254
|
+
* Enter a parse tree produced by the `subExpression`
|
|
1255
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1273
1256
|
* @param ctx the parse tree
|
|
1274
1257
|
*/
|
|
1275
|
-
|
|
1258
|
+
enterSubExpression?: (ctx: SubExpressionContext) => void;
|
|
1276
1259
|
/**
|
|
1277
|
-
* Exit a parse tree produced by `
|
|
1260
|
+
* Exit a parse tree produced by the `subExpression`
|
|
1261
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1278
1262
|
* @param ctx the parse tree
|
|
1279
1263
|
*/
|
|
1280
|
-
|
|
1264
|
+
exitSubExpression?: (ctx: SubExpressionContext) => void;
|
|
1281
1265
|
/**
|
|
1282
|
-
* Enter a parse tree produced by `
|
|
1266
|
+
* Enter a parse tree produced by the `instanceOfExpression`
|
|
1267
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1283
1268
|
* @param ctx the parse tree
|
|
1284
1269
|
*/
|
|
1285
|
-
|
|
1270
|
+
enterInstanceOfExpression?: (ctx: InstanceOfExpressionContext) => void;
|
|
1286
1271
|
/**
|
|
1287
|
-
* Exit a parse tree produced by `
|
|
1272
|
+
* Exit a parse tree produced by the `instanceOfExpression`
|
|
1273
|
+
* labeled alternative in `ApexParser.expression`.
|
|
1288
1274
|
* @param ctx the parse tree
|
|
1289
1275
|
*/
|
|
1290
|
-
|
|
1276
|
+
exitInstanceOfExpression?: (ctx: InstanceOfExpressionContext) => void;
|
|
1291
1277
|
/**
|
|
1292
|
-
* Enter a parse tree produced by `
|
|
1278
|
+
* Enter a parse tree produced by the `thisPrimary`
|
|
1279
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1293
1280
|
* @param ctx the parse tree
|
|
1294
1281
|
*/
|
|
1295
|
-
|
|
1282
|
+
enterThisPrimary?: (ctx: ThisPrimaryContext) => void;
|
|
1296
1283
|
/**
|
|
1297
|
-
* Exit a parse tree produced by `
|
|
1284
|
+
* Exit a parse tree produced by the `thisPrimary`
|
|
1285
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1298
1286
|
* @param ctx the parse tree
|
|
1299
1287
|
*/
|
|
1300
|
-
|
|
1288
|
+
exitThisPrimary?: (ctx: ThisPrimaryContext) => void;
|
|
1301
1289
|
/**
|
|
1302
|
-
* Enter a parse tree produced by `
|
|
1290
|
+
* Enter a parse tree produced by the `superPrimary`
|
|
1291
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1303
1292
|
* @param ctx the parse tree
|
|
1304
1293
|
*/
|
|
1305
|
-
|
|
1294
|
+
enterSuperPrimary?: (ctx: SuperPrimaryContext) => void;
|
|
1306
1295
|
/**
|
|
1307
|
-
* Exit a parse tree produced by `
|
|
1296
|
+
* Exit a parse tree produced by the `superPrimary`
|
|
1297
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1308
1298
|
* @param ctx the parse tree
|
|
1309
1299
|
*/
|
|
1310
|
-
|
|
1300
|
+
exitSuperPrimary?: (ctx: SuperPrimaryContext) => void;
|
|
1311
1301
|
/**
|
|
1312
|
-
* Enter a parse tree produced by `
|
|
1302
|
+
* Enter a parse tree produced by the `literalPrimary`
|
|
1303
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1313
1304
|
* @param ctx the parse tree
|
|
1314
1305
|
*/
|
|
1315
|
-
|
|
1306
|
+
enterLiteralPrimary?: (ctx: LiteralPrimaryContext) => void;
|
|
1316
1307
|
/**
|
|
1317
|
-
* Exit a parse tree produced by `
|
|
1308
|
+
* Exit a parse tree produced by the `literalPrimary`
|
|
1309
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1318
1310
|
* @param ctx the parse tree
|
|
1319
1311
|
*/
|
|
1320
|
-
|
|
1312
|
+
exitLiteralPrimary?: (ctx: LiteralPrimaryContext) => void;
|
|
1321
1313
|
/**
|
|
1322
|
-
* Enter a parse tree produced by `
|
|
1314
|
+
* Enter a parse tree produced by the `typeRefPrimary`
|
|
1315
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1323
1316
|
* @param ctx the parse tree
|
|
1324
1317
|
*/
|
|
1325
|
-
|
|
1318
|
+
enterTypeRefPrimary?: (ctx: TypeRefPrimaryContext) => void;
|
|
1326
1319
|
/**
|
|
1327
|
-
* Exit a parse tree produced by `
|
|
1320
|
+
* Exit a parse tree produced by the `typeRefPrimary`
|
|
1321
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1328
1322
|
* @param ctx the parse tree
|
|
1329
1323
|
*/
|
|
1330
|
-
|
|
1324
|
+
exitTypeRefPrimary?: (ctx: TypeRefPrimaryContext) => void;
|
|
1331
1325
|
/**
|
|
1332
|
-
* Enter a parse tree produced by `
|
|
1326
|
+
* Enter a parse tree produced by the `voidPrimary`
|
|
1327
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1333
1328
|
* @param ctx the parse tree
|
|
1334
1329
|
*/
|
|
1335
|
-
|
|
1330
|
+
enterVoidPrimary?: (ctx: VoidPrimaryContext) => void;
|
|
1336
1331
|
/**
|
|
1337
|
-
* Exit a parse tree produced by `
|
|
1332
|
+
* Exit a parse tree produced by the `voidPrimary`
|
|
1333
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1338
1334
|
* @param ctx the parse tree
|
|
1339
1335
|
*/
|
|
1340
|
-
|
|
1336
|
+
exitVoidPrimary?: (ctx: VoidPrimaryContext) => void;
|
|
1341
1337
|
/**
|
|
1342
|
-
* Enter a parse tree produced by `
|
|
1338
|
+
* Enter a parse tree produced by the `idPrimary`
|
|
1339
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1340
|
+
* @param ctx the parse tree
|
|
1341
|
+
*/
|
|
1342
|
+
enterIdPrimary?: (ctx: IdPrimaryContext) => void;
|
|
1343
|
+
/**
|
|
1344
|
+
* Exit a parse tree produced by the `idPrimary`
|
|
1345
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1346
|
+
* @param ctx the parse tree
|
|
1347
|
+
*/
|
|
1348
|
+
exitIdPrimary?: (ctx: IdPrimaryContext) => void;
|
|
1349
|
+
/**
|
|
1350
|
+
* Enter a parse tree produced by the `soqlPrimary`
|
|
1351
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1352
|
+
* @param ctx the parse tree
|
|
1353
|
+
*/
|
|
1354
|
+
enterSoqlPrimary?: (ctx: SoqlPrimaryContext) => void;
|
|
1355
|
+
/**
|
|
1356
|
+
* Exit a parse tree produced by the `soqlPrimary`
|
|
1357
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1343
1358
|
* @param ctx the parse tree
|
|
1344
1359
|
*/
|
|
1345
|
-
|
|
1360
|
+
exitSoqlPrimary?: (ctx: SoqlPrimaryContext) => void;
|
|
1346
1361
|
/**
|
|
1347
|
-
*
|
|
1362
|
+
* Enter a parse tree produced by the `soslPrimary`
|
|
1363
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1348
1364
|
* @param ctx the parse tree
|
|
1349
1365
|
*/
|
|
1350
|
-
|
|
1366
|
+
enterSoslPrimary?: (ctx: SoslPrimaryContext) => void;
|
|
1367
|
+
/**
|
|
1368
|
+
* Exit a parse tree produced by the `soslPrimary`
|
|
1369
|
+
* labeled alternative in `ApexParser.primary`.
|
|
1370
|
+
* @param ctx the parse tree
|
|
1371
|
+
*/
|
|
1372
|
+
exitSoslPrimary?: (ctx: SoslPrimaryContext) => void;
|
|
1351
1373
|
/**
|
|
1352
1374
|
* Enter a parse tree produced by `ApexParser.methodCall`.
|
|
1353
1375
|
* @param ctx the parse tree
|