@apexdevtools/apex-parser 3.0.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +39 -38
- package/lib/ApexLexer.d.ts +191 -179
- package/lib/ApexLexer.js +1452 -1328
- package/lib/ApexLexer.js.map +1 -1
- package/lib/ApexParser.d.ts +393 -270
- package/lib/ApexParser.js +3881 -2670
- package/lib/ApexParser.js.map +1 -1
- package/lib/ApexParserListener.d.ts +57 -0
- package/lib/ApexParserVisitor.d.ts +36 -0
- package/lib/__tests__/ApexParserTest.js +63 -76
- package/lib/__tests__/ApexParserTest.js.map +1 -1
- package/lib/__tests__/SOQLParserTest.d.ts +1 -0
- package/lib/__tests__/SOQLParserTest.js +59 -0
- package/lib/__tests__/SOQLParserTest.js.map +1 -0
- package/lib/__tests__/SOSLParserTest.d.ts +1 -0
- package/lib/__tests__/SOSLParserTest.js +35 -0
- package/lib/__tests__/SOSLParserTest.js.map +1 -0
- package/lib/__tests__/SyntaxErrorCounter.d.ts +8 -0
- package/lib/__tests__/SyntaxErrorCounter.js +30 -0
- package/lib/__tests__/SyntaxErrorCounter.js.map +1 -0
- package/lib/__tests__/system/SampleParseSys.d.ts +1 -0
- package/lib/__tests__/system/SampleParseSys.js +72 -0
- package/lib/__tests__/system/SampleParseSys.js.map +1 -0
- package/lib/index.d.ts +25 -9
- package/lib/index.js +99 -11
- package/lib/index.js.map +1 -1
- package/package.json +7 -4
package/lib/ApexParser.d.ts
CHANGED
|
@@ -65,185 +65,197 @@ export declare class ApexParser extends Parser {
|
|
|
65
65
|
static readonly WITHOUT = 54;
|
|
66
66
|
static readonly LIST = 55;
|
|
67
67
|
static readonly MAP = 56;
|
|
68
|
-
static readonly
|
|
69
|
-
static readonly
|
|
70
|
-
static readonly
|
|
71
|
-
static readonly
|
|
72
|
-
static readonly
|
|
73
|
-
static readonly
|
|
74
|
-
static readonly
|
|
75
|
-
static readonly
|
|
76
|
-
static readonly
|
|
77
|
-
static readonly
|
|
78
|
-
static readonly
|
|
79
|
-
static readonly
|
|
80
|
-
static readonly
|
|
81
|
-
static readonly
|
|
82
|
-
static readonly
|
|
83
|
-
static readonly
|
|
84
|
-
static readonly
|
|
85
|
-
static readonly
|
|
86
|
-
static readonly
|
|
87
|
-
static readonly
|
|
88
|
-
static readonly
|
|
89
|
-
static readonly
|
|
90
|
-
static readonly
|
|
91
|
-
static readonly
|
|
92
|
-
static readonly
|
|
93
|
-
static readonly
|
|
94
|
-
static readonly
|
|
95
|
-
static readonly
|
|
96
|
-
static readonly
|
|
97
|
-
static readonly
|
|
98
|
-
static readonly
|
|
99
|
-
static readonly
|
|
100
|
-
static readonly
|
|
101
|
-
static readonly
|
|
102
|
-
static readonly
|
|
103
|
-
static readonly
|
|
104
|
-
static readonly
|
|
105
|
-
static readonly
|
|
106
|
-
static readonly
|
|
107
|
-
static readonly
|
|
108
|
-
static readonly
|
|
109
|
-
static readonly
|
|
110
|
-
static readonly
|
|
111
|
-
static readonly
|
|
112
|
-
static readonly
|
|
113
|
-
static readonly
|
|
114
|
-
static readonly
|
|
115
|
-
static readonly
|
|
116
|
-
static readonly
|
|
117
|
-
static readonly
|
|
118
|
-
static readonly
|
|
119
|
-
static readonly
|
|
120
|
-
static readonly
|
|
121
|
-
static readonly
|
|
122
|
-
static readonly
|
|
123
|
-
static readonly
|
|
124
|
-
static readonly
|
|
125
|
-
static readonly
|
|
126
|
-
static readonly
|
|
127
|
-
static readonly
|
|
128
|
-
static readonly
|
|
129
|
-
static readonly
|
|
130
|
-
static readonly
|
|
131
|
-
static readonly
|
|
132
|
-
static readonly
|
|
133
|
-
static readonly
|
|
134
|
-
static readonly
|
|
135
|
-
static readonly
|
|
136
|
-
static readonly
|
|
137
|
-
static readonly
|
|
138
|
-
static readonly
|
|
139
|
-
static readonly
|
|
140
|
-
static readonly
|
|
141
|
-
static readonly
|
|
142
|
-
static readonly
|
|
143
|
-
static readonly
|
|
144
|
-
static readonly
|
|
145
|
-
static readonly
|
|
146
|
-
static readonly
|
|
147
|
-
static readonly
|
|
148
|
-
static readonly
|
|
149
|
-
static readonly
|
|
150
|
-
static readonly
|
|
151
|
-
static readonly
|
|
152
|
-
static readonly
|
|
153
|
-
static readonly
|
|
154
|
-
static readonly
|
|
155
|
-
static readonly
|
|
156
|
-
static readonly
|
|
157
|
-
static readonly
|
|
158
|
-
static readonly
|
|
159
|
-
static readonly
|
|
160
|
-
static readonly
|
|
161
|
-
static readonly
|
|
162
|
-
static readonly
|
|
163
|
-
static readonly
|
|
164
|
-
static readonly
|
|
165
|
-
static readonly
|
|
166
|
-
static readonly
|
|
167
|
-
static readonly
|
|
168
|
-
static readonly
|
|
169
|
-
static readonly
|
|
170
|
-
static readonly
|
|
171
|
-
static readonly
|
|
172
|
-
static readonly
|
|
173
|
-
static readonly
|
|
174
|
-
static readonly
|
|
175
|
-
static readonly
|
|
176
|
-
static readonly
|
|
177
|
-
static readonly
|
|
178
|
-
static readonly
|
|
179
|
-
static readonly
|
|
180
|
-
static readonly
|
|
181
|
-
static readonly
|
|
182
|
-
static readonly
|
|
183
|
-
static readonly
|
|
184
|
-
static readonly
|
|
185
|
-
static readonly
|
|
186
|
-
static readonly
|
|
187
|
-
static readonly
|
|
188
|
-
static readonly
|
|
189
|
-
static readonly
|
|
190
|
-
static readonly
|
|
191
|
-
static readonly
|
|
192
|
-
static readonly
|
|
193
|
-
static readonly
|
|
194
|
-
static readonly
|
|
195
|
-
static readonly
|
|
196
|
-
static readonly
|
|
197
|
-
static readonly
|
|
198
|
-
static readonly
|
|
199
|
-
static readonly
|
|
200
|
-
static readonly
|
|
201
|
-
static readonly
|
|
202
|
-
static readonly
|
|
203
|
-
static readonly
|
|
204
|
-
static readonly
|
|
205
|
-
static readonly
|
|
206
|
-
static readonly
|
|
207
|
-
static readonly
|
|
208
|
-
static readonly
|
|
209
|
-
static readonly
|
|
210
|
-
static readonly
|
|
211
|
-
static readonly
|
|
212
|
-
static readonly
|
|
213
|
-
static readonly
|
|
214
|
-
static readonly
|
|
215
|
-
static readonly
|
|
216
|
-
static readonly
|
|
217
|
-
static readonly
|
|
218
|
-
static readonly
|
|
219
|
-
static readonly
|
|
220
|
-
static readonly
|
|
221
|
-
static readonly
|
|
222
|
-
static readonly
|
|
223
|
-
static readonly
|
|
224
|
-
static readonly
|
|
225
|
-
static readonly
|
|
226
|
-
static readonly
|
|
227
|
-
static readonly
|
|
228
|
-
static readonly
|
|
229
|
-
static readonly
|
|
230
|
-
static readonly
|
|
231
|
-
static readonly
|
|
232
|
-
static readonly
|
|
233
|
-
static readonly
|
|
234
|
-
static readonly
|
|
235
|
-
static readonly
|
|
236
|
-
static readonly
|
|
237
|
-
static readonly
|
|
238
|
-
static readonly
|
|
239
|
-
static readonly
|
|
240
|
-
static readonly
|
|
241
|
-
static readonly
|
|
242
|
-
static readonly
|
|
243
|
-
static readonly
|
|
244
|
-
static readonly
|
|
245
|
-
static readonly
|
|
246
|
-
static readonly
|
|
68
|
+
static readonly SYSTEM = 57;
|
|
69
|
+
static readonly USER = 58;
|
|
70
|
+
static readonly SELECT = 59;
|
|
71
|
+
static readonly COUNT = 60;
|
|
72
|
+
static readonly FROM = 61;
|
|
73
|
+
static readonly AS = 62;
|
|
74
|
+
static readonly USING = 63;
|
|
75
|
+
static readonly SCOPE = 64;
|
|
76
|
+
static readonly WHERE = 65;
|
|
77
|
+
static readonly ORDER = 66;
|
|
78
|
+
static readonly BY = 67;
|
|
79
|
+
static readonly LIMIT = 68;
|
|
80
|
+
static readonly SOQLAND = 69;
|
|
81
|
+
static readonly SOQLOR = 70;
|
|
82
|
+
static readonly NOT = 71;
|
|
83
|
+
static readonly AVG = 72;
|
|
84
|
+
static readonly COUNT_DISTINCT = 73;
|
|
85
|
+
static readonly MIN = 74;
|
|
86
|
+
static readonly MAX = 75;
|
|
87
|
+
static readonly SUM = 76;
|
|
88
|
+
static readonly TYPEOF = 77;
|
|
89
|
+
static readonly END = 78;
|
|
90
|
+
static readonly THEN = 79;
|
|
91
|
+
static readonly LIKE = 80;
|
|
92
|
+
static readonly IN = 81;
|
|
93
|
+
static readonly INCLUDES = 82;
|
|
94
|
+
static readonly EXCLUDES = 83;
|
|
95
|
+
static readonly ASC = 84;
|
|
96
|
+
static readonly DESC = 85;
|
|
97
|
+
static readonly NULLS = 86;
|
|
98
|
+
static readonly FIRST = 87;
|
|
99
|
+
static readonly LAST = 88;
|
|
100
|
+
static readonly GROUP = 89;
|
|
101
|
+
static readonly ALL = 90;
|
|
102
|
+
static readonly ROWS = 91;
|
|
103
|
+
static readonly VIEW = 92;
|
|
104
|
+
static readonly HAVING = 93;
|
|
105
|
+
static readonly ROLLUP = 94;
|
|
106
|
+
static readonly TOLABEL = 95;
|
|
107
|
+
static readonly OFFSET = 96;
|
|
108
|
+
static readonly DATA = 97;
|
|
109
|
+
static readonly CATEGORY = 98;
|
|
110
|
+
static readonly AT = 99;
|
|
111
|
+
static readonly ABOVE = 100;
|
|
112
|
+
static readonly BELOW = 101;
|
|
113
|
+
static readonly ABOVE_OR_BELOW = 102;
|
|
114
|
+
static readonly SECURITY_ENFORCED = 103;
|
|
115
|
+
static readonly SYSTEM_MODE = 104;
|
|
116
|
+
static readonly USER_MODE = 105;
|
|
117
|
+
static readonly REFERENCE = 106;
|
|
118
|
+
static readonly CUBE = 107;
|
|
119
|
+
static readonly FORMAT = 108;
|
|
120
|
+
static readonly TRACKING = 109;
|
|
121
|
+
static readonly VIEWSTAT = 110;
|
|
122
|
+
static readonly CUSTOM = 111;
|
|
123
|
+
static readonly STANDARD = 112;
|
|
124
|
+
static readonly DISTANCE = 113;
|
|
125
|
+
static readonly GEOLOCATION = 114;
|
|
126
|
+
static readonly CALENDAR_MONTH = 115;
|
|
127
|
+
static readonly CALENDAR_QUARTER = 116;
|
|
128
|
+
static readonly CALENDAR_YEAR = 117;
|
|
129
|
+
static readonly DAY_IN_MONTH = 118;
|
|
130
|
+
static readonly DAY_IN_WEEK = 119;
|
|
131
|
+
static readonly DAY_IN_YEAR = 120;
|
|
132
|
+
static readonly DAY_ONLY = 121;
|
|
133
|
+
static readonly FISCAL_MONTH = 122;
|
|
134
|
+
static readonly FISCAL_QUARTER = 123;
|
|
135
|
+
static readonly FISCAL_YEAR = 124;
|
|
136
|
+
static readonly HOUR_IN_DAY = 125;
|
|
137
|
+
static readonly WEEK_IN_MONTH = 126;
|
|
138
|
+
static readonly WEEK_IN_YEAR = 127;
|
|
139
|
+
static readonly CONVERT_TIMEZONE = 128;
|
|
140
|
+
static readonly YESTERDAY = 129;
|
|
141
|
+
static readonly TODAY = 130;
|
|
142
|
+
static readonly TOMORROW = 131;
|
|
143
|
+
static readonly LAST_WEEK = 132;
|
|
144
|
+
static readonly THIS_WEEK = 133;
|
|
145
|
+
static readonly NEXT_WEEK = 134;
|
|
146
|
+
static readonly LAST_MONTH = 135;
|
|
147
|
+
static readonly THIS_MONTH = 136;
|
|
148
|
+
static readonly NEXT_MONTH = 137;
|
|
149
|
+
static readonly LAST_90_DAYS = 138;
|
|
150
|
+
static readonly NEXT_90_DAYS = 139;
|
|
151
|
+
static readonly LAST_N_DAYS_N = 140;
|
|
152
|
+
static readonly NEXT_N_DAYS_N = 141;
|
|
153
|
+
static readonly N_DAYS_AGO_N = 142;
|
|
154
|
+
static readonly NEXT_N_WEEKS_N = 143;
|
|
155
|
+
static readonly LAST_N_WEEKS_N = 144;
|
|
156
|
+
static readonly N_WEEKS_AGO_N = 145;
|
|
157
|
+
static readonly NEXT_N_MONTHS_N = 146;
|
|
158
|
+
static readonly LAST_N_MONTHS_N = 147;
|
|
159
|
+
static readonly N_MONTHS_AGO_N = 148;
|
|
160
|
+
static readonly THIS_QUARTER = 149;
|
|
161
|
+
static readonly LAST_QUARTER = 150;
|
|
162
|
+
static readonly NEXT_QUARTER = 151;
|
|
163
|
+
static readonly NEXT_N_QUARTERS_N = 152;
|
|
164
|
+
static readonly LAST_N_QUARTERS_N = 153;
|
|
165
|
+
static readonly N_QUARTERS_AGO_N = 154;
|
|
166
|
+
static readonly THIS_YEAR = 155;
|
|
167
|
+
static readonly LAST_YEAR = 156;
|
|
168
|
+
static readonly NEXT_YEAR = 157;
|
|
169
|
+
static readonly NEXT_N_YEARS_N = 158;
|
|
170
|
+
static readonly LAST_N_YEARS_N = 159;
|
|
171
|
+
static readonly N_YEARS_AGO_N = 160;
|
|
172
|
+
static readonly THIS_FISCAL_QUARTER = 161;
|
|
173
|
+
static readonly LAST_FISCAL_QUARTER = 162;
|
|
174
|
+
static readonly NEXT_FISCAL_QUARTER = 163;
|
|
175
|
+
static readonly NEXT_N_FISCAL_QUARTERS_N = 164;
|
|
176
|
+
static readonly LAST_N_FISCAL_QUARTERS_N = 165;
|
|
177
|
+
static readonly N_FISCAL_QUARTERS_AGO_N = 166;
|
|
178
|
+
static readonly THIS_FISCAL_YEAR = 167;
|
|
179
|
+
static readonly LAST_FISCAL_YEAR = 168;
|
|
180
|
+
static readonly NEXT_FISCAL_YEAR = 169;
|
|
181
|
+
static readonly NEXT_N_FISCAL_YEARS_N = 170;
|
|
182
|
+
static readonly LAST_N_FISCAL_YEARS_N = 171;
|
|
183
|
+
static readonly N_FISCAL_YEARS_AGO_N = 172;
|
|
184
|
+
static readonly DateLiteral = 173;
|
|
185
|
+
static readonly DateTimeLiteral = 174;
|
|
186
|
+
static readonly IntegralCurrencyLiteral = 175;
|
|
187
|
+
static readonly FIND = 176;
|
|
188
|
+
static readonly EMAIL = 177;
|
|
189
|
+
static readonly NAME = 178;
|
|
190
|
+
static readonly PHONE = 179;
|
|
191
|
+
static readonly SIDEBAR = 180;
|
|
192
|
+
static readonly FIELDS = 181;
|
|
193
|
+
static readonly METADATA = 182;
|
|
194
|
+
static readonly PRICEBOOKID = 183;
|
|
195
|
+
static readonly NETWORK = 184;
|
|
196
|
+
static readonly SNIPPET = 185;
|
|
197
|
+
static readonly TARGET_LENGTH = 186;
|
|
198
|
+
static readonly DIVISION = 187;
|
|
199
|
+
static readonly RETURNING = 188;
|
|
200
|
+
static readonly LISTVIEW = 189;
|
|
201
|
+
static readonly FindLiteral = 190;
|
|
202
|
+
static readonly FindLiteralAlt = 191;
|
|
203
|
+
static readonly IntegerLiteral = 192;
|
|
204
|
+
static readonly LongLiteral = 193;
|
|
205
|
+
static readonly NumberLiteral = 194;
|
|
206
|
+
static readonly BooleanLiteral = 195;
|
|
207
|
+
static readonly StringLiteral = 196;
|
|
208
|
+
static readonly NullLiteral = 197;
|
|
209
|
+
static readonly LPAREN = 198;
|
|
210
|
+
static readonly RPAREN = 199;
|
|
211
|
+
static readonly LBRACE = 200;
|
|
212
|
+
static readonly RBRACE = 201;
|
|
213
|
+
static readonly LBRACK = 202;
|
|
214
|
+
static readonly RBRACK = 203;
|
|
215
|
+
static readonly SEMI = 204;
|
|
216
|
+
static readonly COMMA = 205;
|
|
217
|
+
static readonly DOT = 206;
|
|
218
|
+
static readonly ASSIGN = 207;
|
|
219
|
+
static readonly GT = 208;
|
|
220
|
+
static readonly LT = 209;
|
|
221
|
+
static readonly BANG = 210;
|
|
222
|
+
static readonly TILDE = 211;
|
|
223
|
+
static readonly QUESTIONDOT = 212;
|
|
224
|
+
static readonly QUESTION = 213;
|
|
225
|
+
static readonly COLON = 214;
|
|
226
|
+
static readonly EQUAL = 215;
|
|
227
|
+
static readonly TRIPLEEQUAL = 216;
|
|
228
|
+
static readonly NOTEQUAL = 217;
|
|
229
|
+
static readonly LESSANDGREATER = 218;
|
|
230
|
+
static readonly TRIPLENOTEQUAL = 219;
|
|
231
|
+
static readonly AND = 220;
|
|
232
|
+
static readonly OR = 221;
|
|
233
|
+
static readonly INC = 222;
|
|
234
|
+
static readonly DEC = 223;
|
|
235
|
+
static readonly ADD = 224;
|
|
236
|
+
static readonly SUB = 225;
|
|
237
|
+
static readonly MUL = 226;
|
|
238
|
+
static readonly DIV = 227;
|
|
239
|
+
static readonly BITAND = 228;
|
|
240
|
+
static readonly BITOR = 229;
|
|
241
|
+
static readonly CARET = 230;
|
|
242
|
+
static readonly MAPTO = 231;
|
|
243
|
+
static readonly ADD_ASSIGN = 232;
|
|
244
|
+
static readonly SUB_ASSIGN = 233;
|
|
245
|
+
static readonly MUL_ASSIGN = 234;
|
|
246
|
+
static readonly DIV_ASSIGN = 235;
|
|
247
|
+
static readonly AND_ASSIGN = 236;
|
|
248
|
+
static readonly OR_ASSIGN = 237;
|
|
249
|
+
static readonly XOR_ASSIGN = 238;
|
|
250
|
+
static readonly LSHIFT_ASSIGN = 239;
|
|
251
|
+
static readonly RSHIFT_ASSIGN = 240;
|
|
252
|
+
static readonly URSHIFT_ASSIGN = 241;
|
|
253
|
+
static readonly ATSIGN = 242;
|
|
254
|
+
static readonly Identifier = 243;
|
|
255
|
+
static readonly WS = 244;
|
|
256
|
+
static readonly DOC_COMMENT = 245;
|
|
257
|
+
static readonly COMMENT = 246;
|
|
258
|
+
static readonly LINE_COMMENT = 247;
|
|
247
259
|
static readonly RULE_triggerUnit = 0;
|
|
248
260
|
static readonly RULE_triggerCase = 1;
|
|
249
261
|
static readonly RULE_compilationUnit = 2;
|
|
@@ -297,93 +309,97 @@ export declare class ApexParser extends Parser {
|
|
|
297
309
|
static readonly RULE_throwStatement = 50;
|
|
298
310
|
static readonly RULE_breakStatement = 51;
|
|
299
311
|
static readonly RULE_continueStatement = 52;
|
|
300
|
-
static readonly
|
|
301
|
-
static readonly
|
|
302
|
-
static readonly
|
|
303
|
-
static readonly
|
|
304
|
-
static readonly
|
|
305
|
-
static readonly
|
|
306
|
-
static readonly
|
|
307
|
-
static readonly
|
|
308
|
-
static readonly
|
|
309
|
-
static readonly
|
|
310
|
-
static readonly
|
|
311
|
-
static readonly
|
|
312
|
-
static readonly
|
|
313
|
-
static readonly
|
|
314
|
-
static readonly
|
|
315
|
-
static readonly
|
|
316
|
-
static readonly
|
|
317
|
-
static readonly
|
|
318
|
-
static readonly
|
|
319
|
-
static readonly
|
|
320
|
-
static readonly
|
|
321
|
-
static readonly
|
|
322
|
-
static readonly
|
|
323
|
-
static readonly
|
|
324
|
-
static readonly
|
|
325
|
-
static readonly
|
|
326
|
-
static readonly
|
|
327
|
-
static readonly
|
|
328
|
-
static readonly
|
|
329
|
-
static readonly
|
|
330
|
-
static readonly
|
|
331
|
-
static readonly
|
|
332
|
-
static readonly
|
|
333
|
-
static readonly
|
|
334
|
-
static readonly
|
|
335
|
-
static readonly
|
|
336
|
-
static readonly
|
|
337
|
-
static readonly
|
|
338
|
-
static readonly
|
|
339
|
-
static readonly
|
|
340
|
-
static readonly
|
|
341
|
-
static readonly
|
|
342
|
-
static readonly
|
|
343
|
-
static readonly
|
|
344
|
-
static readonly
|
|
345
|
-
static readonly
|
|
346
|
-
static readonly
|
|
347
|
-
static readonly
|
|
348
|
-
static readonly
|
|
349
|
-
static readonly
|
|
350
|
-
static readonly
|
|
351
|
-
static readonly
|
|
352
|
-
static readonly
|
|
353
|
-
static readonly
|
|
354
|
-
static readonly
|
|
355
|
-
static readonly
|
|
356
|
-
static readonly
|
|
357
|
-
static readonly
|
|
358
|
-
static readonly
|
|
359
|
-
static readonly
|
|
360
|
-
static readonly
|
|
361
|
-
static readonly
|
|
362
|
-
static readonly
|
|
363
|
-
static readonly
|
|
364
|
-
static readonly
|
|
365
|
-
static readonly
|
|
366
|
-
static readonly
|
|
367
|
-
static readonly
|
|
368
|
-
static readonly
|
|
369
|
-
static readonly
|
|
370
|
-
static readonly
|
|
371
|
-
static readonly
|
|
372
|
-
static readonly
|
|
373
|
-
static readonly
|
|
374
|
-
static readonly
|
|
375
|
-
static readonly
|
|
376
|
-
static readonly
|
|
377
|
-
static readonly
|
|
378
|
-
static readonly
|
|
379
|
-
static readonly
|
|
380
|
-
static readonly
|
|
381
|
-
static readonly
|
|
382
|
-
static readonly
|
|
383
|
-
static readonly
|
|
384
|
-
static readonly
|
|
385
|
-
static readonly
|
|
386
|
-
static readonly
|
|
312
|
+
static readonly RULE_accessLevel = 53;
|
|
313
|
+
static readonly RULE_insertStatement = 54;
|
|
314
|
+
static readonly RULE_updateStatement = 55;
|
|
315
|
+
static readonly RULE_deleteStatement = 56;
|
|
316
|
+
static readonly RULE_undeleteStatement = 57;
|
|
317
|
+
static readonly RULE_upsertStatement = 58;
|
|
318
|
+
static readonly RULE_mergeStatement = 59;
|
|
319
|
+
static readonly RULE_runAsStatement = 60;
|
|
320
|
+
static readonly RULE_expressionStatement = 61;
|
|
321
|
+
static readonly RULE_propertyBlock = 62;
|
|
322
|
+
static readonly RULE_getter = 63;
|
|
323
|
+
static readonly RULE_setter = 64;
|
|
324
|
+
static readonly RULE_catchClause = 65;
|
|
325
|
+
static readonly RULE_finallyBlock = 66;
|
|
326
|
+
static readonly RULE_forControl = 67;
|
|
327
|
+
static readonly RULE_forInit = 68;
|
|
328
|
+
static readonly RULE_enhancedForControl = 69;
|
|
329
|
+
static readonly RULE_forUpdate = 70;
|
|
330
|
+
static readonly RULE_parExpression = 71;
|
|
331
|
+
static readonly RULE_expressionList = 72;
|
|
332
|
+
static readonly RULE_expression = 73;
|
|
333
|
+
static readonly RULE_primary = 74;
|
|
334
|
+
static readonly RULE_methodCall = 75;
|
|
335
|
+
static readonly RULE_dotMethodCall = 76;
|
|
336
|
+
static readonly RULE_creator = 77;
|
|
337
|
+
static readonly RULE_createdName = 78;
|
|
338
|
+
static readonly RULE_idCreatedNamePair = 79;
|
|
339
|
+
static readonly RULE_noRest = 80;
|
|
340
|
+
static readonly RULE_classCreatorRest = 81;
|
|
341
|
+
static readonly RULE_arrayCreatorRest = 82;
|
|
342
|
+
static readonly RULE_mapCreatorRest = 83;
|
|
343
|
+
static readonly RULE_mapCreatorRestPair = 84;
|
|
344
|
+
static readonly RULE_setCreatorRest = 85;
|
|
345
|
+
static readonly RULE_arguments = 86;
|
|
346
|
+
static readonly RULE_soqlLiteral = 87;
|
|
347
|
+
static readonly RULE_query = 88;
|
|
348
|
+
static readonly RULE_subQuery = 89;
|
|
349
|
+
static readonly RULE_selectList = 90;
|
|
350
|
+
static readonly RULE_selectEntry = 91;
|
|
351
|
+
static readonly RULE_fieldName = 92;
|
|
352
|
+
static readonly RULE_fromNameList = 93;
|
|
353
|
+
static readonly RULE_subFieldList = 94;
|
|
354
|
+
static readonly RULE_subFieldEntry = 95;
|
|
355
|
+
static readonly RULE_soqlFieldsParameter = 96;
|
|
356
|
+
static readonly RULE_soqlFunction = 97;
|
|
357
|
+
static readonly RULE_dateFieldName = 98;
|
|
358
|
+
static readonly RULE_locationValue = 99;
|
|
359
|
+
static readonly RULE_coordinateValue = 100;
|
|
360
|
+
static readonly RULE_typeOf = 101;
|
|
361
|
+
static readonly RULE_whenClause = 102;
|
|
362
|
+
static readonly RULE_elseClause = 103;
|
|
363
|
+
static readonly RULE_fieldNameList = 104;
|
|
364
|
+
static readonly RULE_usingScope = 105;
|
|
365
|
+
static readonly RULE_whereClause = 106;
|
|
366
|
+
static readonly RULE_logicalExpression = 107;
|
|
367
|
+
static readonly RULE_conditionalExpression = 108;
|
|
368
|
+
static readonly RULE_fieldExpression = 109;
|
|
369
|
+
static readonly RULE_comparisonOperator = 110;
|
|
370
|
+
static readonly RULE_value = 111;
|
|
371
|
+
static readonly RULE_valueList = 112;
|
|
372
|
+
static readonly RULE_signedNumber = 113;
|
|
373
|
+
static readonly RULE_withClause = 114;
|
|
374
|
+
static readonly RULE_filteringExpression = 115;
|
|
375
|
+
static readonly RULE_dataCategorySelection = 116;
|
|
376
|
+
static readonly RULE_dataCategoryName = 117;
|
|
377
|
+
static readonly RULE_filteringSelector = 118;
|
|
378
|
+
static readonly RULE_groupByClause = 119;
|
|
379
|
+
static readonly RULE_orderByClause = 120;
|
|
380
|
+
static readonly RULE_fieldOrderList = 121;
|
|
381
|
+
static readonly RULE_fieldOrder = 122;
|
|
382
|
+
static readonly RULE_limitClause = 123;
|
|
383
|
+
static readonly RULE_offsetClause = 124;
|
|
384
|
+
static readonly RULE_allRowsClause = 125;
|
|
385
|
+
static readonly RULE_forClauses = 126;
|
|
386
|
+
static readonly RULE_boundExpression = 127;
|
|
387
|
+
static readonly RULE_dateFormula = 128;
|
|
388
|
+
static readonly RULE_signedInteger = 129;
|
|
389
|
+
static readonly RULE_soqlId = 130;
|
|
390
|
+
static readonly RULE_soslLiteral = 131;
|
|
391
|
+
static readonly RULE_soslLiteralAlt = 132;
|
|
392
|
+
static readonly RULE_soslClauses = 133;
|
|
393
|
+
static readonly RULE_searchGroup = 134;
|
|
394
|
+
static readonly RULE_fieldSpecList = 135;
|
|
395
|
+
static readonly RULE_fieldSpec = 136;
|
|
396
|
+
static readonly RULE_fieldList = 137;
|
|
397
|
+
static readonly RULE_updateList = 138;
|
|
398
|
+
static readonly RULE_updateType = 139;
|
|
399
|
+
static readonly RULE_networkList = 140;
|
|
400
|
+
static readonly RULE_soslId = 141;
|
|
401
|
+
static readonly RULE_id = 142;
|
|
402
|
+
static readonly RULE_anyId = 143;
|
|
387
403
|
static readonly ruleNames: string[];
|
|
388
404
|
private static readonly _LITERAL_NAMES;
|
|
389
405
|
private static readonly _SYMBOLIC_NAMES;
|
|
@@ -447,6 +463,7 @@ export declare class ApexParser extends Parser {
|
|
|
447
463
|
throwStatement(): ThrowStatementContext;
|
|
448
464
|
breakStatement(): BreakStatementContext;
|
|
449
465
|
continueStatement(): ContinueStatementContext;
|
|
466
|
+
accessLevel(): AccessLevelContext;
|
|
450
467
|
insertStatement(): InsertStatementContext;
|
|
451
468
|
updateStatement(): UpdateStatementContext;
|
|
452
469
|
deleteStatement(): DeleteStatementContext;
|
|
@@ -493,6 +510,8 @@ export declare class ApexParser extends Parser {
|
|
|
493
510
|
soqlFieldsParameter(): SoqlFieldsParameterContext;
|
|
494
511
|
soqlFunction(): SoqlFunctionContext;
|
|
495
512
|
dateFieldName(): DateFieldNameContext;
|
|
513
|
+
locationValue(): LocationValueContext;
|
|
514
|
+
coordinateValue(): CoordinateValueContext;
|
|
496
515
|
typeOf(): TypeOfContext;
|
|
497
516
|
whenClause(): WhenClauseContext;
|
|
498
517
|
elseClause(): ElseClauseContext;
|
|
@@ -524,6 +543,7 @@ export declare class ApexParser extends Parser {
|
|
|
524
543
|
signedInteger(): SignedIntegerContext;
|
|
525
544
|
soqlId(): SoqlIdContext;
|
|
526
545
|
soslLiteral(): SoslLiteralContext;
|
|
546
|
+
soslLiteralAlt(): SoslLiteralAltContext;
|
|
527
547
|
soslClauses(): SoslClausesContext;
|
|
528
548
|
searchGroup(): SearchGroupContext;
|
|
529
549
|
fieldSpecList(): FieldSpecListContext;
|
|
@@ -1099,6 +1119,9 @@ export declare class WhenLiteralContext extends ParserRuleContext {
|
|
|
1099
1119
|
StringLiteral(): TerminalNode | undefined;
|
|
1100
1120
|
NULL(): TerminalNode | undefined;
|
|
1101
1121
|
id(): IdContext | undefined;
|
|
1122
|
+
LPAREN(): TerminalNode | undefined;
|
|
1123
|
+
whenLiteral(): WhenLiteralContext | undefined;
|
|
1124
|
+
RPAREN(): TerminalNode | undefined;
|
|
1102
1125
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1103
1126
|
get ruleIndex(): number;
|
|
1104
1127
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1110,7 +1133,8 @@ export declare class ForStatementContext extends ParserRuleContext {
|
|
|
1110
1133
|
LPAREN(): TerminalNode;
|
|
1111
1134
|
forControl(): ForControlContext;
|
|
1112
1135
|
RPAREN(): TerminalNode;
|
|
1113
|
-
statement(): StatementContext;
|
|
1136
|
+
statement(): StatementContext | undefined;
|
|
1137
|
+
SEMI(): TerminalNode | undefined;
|
|
1114
1138
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1115
1139
|
get ruleIndex(): number;
|
|
1116
1140
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1120,7 +1144,8 @@ export declare class ForStatementContext extends ParserRuleContext {
|
|
|
1120
1144
|
export declare class WhileStatementContext extends ParserRuleContext {
|
|
1121
1145
|
WHILE(): TerminalNode;
|
|
1122
1146
|
parExpression(): ParExpressionContext;
|
|
1123
|
-
statement(): StatementContext;
|
|
1147
|
+
statement(): StatementContext | undefined;
|
|
1148
|
+
SEMI(): TerminalNode | undefined;
|
|
1124
1149
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1125
1150
|
get ruleIndex(): number;
|
|
1126
1151
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1189,10 +1214,21 @@ export declare class ContinueStatementContext extends ParserRuleContext {
|
|
|
1189
1214
|
exitRule(listener: ApexParserListener): void;
|
|
1190
1215
|
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
1191
1216
|
}
|
|
1217
|
+
export declare class AccessLevelContext extends ParserRuleContext {
|
|
1218
|
+
AS(): TerminalNode;
|
|
1219
|
+
SYSTEM(): TerminalNode | undefined;
|
|
1220
|
+
USER(): TerminalNode | undefined;
|
|
1221
|
+
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1222
|
+
get ruleIndex(): number;
|
|
1223
|
+
enterRule(listener: ApexParserListener): void;
|
|
1224
|
+
exitRule(listener: ApexParserListener): void;
|
|
1225
|
+
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
1226
|
+
}
|
|
1192
1227
|
export declare class InsertStatementContext extends ParserRuleContext {
|
|
1193
1228
|
INSERT(): TerminalNode;
|
|
1194
1229
|
expression(): ExpressionContext;
|
|
1195
1230
|
SEMI(): TerminalNode;
|
|
1231
|
+
accessLevel(): AccessLevelContext | undefined;
|
|
1196
1232
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1197
1233
|
get ruleIndex(): number;
|
|
1198
1234
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1203,6 +1239,7 @@ export declare class UpdateStatementContext extends ParserRuleContext {
|
|
|
1203
1239
|
UPDATE(): TerminalNode;
|
|
1204
1240
|
expression(): ExpressionContext;
|
|
1205
1241
|
SEMI(): TerminalNode;
|
|
1242
|
+
accessLevel(): AccessLevelContext | undefined;
|
|
1206
1243
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1207
1244
|
get ruleIndex(): number;
|
|
1208
1245
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1213,6 +1250,7 @@ export declare class DeleteStatementContext extends ParserRuleContext {
|
|
|
1213
1250
|
DELETE(): TerminalNode;
|
|
1214
1251
|
expression(): ExpressionContext;
|
|
1215
1252
|
SEMI(): TerminalNode;
|
|
1253
|
+
accessLevel(): AccessLevelContext | undefined;
|
|
1216
1254
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1217
1255
|
get ruleIndex(): number;
|
|
1218
1256
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1223,6 +1261,7 @@ export declare class UndeleteStatementContext extends ParserRuleContext {
|
|
|
1223
1261
|
UNDELETE(): TerminalNode;
|
|
1224
1262
|
expression(): ExpressionContext;
|
|
1225
1263
|
SEMI(): TerminalNode;
|
|
1264
|
+
accessLevel(): AccessLevelContext | undefined;
|
|
1226
1265
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1227
1266
|
get ruleIndex(): number;
|
|
1228
1267
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1233,6 +1272,7 @@ export declare class UpsertStatementContext extends ParserRuleContext {
|
|
|
1233
1272
|
UPSERT(): TerminalNode;
|
|
1234
1273
|
expression(): ExpressionContext;
|
|
1235
1274
|
SEMI(): TerminalNode;
|
|
1275
|
+
accessLevel(): AccessLevelContext | undefined;
|
|
1236
1276
|
qualifiedName(): QualifiedNameContext | undefined;
|
|
1237
1277
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1238
1278
|
get ruleIndex(): number;
|
|
@@ -1245,6 +1285,7 @@ export declare class MergeStatementContext extends ParserRuleContext {
|
|
|
1245
1285
|
expression(): ExpressionContext[];
|
|
1246
1286
|
expression(i: number): ExpressionContext;
|
|
1247
1287
|
SEMI(): TerminalNode;
|
|
1288
|
+
accessLevel(): AccessLevelContext | undefined;
|
|
1248
1289
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1249
1290
|
get ruleIndex(): number;
|
|
1250
1291
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1490,7 +1531,6 @@ export declare class Arth1ExpressionContext extends ExpressionContext {
|
|
|
1490
1531
|
expression(i: number): ExpressionContext;
|
|
1491
1532
|
MUL(): TerminalNode | undefined;
|
|
1492
1533
|
DIV(): TerminalNode | undefined;
|
|
1493
|
-
MOD(): TerminalNode | undefined;
|
|
1494
1534
|
constructor(ctx: ExpressionContext);
|
|
1495
1535
|
enterRule(listener: ApexParserListener): void;
|
|
1496
1536
|
exitRule(listener: ApexParserListener): void;
|
|
@@ -1620,7 +1660,6 @@ export declare class AssignExpressionContext extends ExpressionContext {
|
|
|
1620
1660
|
RSHIFT_ASSIGN(): TerminalNode | undefined;
|
|
1621
1661
|
URSHIFT_ASSIGN(): TerminalNode | undefined;
|
|
1622
1662
|
LSHIFT_ASSIGN(): TerminalNode | undefined;
|
|
1623
|
-
MOD_ASSIGN(): TerminalNode | undefined;
|
|
1624
1663
|
constructor(ctx: ExpressionContext);
|
|
1625
1664
|
enterRule(listener: ApexParserListener): void;
|
|
1626
1665
|
exitRule(listener: ApexParserListener): void;
|
|
@@ -1661,6 +1700,15 @@ export declare class TypeRefPrimaryContext extends PrimaryContext {
|
|
|
1661
1700
|
exitRule(listener: ApexParserListener): void;
|
|
1662
1701
|
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
1663
1702
|
}
|
|
1703
|
+
export declare class VoidPrimaryContext extends PrimaryContext {
|
|
1704
|
+
VOID(): TerminalNode;
|
|
1705
|
+
DOT(): TerminalNode;
|
|
1706
|
+
CLASS(): TerminalNode;
|
|
1707
|
+
constructor(ctx: PrimaryContext);
|
|
1708
|
+
enterRule(listener: ApexParserListener): void;
|
|
1709
|
+
exitRule(listener: ApexParserListener): void;
|
|
1710
|
+
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
1711
|
+
}
|
|
1664
1712
|
export declare class IdPrimaryContext extends PrimaryContext {
|
|
1665
1713
|
id(): IdContext;
|
|
1666
1714
|
constructor(ctx: PrimaryContext);
|
|
@@ -1972,6 +2020,12 @@ export declare class SoqlFunctionContext extends ParserRuleContext {
|
|
|
1972
2020
|
WEEK_IN_YEAR(): TerminalNode | undefined;
|
|
1973
2021
|
FIELDS(): TerminalNode | undefined;
|
|
1974
2022
|
soqlFieldsParameter(): SoqlFieldsParameterContext | undefined;
|
|
2023
|
+
DISTANCE(): TerminalNode | undefined;
|
|
2024
|
+
locationValue(): LocationValueContext[];
|
|
2025
|
+
locationValue(i: number): LocationValueContext;
|
|
2026
|
+
COMMA(): TerminalNode[];
|
|
2027
|
+
COMMA(i: number): TerminalNode;
|
|
2028
|
+
StringLiteral(): TerminalNode | undefined;
|
|
1975
2029
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
1976
2030
|
get ruleIndex(): number;
|
|
1977
2031
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -1989,6 +2043,30 @@ export declare class DateFieldNameContext extends ParserRuleContext {
|
|
|
1989
2043
|
exitRule(listener: ApexParserListener): void;
|
|
1990
2044
|
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
1991
2045
|
}
|
|
2046
|
+
export declare class LocationValueContext extends ParserRuleContext {
|
|
2047
|
+
fieldName(): FieldNameContext | undefined;
|
|
2048
|
+
boundExpression(): BoundExpressionContext | undefined;
|
|
2049
|
+
GEOLOCATION(): TerminalNode | undefined;
|
|
2050
|
+
LPAREN(): TerminalNode | undefined;
|
|
2051
|
+
coordinateValue(): CoordinateValueContext[];
|
|
2052
|
+
coordinateValue(i: number): CoordinateValueContext;
|
|
2053
|
+
COMMA(): TerminalNode | undefined;
|
|
2054
|
+
RPAREN(): TerminalNode | undefined;
|
|
2055
|
+
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
2056
|
+
get ruleIndex(): number;
|
|
2057
|
+
enterRule(listener: ApexParserListener): void;
|
|
2058
|
+
exitRule(listener: ApexParserListener): void;
|
|
2059
|
+
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
2060
|
+
}
|
|
2061
|
+
export declare class CoordinateValueContext extends ParserRuleContext {
|
|
2062
|
+
signedNumber(): SignedNumberContext | undefined;
|
|
2063
|
+
boundExpression(): BoundExpressionContext | undefined;
|
|
2064
|
+
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
2065
|
+
get ruleIndex(): number;
|
|
2066
|
+
enterRule(listener: ApexParserListener): void;
|
|
2067
|
+
exitRule(listener: ApexParserListener): void;
|
|
2068
|
+
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
2069
|
+
}
|
|
1992
2070
|
export declare class TypeOfContext extends ParserRuleContext {
|
|
1993
2071
|
TYPEOF(): TerminalNode;
|
|
1994
2072
|
fieldName(): FieldNameContext;
|
|
@@ -2157,6 +2235,8 @@ export declare class WithClauseContext extends ParserRuleContext {
|
|
|
2157
2235
|
CATEGORY(): TerminalNode | undefined;
|
|
2158
2236
|
filteringExpression(): FilteringExpressionContext | undefined;
|
|
2159
2237
|
SECURITY_ENFORCED(): TerminalNode | undefined;
|
|
2238
|
+
SYSTEM_MODE(): TerminalNode | undefined;
|
|
2239
|
+
USER_MODE(): TerminalNode | undefined;
|
|
2160
2240
|
logicalExpression(): LogicalExpressionContext | undefined;
|
|
2161
2241
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
2162
2242
|
get ruleIndex(): number;
|
|
@@ -2333,30 +2413,37 @@ export declare class DateFormulaContext extends ParserRuleContext {
|
|
|
2333
2413
|
COLON(): TerminalNode | undefined;
|
|
2334
2414
|
signedInteger(): SignedIntegerContext | undefined;
|
|
2335
2415
|
NEXT_N_DAYS_N(): TerminalNode | undefined;
|
|
2416
|
+
N_DAYS_AGO_N(): TerminalNode | undefined;
|
|
2336
2417
|
NEXT_N_WEEKS_N(): TerminalNode | undefined;
|
|
2337
2418
|
LAST_N_WEEKS_N(): TerminalNode | undefined;
|
|
2419
|
+
N_WEEKS_AGO_N(): TerminalNode | undefined;
|
|
2338
2420
|
NEXT_N_MONTHS_N(): TerminalNode | undefined;
|
|
2339
2421
|
LAST_N_MONTHS_N(): TerminalNode | undefined;
|
|
2422
|
+
N_MONTHS_AGO_N(): TerminalNode | undefined;
|
|
2340
2423
|
THIS_QUARTER(): TerminalNode | undefined;
|
|
2341
2424
|
LAST_QUARTER(): TerminalNode | undefined;
|
|
2342
2425
|
NEXT_QUARTER(): TerminalNode | undefined;
|
|
2343
2426
|
NEXT_N_QUARTERS_N(): TerminalNode | undefined;
|
|
2344
2427
|
LAST_N_QUARTERS_N(): TerminalNode | undefined;
|
|
2428
|
+
N_QUARTERS_AGO_N(): TerminalNode | undefined;
|
|
2345
2429
|
THIS_YEAR(): TerminalNode | undefined;
|
|
2346
2430
|
LAST_YEAR(): TerminalNode | undefined;
|
|
2347
2431
|
NEXT_YEAR(): TerminalNode | undefined;
|
|
2348
2432
|
NEXT_N_YEARS_N(): TerminalNode | undefined;
|
|
2349
2433
|
LAST_N_YEARS_N(): TerminalNode | undefined;
|
|
2434
|
+
N_YEARS_AGO_N(): TerminalNode | undefined;
|
|
2350
2435
|
THIS_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2351
2436
|
LAST_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2352
2437
|
NEXT_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2353
2438
|
NEXT_N_FISCAL_QUARTERS_N(): TerminalNode | undefined;
|
|
2354
2439
|
LAST_N_FISCAL_QUARTERS_N(): TerminalNode | undefined;
|
|
2440
|
+
N_FISCAL_QUARTERS_AGO_N(): TerminalNode | undefined;
|
|
2355
2441
|
THIS_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2356
2442
|
LAST_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2357
2443
|
NEXT_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2358
2444
|
NEXT_N_FISCAL_YEARS_N(): TerminalNode | undefined;
|
|
2359
2445
|
LAST_N_FISCAL_YEARS_N(): TerminalNode | undefined;
|
|
2446
|
+
N_FISCAL_YEARS_AGO_N(): TerminalNode | undefined;
|
|
2360
2447
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
2361
2448
|
get ruleIndex(): number;
|
|
2362
2449
|
enterRule(listener: ApexParserListener): void;
|
|
@@ -2394,6 +2481,16 @@ export declare class SoslLiteralContext extends ParserRuleContext {
|
|
|
2394
2481
|
exitRule(listener: ApexParserListener): void;
|
|
2395
2482
|
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
2396
2483
|
}
|
|
2484
|
+
export declare class SoslLiteralAltContext extends ParserRuleContext {
|
|
2485
|
+
FindLiteralAlt(): TerminalNode;
|
|
2486
|
+
soslClauses(): SoslClausesContext;
|
|
2487
|
+
RBRACK(): TerminalNode;
|
|
2488
|
+
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
2489
|
+
get ruleIndex(): number;
|
|
2490
|
+
enterRule(listener: ApexParserListener): void;
|
|
2491
|
+
exitRule(listener: ApexParserListener): void;
|
|
2492
|
+
accept<Result>(visitor: ApexParserVisitor<Result>): Result;
|
|
2493
|
+
}
|
|
2397
2494
|
export declare class SoslClausesContext extends ParserRuleContext {
|
|
2398
2495
|
IN(): TerminalNode[];
|
|
2399
2496
|
IN(i: number): TerminalNode;
|
|
@@ -2546,6 +2643,8 @@ export declare class IdContext extends ParserRuleContext {
|
|
|
2546
2643
|
WHEN(): TerminalNode | undefined;
|
|
2547
2644
|
WITH(): TerminalNode | undefined;
|
|
2548
2645
|
WITHOUT(): TerminalNode | undefined;
|
|
2646
|
+
USER(): TerminalNode | undefined;
|
|
2647
|
+
SYSTEM(): TerminalNode | undefined;
|
|
2549
2648
|
IntegralCurrencyLiteral(): TerminalNode | undefined;
|
|
2550
2649
|
SELECT(): TerminalNode | undefined;
|
|
2551
2650
|
COUNT(): TerminalNode | undefined;
|
|
@@ -2592,6 +2691,8 @@ export declare class IdContext extends ParserRuleContext {
|
|
|
2592
2691
|
BELOW(): TerminalNode | undefined;
|
|
2593
2692
|
ABOVE_OR_BELOW(): TerminalNode | undefined;
|
|
2594
2693
|
SECURITY_ENFORCED(): TerminalNode | undefined;
|
|
2694
|
+
USER_MODE(): TerminalNode | undefined;
|
|
2695
|
+
SYSTEM_MODE(): TerminalNode | undefined;
|
|
2595
2696
|
REFERENCE(): TerminalNode | undefined;
|
|
2596
2697
|
CUBE(): TerminalNode | undefined;
|
|
2597
2698
|
FORMAT(): TerminalNode | undefined;
|
|
@@ -2599,6 +2700,8 @@ export declare class IdContext extends ParserRuleContext {
|
|
|
2599
2700
|
VIEWSTAT(): TerminalNode | undefined;
|
|
2600
2701
|
STANDARD(): TerminalNode | undefined;
|
|
2601
2702
|
CUSTOM(): TerminalNode | undefined;
|
|
2703
|
+
DISTANCE(): TerminalNode | undefined;
|
|
2704
|
+
GEOLOCATION(): TerminalNode | undefined;
|
|
2602
2705
|
CALENDAR_MONTH(): TerminalNode | undefined;
|
|
2603
2706
|
CALENDAR_QUARTER(): TerminalNode | undefined;
|
|
2604
2707
|
CALENDAR_YEAR(): TerminalNode | undefined;
|
|
@@ -2626,30 +2729,37 @@ export declare class IdContext extends ParserRuleContext {
|
|
|
2626
2729
|
NEXT_90_DAYS(): TerminalNode | undefined;
|
|
2627
2730
|
LAST_N_DAYS_N(): TerminalNode | undefined;
|
|
2628
2731
|
NEXT_N_DAYS_N(): TerminalNode | undefined;
|
|
2732
|
+
N_DAYS_AGO_N(): TerminalNode | undefined;
|
|
2629
2733
|
NEXT_N_WEEKS_N(): TerminalNode | undefined;
|
|
2630
2734
|
LAST_N_WEEKS_N(): TerminalNode | undefined;
|
|
2735
|
+
N_WEEKS_AGO_N(): TerminalNode | undefined;
|
|
2631
2736
|
NEXT_N_MONTHS_N(): TerminalNode | undefined;
|
|
2632
2737
|
LAST_N_MONTHS_N(): TerminalNode | undefined;
|
|
2738
|
+
N_MONTHS_AGO_N(): TerminalNode | undefined;
|
|
2633
2739
|
THIS_QUARTER(): TerminalNode | undefined;
|
|
2634
2740
|
LAST_QUARTER(): TerminalNode | undefined;
|
|
2635
2741
|
NEXT_QUARTER(): TerminalNode | undefined;
|
|
2636
2742
|
NEXT_N_QUARTERS_N(): TerminalNode | undefined;
|
|
2637
2743
|
LAST_N_QUARTERS_N(): TerminalNode | undefined;
|
|
2744
|
+
N_QUARTERS_AGO_N(): TerminalNode | undefined;
|
|
2638
2745
|
THIS_YEAR(): TerminalNode | undefined;
|
|
2639
2746
|
LAST_YEAR(): TerminalNode | undefined;
|
|
2640
2747
|
NEXT_YEAR(): TerminalNode | undefined;
|
|
2641
2748
|
NEXT_N_YEARS_N(): TerminalNode | undefined;
|
|
2642
2749
|
LAST_N_YEARS_N(): TerminalNode | undefined;
|
|
2750
|
+
N_YEARS_AGO_N(): TerminalNode | undefined;
|
|
2643
2751
|
THIS_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2644
2752
|
LAST_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2645
2753
|
NEXT_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2646
2754
|
NEXT_N_FISCAL_QUARTERS_N(): TerminalNode | undefined;
|
|
2647
2755
|
LAST_N_FISCAL_QUARTERS_N(): TerminalNode | undefined;
|
|
2756
|
+
N_FISCAL_QUARTERS_AGO_N(): TerminalNode | undefined;
|
|
2648
2757
|
THIS_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2649
2758
|
LAST_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2650
2759
|
NEXT_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2651
2760
|
NEXT_N_FISCAL_YEARS_N(): TerminalNode | undefined;
|
|
2652
2761
|
LAST_N_FISCAL_YEARS_N(): TerminalNode | undefined;
|
|
2762
|
+
N_FISCAL_YEARS_AGO_N(): TerminalNode | undefined;
|
|
2653
2763
|
FIND(): TerminalNode | undefined;
|
|
2654
2764
|
EMAIL(): TerminalNode | undefined;
|
|
2655
2765
|
NAME(): TerminalNode | undefined;
|
|
@@ -2726,6 +2836,8 @@ export declare class AnyIdContext extends ParserRuleContext {
|
|
|
2726
2836
|
WHILE(): TerminalNode | undefined;
|
|
2727
2837
|
WITH(): TerminalNode | undefined;
|
|
2728
2838
|
WITHOUT(): TerminalNode | undefined;
|
|
2839
|
+
USER(): TerminalNode | undefined;
|
|
2840
|
+
SYSTEM(): TerminalNode | undefined;
|
|
2729
2841
|
IntegralCurrencyLiteral(): TerminalNode | undefined;
|
|
2730
2842
|
SELECT(): TerminalNode | undefined;
|
|
2731
2843
|
COUNT(): TerminalNode | undefined;
|
|
@@ -2772,6 +2884,8 @@ export declare class AnyIdContext extends ParserRuleContext {
|
|
|
2772
2884
|
BELOW(): TerminalNode | undefined;
|
|
2773
2885
|
ABOVE_OR_BELOW(): TerminalNode | undefined;
|
|
2774
2886
|
SECURITY_ENFORCED(): TerminalNode | undefined;
|
|
2887
|
+
SYSTEM_MODE(): TerminalNode | undefined;
|
|
2888
|
+
USER_MODE(): TerminalNode | undefined;
|
|
2775
2889
|
REFERENCE(): TerminalNode | undefined;
|
|
2776
2890
|
CUBE(): TerminalNode | undefined;
|
|
2777
2891
|
FORMAT(): TerminalNode | undefined;
|
|
@@ -2779,6 +2893,8 @@ export declare class AnyIdContext extends ParserRuleContext {
|
|
|
2779
2893
|
VIEWSTAT(): TerminalNode | undefined;
|
|
2780
2894
|
STANDARD(): TerminalNode | undefined;
|
|
2781
2895
|
CUSTOM(): TerminalNode | undefined;
|
|
2896
|
+
DISTANCE(): TerminalNode | undefined;
|
|
2897
|
+
GEOLOCATION(): TerminalNode | undefined;
|
|
2782
2898
|
CALENDAR_MONTH(): TerminalNode | undefined;
|
|
2783
2899
|
CALENDAR_QUARTER(): TerminalNode | undefined;
|
|
2784
2900
|
CALENDAR_YEAR(): TerminalNode | undefined;
|
|
@@ -2806,30 +2922,37 @@ export declare class AnyIdContext extends ParserRuleContext {
|
|
|
2806
2922
|
NEXT_90_DAYS(): TerminalNode | undefined;
|
|
2807
2923
|
LAST_N_DAYS_N(): TerminalNode | undefined;
|
|
2808
2924
|
NEXT_N_DAYS_N(): TerminalNode | undefined;
|
|
2925
|
+
N_DAYS_AGO_N(): TerminalNode | undefined;
|
|
2809
2926
|
NEXT_N_WEEKS_N(): TerminalNode | undefined;
|
|
2810
2927
|
LAST_N_WEEKS_N(): TerminalNode | undefined;
|
|
2928
|
+
N_WEEKS_AGO_N(): TerminalNode | undefined;
|
|
2811
2929
|
NEXT_N_MONTHS_N(): TerminalNode | undefined;
|
|
2812
2930
|
LAST_N_MONTHS_N(): TerminalNode | undefined;
|
|
2931
|
+
N_MONTHS_AGO_N(): TerminalNode | undefined;
|
|
2813
2932
|
THIS_QUARTER(): TerminalNode | undefined;
|
|
2814
2933
|
LAST_QUARTER(): TerminalNode | undefined;
|
|
2815
2934
|
NEXT_QUARTER(): TerminalNode | undefined;
|
|
2816
2935
|
NEXT_N_QUARTERS_N(): TerminalNode | undefined;
|
|
2817
2936
|
LAST_N_QUARTERS_N(): TerminalNode | undefined;
|
|
2937
|
+
N_QUARTERS_AGO_N(): TerminalNode | undefined;
|
|
2818
2938
|
THIS_YEAR(): TerminalNode | undefined;
|
|
2819
2939
|
LAST_YEAR(): TerminalNode | undefined;
|
|
2820
2940
|
NEXT_YEAR(): TerminalNode | undefined;
|
|
2821
2941
|
NEXT_N_YEARS_N(): TerminalNode | undefined;
|
|
2822
2942
|
LAST_N_YEARS_N(): TerminalNode | undefined;
|
|
2943
|
+
N_YEARS_AGO_N(): TerminalNode | undefined;
|
|
2823
2944
|
THIS_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2824
2945
|
LAST_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2825
2946
|
NEXT_FISCAL_QUARTER(): TerminalNode | undefined;
|
|
2826
2947
|
NEXT_N_FISCAL_QUARTERS_N(): TerminalNode | undefined;
|
|
2827
2948
|
LAST_N_FISCAL_QUARTERS_N(): TerminalNode | undefined;
|
|
2949
|
+
N_FISCAL_QUARTERS_AGO_N(): TerminalNode | undefined;
|
|
2828
2950
|
THIS_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2829
2951
|
LAST_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2830
2952
|
NEXT_FISCAL_YEAR(): TerminalNode | undefined;
|
|
2831
2953
|
NEXT_N_FISCAL_YEARS_N(): TerminalNode | undefined;
|
|
2832
2954
|
LAST_N_FISCAL_YEARS_N(): TerminalNode | undefined;
|
|
2955
|
+
N_FISCAL_YEARS_AGO_N(): TerminalNode | undefined;
|
|
2833
2956
|
FIND(): TerminalNode | undefined;
|
|
2834
2957
|
EMAIL(): TerminalNode | undefined;
|
|
2835
2958
|
NAME(): TerminalNode | undefined;
|