@malloydata/malloy 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/README.md +12 -11
  2. package/dist/dialect/duckdb.d.ts +1 -1
  3. package/dist/dialect/postgres.d.ts +1 -1
  4. package/dist/index.d.ts +4 -4
  5. package/dist/lang/ast/ast-expr.d.ts +0 -1
  6. package/dist/lang/field-space.d.ts +9 -7
  7. package/dist/lang/lib/Malloy/MalloyLexer.d.ts +108 -106
  8. package/dist/lang/lib/Malloy/MalloyLexer.js +1019 -1006
  9. package/dist/lang/lib/Malloy/MalloyParser.d.ts +581 -590
  10. package/dist/lang/lib/Malloy/MalloyParser.js +1141 -1202
  11. package/dist/lang/lib/Malloy/MalloyParserListener.d.ts +2015 -0
  12. package/dist/lang/lib/Malloy/MalloyParserListener.js +4 -0
  13. package/dist/lang/lib/Malloy/MalloyParserVisitor.d.ts +1269 -0
  14. package/dist/lang/lib/Malloy/MalloyParserVisitor.js +4 -0
  15. package/dist/lang/parse-to-ast.d.ts +3 -4
  16. package/dist/lang/parse-to-ast.js +1 -1
  17. package/dist/lang/parse-tree-walkers/document-completion-walker.js +2 -0
  18. package/dist/lang/parse-tree-walkers/explore-query-walker.d.ts +2 -2
  19. package/dist/malloy.d.ts +1 -1
  20. package/dist/md5.d.ts +1 -0
  21. package/dist/md5.js +30 -0
  22. package/dist/model/malloy_types.d.ts +3 -1
  23. package/package.json +9 -14
  24. package/dist/connection_utils.js +0 -56
  25. package/dist/dialect/dialect-map.d.ts +0 -3
  26. package/dist/dialect/dialect-map.js +0 -33
  27. package/dist/dialect/dialect.js +0 -77
  28. package/dist/dialect/dialect_map.js +0 -35
  29. package/dist/dialect/duckdb.js +0 -349
  30. package/dist/dialect/index.js +0 -27
  31. package/dist/dialect/postgres.js +0 -308
  32. package/dist/dialect/standardsql.js +0 -361
  33. package/dist/index.js +0 -47
  34. package/dist/lang/ast/apply-expr.js +0 -231
  35. package/dist/lang/ast/ast-expr.js +0 -1051
  36. package/dist/lang/ast/ast-main.js +0 -2086
  37. package/dist/lang/ast/ast-time-expr.js +0 -549
  38. package/dist/lang/ast/ast-types.js +0 -215
  39. package/dist/lang/ast/index.js +0 -34
  40. package/dist/lang/ast/time-utils.js +0 -94
  41. package/dist/lang/field-space.js +0 -629
  42. package/dist/lang/field-utils.js +0 -33
  43. package/dist/lang/index.js +0 -22
  44. package/dist/lang/parse-log.js +0 -41
  45. package/dist/lang/reference-list.js +0 -80
  46. package/dist/lang/space-field.js +0 -346
  47. package/dist/lang/test/document-help-context-walker.spec.js +0 -45
  48. package/dist/lang/test/document-symbol-walker.spec.js +0 -100
  49. package/dist/lang/test/field-symbols.spec.js +0 -172
  50. package/dist/lang/test/parse.spec.js +0 -1936
  51. package/dist/lang/test/test-translator.js +0 -334
  52. package/dist/lang/zone.js +0 -97
  53. package/dist/malloy.js +0 -2354
  54. package/dist/model/index.js +0 -34
  55. package/dist/model/malloy-query.d.ts +0 -313
  56. package/dist/model/malloy-query.js +0 -2603
  57. package/dist/model/malloy-types.d.ts +0 -404
  58. package/dist/model/malloy-types.js +0 -242
  59. package/dist/model/malloy_query.js +0 -2996
  60. package/dist/model/malloy_types.js +0 -283
  61. package/dist/model/sql-block.d.ts +0 -11
  62. package/dist/model/sql-block.js +0 -38
  63. package/dist/model/sql_block.js +0 -41
  64. package/dist/model/utils.js +0 -84
  65. package/dist/runtime-types.d.ts +0 -116
  66. package/dist/runtime-types.js +0 -40
  67. package/dist/runtime_types.js +0 -15
@@ -0,0 +1,2015 @@
1
+ import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener";
2
+ import { ExprPartialCompareContext } from "./MalloyParser";
3
+ import { ExprNotPartialContext } from "./MalloyParser";
4
+ import { NameMemberContext } from "./MalloyParser";
5
+ import { WildMemberContext } from "./MalloyParser";
6
+ import { NewMemberContext } from "./MalloyParser";
7
+ import { NamedQueries_stubContext } from "./MalloyParser";
8
+ import { AnonymousQueryContext } from "./MalloyParser";
9
+ import { NamedSourceContext } from "./MalloyParser";
10
+ import { TableSourceContext } from "./MalloyParser";
11
+ import { QuerySourceContext } from "./MalloyParser";
12
+ import { SQLSourceContext } from "./MalloyParser";
13
+ import { LiteralTimestampContext } from "./MalloyParser";
14
+ import { LiteralDayContext } from "./MalloyParser";
15
+ import { LiteralWeekContext } from "./MalloyParser";
16
+ import { LiteralMonthContext } from "./MalloyParser";
17
+ import { LiteralQuarterContext } from "./MalloyParser";
18
+ import { LiteralYearContext } from "./MalloyParser";
19
+ import { ExprStringContext } from "./MalloyParser";
20
+ import { ExprNumberContext } from "./MalloyParser";
21
+ import { ExprTimeContext } from "./MalloyParser";
22
+ import { ExprNULLContext } from "./MalloyParser";
23
+ import { ExprBoolContext } from "./MalloyParser";
24
+ import { ExprRegexContext } from "./MalloyParser";
25
+ import { ExprNowContext } from "./MalloyParser";
26
+ import { QueryFieldRefContext } from "./MalloyParser";
27
+ import { QueryFieldDefContext } from "./MalloyParser";
28
+ import { NestExistingContext } from "./MalloyParser";
29
+ import { NestDefContext } from "./MalloyParser";
30
+ import { ExprFieldPathContext } from "./MalloyParser";
31
+ import { ExprFilterContext } from "./MalloyParser";
32
+ import { ExprLiteralContext } from "./MalloyParser";
33
+ import { ExprMinusContext } from "./MalloyParser";
34
+ import { ExprDurationContext } from "./MalloyParser";
35
+ import { ExprTimeTruncContext } from "./MalloyParser";
36
+ import { ExprSafeCastContext } from "./MalloyParser";
37
+ import { ExprMulDivContext } from "./MalloyParser";
38
+ import { ExprAddSubContext } from "./MalloyParser";
39
+ import { ExprRangeContext } from "./MalloyParser";
40
+ import { ExprForRangeContext } from "./MalloyParser";
41
+ import { ExprLogicalTreeContext } from "./MalloyParser";
42
+ import { ExprCompareContext } from "./MalloyParser";
43
+ import { ExprApplyContext } from "./MalloyParser";
44
+ import { ExprNotContext } from "./MalloyParser";
45
+ import { ExprLogicalContext } from "./MalloyParser";
46
+ import { ExprCastContext } from "./MalloyParser";
47
+ import { ExprCountDisinctContext } from "./MalloyParser";
48
+ import { ExprAggregateContext } from "./MalloyParser";
49
+ import { ExprExprContext } from "./MalloyParser";
50
+ import { ExprFuncContext } from "./MalloyParser";
51
+ import { ExprPickContext } from "./MalloyParser";
52
+ import { ExprUngroupContext } from "./MalloyParser";
53
+ import { ExploreArrowQueryContext } from "./MalloyParser";
54
+ import { ArrowQueryContext } from "./MalloyParser";
55
+ import { DefJoinOneContext } from "./MalloyParser";
56
+ import { DefJoinManyContext } from "./MalloyParser";
57
+ import { DefJoinCrossContext } from "./MalloyParser";
58
+ import { DefExploreDimensionContext } from "./MalloyParser";
59
+ import { DefExploreMeasureContext } from "./MalloyParser";
60
+ import { DefDeclare_stubContext } from "./MalloyParser";
61
+ import { DefJoin_stubContext } from "./MalloyParser";
62
+ import { DefExploreWhereContext } from "./MalloyParser";
63
+ import { DefExplorePrimaryKeyContext } from "./MalloyParser";
64
+ import { DefExploreRenameContext } from "./MalloyParser";
65
+ import { DefExploreEditFieldContext } from "./MalloyParser";
66
+ import { DefExploreQueryContext } from "./MalloyParser";
67
+ import { FilterByShortcutContext } from "./MalloyParser";
68
+ import { FilterByWhereContext } from "./MalloyParser";
69
+ import { JoinWithContext } from "./MalloyParser";
70
+ import { JoinOnContext } from "./MalloyParser";
71
+ import { MalloyDocumentContext } from "./MalloyParser";
72
+ import { MalloyStatementContext } from "./MalloyParser";
73
+ import { DefineExploreStatementContext } from "./MalloyParser";
74
+ import { ExploreKeywordContext } from "./MalloyParser";
75
+ import { DefineQueryContext } from "./MalloyParser";
76
+ import { TopLevelAnonQueryDefContext } from "./MalloyParser";
77
+ import { DefineSQLStatementContext } from "./MalloyParser";
78
+ import { SqlStatementDefContext } from "./MalloyParser";
79
+ import { ImportStatementContext } from "./MalloyParser";
80
+ import { ImportURLContext } from "./MalloyParser";
81
+ import { TopLevelQueryDefsContext } from "./MalloyParser";
82
+ import { TopLevelQueryDefContext } from "./MalloyParser";
83
+ import { RefineOperatorContext } from "./MalloyParser";
84
+ import { QueryContext } from "./MalloyParser";
85
+ import { PipelineFromNameContext } from "./MalloyParser";
86
+ import { FirstSegmentContext } from "./MalloyParser";
87
+ import { PipeElementContext } from "./MalloyParser";
88
+ import { ExploreTableContext } from "./MalloyParser";
89
+ import { QueryPropertiesContext } from "./MalloyParser";
90
+ import { FilterShortcutContext } from "./MalloyParser";
91
+ import { ExploreQueryNameContext } from "./MalloyParser";
92
+ import { QueryNameContext } from "./MalloyParser";
93
+ import { ExploreDefinitionListContext } from "./MalloyParser";
94
+ import { ExploreDefinitionContext } from "./MalloyParser";
95
+ import { ExploreContext } from "./MalloyParser";
96
+ import { ExploreSourceContext } from "./MalloyParser";
97
+ import { ExploreNameDefContext } from "./MalloyParser";
98
+ import { ExploreNameContext } from "./MalloyParser";
99
+ import { ExplorePropertiesContext } from "./MalloyParser";
100
+ import { ExploreStatementContext } from "./MalloyParser";
101
+ import { RenameListContext } from "./MalloyParser";
102
+ import { ExploreRenameDefContext } from "./MalloyParser";
103
+ import { DimensionDefListContext } from "./MalloyParser";
104
+ import { MeasureDefListContext } from "./MalloyParser";
105
+ import { FieldDefContext } from "./MalloyParser";
106
+ import { FieldNameDefContext } from "./MalloyParser";
107
+ import { JoinNameDefContext } from "./MalloyParser";
108
+ import { MeasureDefContext } from "./MalloyParser";
109
+ import { DeclareStatementContext } from "./MalloyParser";
110
+ import { JoinStatementContext } from "./MalloyParser";
111
+ import { JoinListContext } from "./MalloyParser";
112
+ import { JoinDefContext } from "./MalloyParser";
113
+ import { JoinExpressionContext } from "./MalloyParser";
114
+ import { FilterStatementContext } from "./MalloyParser";
115
+ import { FilteredByContext } from "./MalloyParser";
116
+ import { FilterClauseListContext } from "./MalloyParser";
117
+ import { WhereStatementContext } from "./MalloyParser";
118
+ import { HavingStatementContext } from "./MalloyParser";
119
+ import { SubQueryDefListContext } from "./MalloyParser";
120
+ import { ExploreQueryNameDefContext } from "./MalloyParser";
121
+ import { ExploreQueryDefContext } from "./MalloyParser";
122
+ import { QueryStatementContext } from "./MalloyParser";
123
+ import { GroupByStatementContext } from "./MalloyParser";
124
+ import { QueryFieldListContext } from "./MalloyParser";
125
+ import { DimensionDefContext } from "./MalloyParser";
126
+ import { QueryFieldEntryContext } from "./MalloyParser";
127
+ import { NestStatementContext } from "./MalloyParser";
128
+ import { NestedQueryListContext } from "./MalloyParser";
129
+ import { NestEntryContext } from "./MalloyParser";
130
+ import { AggregateStatementContext } from "./MalloyParser";
131
+ import { ProjectStatementContext } from "./MalloyParser";
132
+ import { OrderByStatementContext } from "./MalloyParser";
133
+ import { OrderingContext } from "./MalloyParser";
134
+ import { OrderBySpecContext } from "./MalloyParser";
135
+ import { LimitStatementContext } from "./MalloyParser";
136
+ import { BySpecContext } from "./MalloyParser";
137
+ import { TopStatementContext } from "./MalloyParser";
138
+ import { IndexElementContext } from "./MalloyParser";
139
+ import { IndexFieldsContext } from "./MalloyParser";
140
+ import { IndexStatementContext } from "./MalloyParser";
141
+ import { SampleStatementContext } from "./MalloyParser";
142
+ import { SampleSpecContext } from "./MalloyParser";
143
+ import { AggregateContext } from "./MalloyParser";
144
+ import { MalloyTypeContext } from "./MalloyParser";
145
+ import { CompareOpContext } from "./MalloyParser";
146
+ import { LiteralContext } from "./MalloyParser";
147
+ import { DateLiteralContext } from "./MalloyParser";
148
+ import { TableNameContext } from "./MalloyParser";
149
+ import { IdContext } from "./MalloyParser";
150
+ import { TimeframeContext } from "./MalloyParser";
151
+ import { UngroupContext } from "./MalloyParser";
152
+ import { FieldExprContext } from "./MalloyParser";
153
+ import { PartialAllowedFieldExprContext } from "./MalloyParser";
154
+ import { PickStatementContext } from "./MalloyParser";
155
+ import { PickContext } from "./MalloyParser";
156
+ import { ArgumentListContext } from "./MalloyParser";
157
+ import { FieldNameListContext } from "./MalloyParser";
158
+ import { FieldCollectionContext } from "./MalloyParser";
159
+ import { CollectionMemberContext } from "./MalloyParser";
160
+ import { FieldPathContext } from "./MalloyParser";
161
+ import { JoinNameContext } from "./MalloyParser";
162
+ import { FieldNameContext } from "./MalloyParser";
163
+ import { JustExprContext } from "./MalloyParser";
164
+ import { JsonContext } from "./MalloyParser";
165
+ import { JsonValueContext } from "./MalloyParser";
166
+ import { JsonObjectContext } from "./MalloyParser";
167
+ import { JsonPropertyContext } from "./MalloyParser";
168
+ import { JsonArrayContext } from "./MalloyParser";
169
+ import { SqlExploreNameRefContext } from "./MalloyParser";
170
+ import { SqlCommandNameDefContext } from "./MalloyParser";
171
+ import { ConnectionNameContext } from "./MalloyParser";
172
+ /**
173
+ * This interface defines a complete listener for a parse tree produced by
174
+ * `MalloyParser`.
175
+ */
176
+ export interface MalloyParserListener extends ParseTreeListener {
177
+ /**
178
+ * Enter a parse tree produced by the `exprPartialCompare`
179
+ * labeled alternative in `MalloyParser.partialAllowedFieldExpr`.
180
+ * @param ctx the parse tree
181
+ */
182
+ enterExprPartialCompare?: (ctx: ExprPartialCompareContext) => void;
183
+ /**
184
+ * Exit a parse tree produced by the `exprPartialCompare`
185
+ * labeled alternative in `MalloyParser.partialAllowedFieldExpr`.
186
+ * @param ctx the parse tree
187
+ */
188
+ exitExprPartialCompare?: (ctx: ExprPartialCompareContext) => void;
189
+ /**
190
+ * Enter a parse tree produced by the `exprNotPartial`
191
+ * labeled alternative in `MalloyParser.partialAllowedFieldExpr`.
192
+ * @param ctx the parse tree
193
+ */
194
+ enterExprNotPartial?: (ctx: ExprNotPartialContext) => void;
195
+ /**
196
+ * Exit a parse tree produced by the `exprNotPartial`
197
+ * labeled alternative in `MalloyParser.partialAllowedFieldExpr`.
198
+ * @param ctx the parse tree
199
+ */
200
+ exitExprNotPartial?: (ctx: ExprNotPartialContext) => void;
201
+ /**
202
+ * Enter a parse tree produced by the `nameMember`
203
+ * labeled alternative in `MalloyParser.collectionMember`.
204
+ * @param ctx the parse tree
205
+ */
206
+ enterNameMember?: (ctx: NameMemberContext) => void;
207
+ /**
208
+ * Exit a parse tree produced by the `nameMember`
209
+ * labeled alternative in `MalloyParser.collectionMember`.
210
+ * @param ctx the parse tree
211
+ */
212
+ exitNameMember?: (ctx: NameMemberContext) => void;
213
+ /**
214
+ * Enter a parse tree produced by the `wildMember`
215
+ * labeled alternative in `MalloyParser.collectionMember`.
216
+ * @param ctx the parse tree
217
+ */
218
+ enterWildMember?: (ctx: WildMemberContext) => void;
219
+ /**
220
+ * Exit a parse tree produced by the `wildMember`
221
+ * labeled alternative in `MalloyParser.collectionMember`.
222
+ * @param ctx the parse tree
223
+ */
224
+ exitWildMember?: (ctx: WildMemberContext) => void;
225
+ /**
226
+ * Enter a parse tree produced by the `newMember`
227
+ * labeled alternative in `MalloyParser.collectionMember`.
228
+ * @param ctx the parse tree
229
+ */
230
+ enterNewMember?: (ctx: NewMemberContext) => void;
231
+ /**
232
+ * Exit a parse tree produced by the `newMember`
233
+ * labeled alternative in `MalloyParser.collectionMember`.
234
+ * @param ctx the parse tree
235
+ */
236
+ exitNewMember?: (ctx: NewMemberContext) => void;
237
+ /**
238
+ * Enter a parse tree produced by the `namedQueries_stub`
239
+ * labeled alternative in `MalloyParser.defineQuery`.
240
+ * @param ctx the parse tree
241
+ */
242
+ enterNamedQueries_stub?: (ctx: NamedQueries_stubContext) => void;
243
+ /**
244
+ * Exit a parse tree produced by the `namedQueries_stub`
245
+ * labeled alternative in `MalloyParser.defineQuery`.
246
+ * @param ctx the parse tree
247
+ */
248
+ exitNamedQueries_stub?: (ctx: NamedQueries_stubContext) => void;
249
+ /**
250
+ * Enter a parse tree produced by the `anonymousQuery`
251
+ * labeled alternative in `MalloyParser.defineQuery`.
252
+ * @param ctx the parse tree
253
+ */
254
+ enterAnonymousQuery?: (ctx: AnonymousQueryContext) => void;
255
+ /**
256
+ * Exit a parse tree produced by the `anonymousQuery`
257
+ * labeled alternative in `MalloyParser.defineQuery`.
258
+ * @param ctx the parse tree
259
+ */
260
+ exitAnonymousQuery?: (ctx: AnonymousQueryContext) => void;
261
+ /**
262
+ * Enter a parse tree produced by the `NamedSource`
263
+ * labeled alternative in `MalloyParser.exploreSource`.
264
+ * @param ctx the parse tree
265
+ */
266
+ enterNamedSource?: (ctx: NamedSourceContext) => void;
267
+ /**
268
+ * Exit a parse tree produced by the `NamedSource`
269
+ * labeled alternative in `MalloyParser.exploreSource`.
270
+ * @param ctx the parse tree
271
+ */
272
+ exitNamedSource?: (ctx: NamedSourceContext) => void;
273
+ /**
274
+ * Enter a parse tree produced by the `TableSource`
275
+ * labeled alternative in `MalloyParser.exploreSource`.
276
+ * @param ctx the parse tree
277
+ */
278
+ enterTableSource?: (ctx: TableSourceContext) => void;
279
+ /**
280
+ * Exit a parse tree produced by the `TableSource`
281
+ * labeled alternative in `MalloyParser.exploreSource`.
282
+ * @param ctx the parse tree
283
+ */
284
+ exitTableSource?: (ctx: TableSourceContext) => void;
285
+ /**
286
+ * Enter a parse tree produced by the `QuerySource`
287
+ * labeled alternative in `MalloyParser.exploreSource`.
288
+ * @param ctx the parse tree
289
+ */
290
+ enterQuerySource?: (ctx: QuerySourceContext) => void;
291
+ /**
292
+ * Exit a parse tree produced by the `QuerySource`
293
+ * labeled alternative in `MalloyParser.exploreSource`.
294
+ * @param ctx the parse tree
295
+ */
296
+ exitQuerySource?: (ctx: QuerySourceContext) => void;
297
+ /**
298
+ * Enter a parse tree produced by the `SQLSource`
299
+ * labeled alternative in `MalloyParser.exploreSource`.
300
+ * @param ctx the parse tree
301
+ */
302
+ enterSQLSource?: (ctx: SQLSourceContext) => void;
303
+ /**
304
+ * Exit a parse tree produced by the `SQLSource`
305
+ * labeled alternative in `MalloyParser.exploreSource`.
306
+ * @param ctx the parse tree
307
+ */
308
+ exitSQLSource?: (ctx: SQLSourceContext) => void;
309
+ /**
310
+ * Enter a parse tree produced by the `literalTimestamp`
311
+ * labeled alternative in `MalloyParser.dateLiteral`.
312
+ * @param ctx the parse tree
313
+ */
314
+ enterLiteralTimestamp?: (ctx: LiteralTimestampContext) => void;
315
+ /**
316
+ * Exit a parse tree produced by the `literalTimestamp`
317
+ * labeled alternative in `MalloyParser.dateLiteral`.
318
+ * @param ctx the parse tree
319
+ */
320
+ exitLiteralTimestamp?: (ctx: LiteralTimestampContext) => void;
321
+ /**
322
+ * Enter a parse tree produced by the `literalDay`
323
+ * labeled alternative in `MalloyParser.dateLiteral`.
324
+ * @param ctx the parse tree
325
+ */
326
+ enterLiteralDay?: (ctx: LiteralDayContext) => void;
327
+ /**
328
+ * Exit a parse tree produced by the `literalDay`
329
+ * labeled alternative in `MalloyParser.dateLiteral`.
330
+ * @param ctx the parse tree
331
+ */
332
+ exitLiteralDay?: (ctx: LiteralDayContext) => void;
333
+ /**
334
+ * Enter a parse tree produced by the `literalWeek`
335
+ * labeled alternative in `MalloyParser.dateLiteral`.
336
+ * @param ctx the parse tree
337
+ */
338
+ enterLiteralWeek?: (ctx: LiteralWeekContext) => void;
339
+ /**
340
+ * Exit a parse tree produced by the `literalWeek`
341
+ * labeled alternative in `MalloyParser.dateLiteral`.
342
+ * @param ctx the parse tree
343
+ */
344
+ exitLiteralWeek?: (ctx: LiteralWeekContext) => void;
345
+ /**
346
+ * Enter a parse tree produced by the `literalMonth`
347
+ * labeled alternative in `MalloyParser.dateLiteral`.
348
+ * @param ctx the parse tree
349
+ */
350
+ enterLiteralMonth?: (ctx: LiteralMonthContext) => void;
351
+ /**
352
+ * Exit a parse tree produced by the `literalMonth`
353
+ * labeled alternative in `MalloyParser.dateLiteral`.
354
+ * @param ctx the parse tree
355
+ */
356
+ exitLiteralMonth?: (ctx: LiteralMonthContext) => void;
357
+ /**
358
+ * Enter a parse tree produced by the `literalQuarter`
359
+ * labeled alternative in `MalloyParser.dateLiteral`.
360
+ * @param ctx the parse tree
361
+ */
362
+ enterLiteralQuarter?: (ctx: LiteralQuarterContext) => void;
363
+ /**
364
+ * Exit a parse tree produced by the `literalQuarter`
365
+ * labeled alternative in `MalloyParser.dateLiteral`.
366
+ * @param ctx the parse tree
367
+ */
368
+ exitLiteralQuarter?: (ctx: LiteralQuarterContext) => void;
369
+ /**
370
+ * Enter a parse tree produced by the `literalYear`
371
+ * labeled alternative in `MalloyParser.dateLiteral`.
372
+ * @param ctx the parse tree
373
+ */
374
+ enterLiteralYear?: (ctx: LiteralYearContext) => void;
375
+ /**
376
+ * Exit a parse tree produced by the `literalYear`
377
+ * labeled alternative in `MalloyParser.dateLiteral`.
378
+ * @param ctx the parse tree
379
+ */
380
+ exitLiteralYear?: (ctx: LiteralYearContext) => void;
381
+ /**
382
+ * Enter a parse tree produced by the `exprString`
383
+ * labeled alternative in `MalloyParser.literal`.
384
+ * @param ctx the parse tree
385
+ */
386
+ enterExprString?: (ctx: ExprStringContext) => void;
387
+ /**
388
+ * Exit a parse tree produced by the `exprString`
389
+ * labeled alternative in `MalloyParser.literal`.
390
+ * @param ctx the parse tree
391
+ */
392
+ exitExprString?: (ctx: ExprStringContext) => void;
393
+ /**
394
+ * Enter a parse tree produced by the `exprNumber`
395
+ * labeled alternative in `MalloyParser.literal`.
396
+ * @param ctx the parse tree
397
+ */
398
+ enterExprNumber?: (ctx: ExprNumberContext) => void;
399
+ /**
400
+ * Exit a parse tree produced by the `exprNumber`
401
+ * labeled alternative in `MalloyParser.literal`.
402
+ * @param ctx the parse tree
403
+ */
404
+ exitExprNumber?: (ctx: ExprNumberContext) => void;
405
+ /**
406
+ * Enter a parse tree produced by the `exprTime`
407
+ * labeled alternative in `MalloyParser.literal`.
408
+ * @param ctx the parse tree
409
+ */
410
+ enterExprTime?: (ctx: ExprTimeContext) => void;
411
+ /**
412
+ * Exit a parse tree produced by the `exprTime`
413
+ * labeled alternative in `MalloyParser.literal`.
414
+ * @param ctx the parse tree
415
+ */
416
+ exitExprTime?: (ctx: ExprTimeContext) => void;
417
+ /**
418
+ * Enter a parse tree produced by the `exprNULL`
419
+ * labeled alternative in `MalloyParser.literal`.
420
+ * @param ctx the parse tree
421
+ */
422
+ enterExprNULL?: (ctx: ExprNULLContext) => void;
423
+ /**
424
+ * Exit a parse tree produced by the `exprNULL`
425
+ * labeled alternative in `MalloyParser.literal`.
426
+ * @param ctx the parse tree
427
+ */
428
+ exitExprNULL?: (ctx: ExprNULLContext) => void;
429
+ /**
430
+ * Enter a parse tree produced by the `exprBool`
431
+ * labeled alternative in `MalloyParser.literal`.
432
+ * @param ctx the parse tree
433
+ */
434
+ enterExprBool?: (ctx: ExprBoolContext) => void;
435
+ /**
436
+ * Exit a parse tree produced by the `exprBool`
437
+ * labeled alternative in `MalloyParser.literal`.
438
+ * @param ctx the parse tree
439
+ */
440
+ exitExprBool?: (ctx: ExprBoolContext) => void;
441
+ /**
442
+ * Enter a parse tree produced by the `exprRegex`
443
+ * labeled alternative in `MalloyParser.literal`.
444
+ * @param ctx the parse tree
445
+ */
446
+ enterExprRegex?: (ctx: ExprRegexContext) => void;
447
+ /**
448
+ * Exit a parse tree produced by the `exprRegex`
449
+ * labeled alternative in `MalloyParser.literal`.
450
+ * @param ctx the parse tree
451
+ */
452
+ exitExprRegex?: (ctx: ExprRegexContext) => void;
453
+ /**
454
+ * Enter a parse tree produced by the `exprNow`
455
+ * labeled alternative in `MalloyParser.literal`.
456
+ * @param ctx the parse tree
457
+ */
458
+ enterExprNow?: (ctx: ExprNowContext) => void;
459
+ /**
460
+ * Exit a parse tree produced by the `exprNow`
461
+ * labeled alternative in `MalloyParser.literal`.
462
+ * @param ctx the parse tree
463
+ */
464
+ exitExprNow?: (ctx: ExprNowContext) => void;
465
+ /**
466
+ * Enter a parse tree produced by the `queryFieldRef`
467
+ * labeled alternative in `MalloyParser.queryFieldEntry`.
468
+ * @param ctx the parse tree
469
+ */
470
+ enterQueryFieldRef?: (ctx: QueryFieldRefContext) => void;
471
+ /**
472
+ * Exit a parse tree produced by the `queryFieldRef`
473
+ * labeled alternative in `MalloyParser.queryFieldEntry`.
474
+ * @param ctx the parse tree
475
+ */
476
+ exitQueryFieldRef?: (ctx: QueryFieldRefContext) => void;
477
+ /**
478
+ * Enter a parse tree produced by the `queryFieldDef`
479
+ * labeled alternative in `MalloyParser.queryFieldEntry`.
480
+ * @param ctx the parse tree
481
+ */
482
+ enterQueryFieldDef?: (ctx: QueryFieldDefContext) => void;
483
+ /**
484
+ * Exit a parse tree produced by the `queryFieldDef`
485
+ * labeled alternative in `MalloyParser.queryFieldEntry`.
486
+ * @param ctx the parse tree
487
+ */
488
+ exitQueryFieldDef?: (ctx: QueryFieldDefContext) => void;
489
+ /**
490
+ * Enter a parse tree produced by the `nestExisting`
491
+ * labeled alternative in `MalloyParser.nestEntry`.
492
+ * @param ctx the parse tree
493
+ */
494
+ enterNestExisting?: (ctx: NestExistingContext) => void;
495
+ /**
496
+ * Exit a parse tree produced by the `nestExisting`
497
+ * labeled alternative in `MalloyParser.nestEntry`.
498
+ * @param ctx the parse tree
499
+ */
500
+ exitNestExisting?: (ctx: NestExistingContext) => void;
501
+ /**
502
+ * Enter a parse tree produced by the `nestDef`
503
+ * labeled alternative in `MalloyParser.nestEntry`.
504
+ * @param ctx the parse tree
505
+ */
506
+ enterNestDef?: (ctx: NestDefContext) => void;
507
+ /**
508
+ * Exit a parse tree produced by the `nestDef`
509
+ * labeled alternative in `MalloyParser.nestEntry`.
510
+ * @param ctx the parse tree
511
+ */
512
+ exitNestDef?: (ctx: NestDefContext) => void;
513
+ /**
514
+ * Enter a parse tree produced by the `exprFieldPath`
515
+ * labeled alternative in `MalloyParser.fieldExpr`.
516
+ * @param ctx the parse tree
517
+ */
518
+ enterExprFieldPath?: (ctx: ExprFieldPathContext) => void;
519
+ /**
520
+ * Exit a parse tree produced by the `exprFieldPath`
521
+ * labeled alternative in `MalloyParser.fieldExpr`.
522
+ * @param ctx the parse tree
523
+ */
524
+ exitExprFieldPath?: (ctx: ExprFieldPathContext) => void;
525
+ /**
526
+ * Enter a parse tree produced by the `exprFilter`
527
+ * labeled alternative in `MalloyParser.fieldExpr`.
528
+ * @param ctx the parse tree
529
+ */
530
+ enterExprFilter?: (ctx: ExprFilterContext) => void;
531
+ /**
532
+ * Exit a parse tree produced by the `exprFilter`
533
+ * labeled alternative in `MalloyParser.fieldExpr`.
534
+ * @param ctx the parse tree
535
+ */
536
+ exitExprFilter?: (ctx: ExprFilterContext) => void;
537
+ /**
538
+ * Enter a parse tree produced by the `exprLiteral`
539
+ * labeled alternative in `MalloyParser.fieldExpr`.
540
+ * @param ctx the parse tree
541
+ */
542
+ enterExprLiteral?: (ctx: ExprLiteralContext) => void;
543
+ /**
544
+ * Exit a parse tree produced by the `exprLiteral`
545
+ * labeled alternative in `MalloyParser.fieldExpr`.
546
+ * @param ctx the parse tree
547
+ */
548
+ exitExprLiteral?: (ctx: ExprLiteralContext) => void;
549
+ /**
550
+ * Enter a parse tree produced by the `exprMinus`
551
+ * labeled alternative in `MalloyParser.fieldExpr`.
552
+ * @param ctx the parse tree
553
+ */
554
+ enterExprMinus?: (ctx: ExprMinusContext) => void;
555
+ /**
556
+ * Exit a parse tree produced by the `exprMinus`
557
+ * labeled alternative in `MalloyParser.fieldExpr`.
558
+ * @param ctx the parse tree
559
+ */
560
+ exitExprMinus?: (ctx: ExprMinusContext) => void;
561
+ /**
562
+ * Enter a parse tree produced by the `exprDuration`
563
+ * labeled alternative in `MalloyParser.fieldExpr`.
564
+ * @param ctx the parse tree
565
+ */
566
+ enterExprDuration?: (ctx: ExprDurationContext) => void;
567
+ /**
568
+ * Exit a parse tree produced by the `exprDuration`
569
+ * labeled alternative in `MalloyParser.fieldExpr`.
570
+ * @param ctx the parse tree
571
+ */
572
+ exitExprDuration?: (ctx: ExprDurationContext) => void;
573
+ /**
574
+ * Enter a parse tree produced by the `exprTimeTrunc`
575
+ * labeled alternative in `MalloyParser.fieldExpr`.
576
+ * @param ctx the parse tree
577
+ */
578
+ enterExprTimeTrunc?: (ctx: ExprTimeTruncContext) => void;
579
+ /**
580
+ * Exit a parse tree produced by the `exprTimeTrunc`
581
+ * labeled alternative in `MalloyParser.fieldExpr`.
582
+ * @param ctx the parse tree
583
+ */
584
+ exitExprTimeTrunc?: (ctx: ExprTimeTruncContext) => void;
585
+ /**
586
+ * Enter a parse tree produced by the `exprSafeCast`
587
+ * labeled alternative in `MalloyParser.fieldExpr`.
588
+ * @param ctx the parse tree
589
+ */
590
+ enterExprSafeCast?: (ctx: ExprSafeCastContext) => void;
591
+ /**
592
+ * Exit a parse tree produced by the `exprSafeCast`
593
+ * labeled alternative in `MalloyParser.fieldExpr`.
594
+ * @param ctx the parse tree
595
+ */
596
+ exitExprSafeCast?: (ctx: ExprSafeCastContext) => void;
597
+ /**
598
+ * Enter a parse tree produced by the `exprMulDiv`
599
+ * labeled alternative in `MalloyParser.fieldExpr`.
600
+ * @param ctx the parse tree
601
+ */
602
+ enterExprMulDiv?: (ctx: ExprMulDivContext) => void;
603
+ /**
604
+ * Exit a parse tree produced by the `exprMulDiv`
605
+ * labeled alternative in `MalloyParser.fieldExpr`.
606
+ * @param ctx the parse tree
607
+ */
608
+ exitExprMulDiv?: (ctx: ExprMulDivContext) => void;
609
+ /**
610
+ * Enter a parse tree produced by the `exprAddSub`
611
+ * labeled alternative in `MalloyParser.fieldExpr`.
612
+ * @param ctx the parse tree
613
+ */
614
+ enterExprAddSub?: (ctx: ExprAddSubContext) => void;
615
+ /**
616
+ * Exit a parse tree produced by the `exprAddSub`
617
+ * labeled alternative in `MalloyParser.fieldExpr`.
618
+ * @param ctx the parse tree
619
+ */
620
+ exitExprAddSub?: (ctx: ExprAddSubContext) => void;
621
+ /**
622
+ * Enter a parse tree produced by the `exprRange`
623
+ * labeled alternative in `MalloyParser.fieldExpr`.
624
+ * @param ctx the parse tree
625
+ */
626
+ enterExprRange?: (ctx: ExprRangeContext) => void;
627
+ /**
628
+ * Exit a parse tree produced by the `exprRange`
629
+ * labeled alternative in `MalloyParser.fieldExpr`.
630
+ * @param ctx the parse tree
631
+ */
632
+ exitExprRange?: (ctx: ExprRangeContext) => void;
633
+ /**
634
+ * Enter a parse tree produced by the `exprForRange`
635
+ * labeled alternative in `MalloyParser.fieldExpr`.
636
+ * @param ctx the parse tree
637
+ */
638
+ enterExprForRange?: (ctx: ExprForRangeContext) => void;
639
+ /**
640
+ * Exit a parse tree produced by the `exprForRange`
641
+ * labeled alternative in `MalloyParser.fieldExpr`.
642
+ * @param ctx the parse tree
643
+ */
644
+ exitExprForRange?: (ctx: ExprForRangeContext) => void;
645
+ /**
646
+ * Enter a parse tree produced by the `exprLogicalTree`
647
+ * labeled alternative in `MalloyParser.fieldExpr`.
648
+ * @param ctx the parse tree
649
+ */
650
+ enterExprLogicalTree?: (ctx: ExprLogicalTreeContext) => void;
651
+ /**
652
+ * Exit a parse tree produced by the `exprLogicalTree`
653
+ * labeled alternative in `MalloyParser.fieldExpr`.
654
+ * @param ctx the parse tree
655
+ */
656
+ exitExprLogicalTree?: (ctx: ExprLogicalTreeContext) => void;
657
+ /**
658
+ * Enter a parse tree produced by the `exprCompare`
659
+ * labeled alternative in `MalloyParser.fieldExpr`.
660
+ * @param ctx the parse tree
661
+ */
662
+ enterExprCompare?: (ctx: ExprCompareContext) => void;
663
+ /**
664
+ * Exit a parse tree produced by the `exprCompare`
665
+ * labeled alternative in `MalloyParser.fieldExpr`.
666
+ * @param ctx the parse tree
667
+ */
668
+ exitExprCompare?: (ctx: ExprCompareContext) => void;
669
+ /**
670
+ * Enter a parse tree produced by the `exprApply`
671
+ * labeled alternative in `MalloyParser.fieldExpr`.
672
+ * @param ctx the parse tree
673
+ */
674
+ enterExprApply?: (ctx: ExprApplyContext) => void;
675
+ /**
676
+ * Exit a parse tree produced by the `exprApply`
677
+ * labeled alternative in `MalloyParser.fieldExpr`.
678
+ * @param ctx the parse tree
679
+ */
680
+ exitExprApply?: (ctx: ExprApplyContext) => void;
681
+ /**
682
+ * Enter a parse tree produced by the `exprNot`
683
+ * labeled alternative in `MalloyParser.fieldExpr`.
684
+ * @param ctx the parse tree
685
+ */
686
+ enterExprNot?: (ctx: ExprNotContext) => void;
687
+ /**
688
+ * Exit a parse tree produced by the `exprNot`
689
+ * labeled alternative in `MalloyParser.fieldExpr`.
690
+ * @param ctx the parse tree
691
+ */
692
+ exitExprNot?: (ctx: ExprNotContext) => void;
693
+ /**
694
+ * Enter a parse tree produced by the `exprLogical`
695
+ * labeled alternative in `MalloyParser.fieldExpr`.
696
+ * @param ctx the parse tree
697
+ */
698
+ enterExprLogical?: (ctx: ExprLogicalContext) => void;
699
+ /**
700
+ * Exit a parse tree produced by the `exprLogical`
701
+ * labeled alternative in `MalloyParser.fieldExpr`.
702
+ * @param ctx the parse tree
703
+ */
704
+ exitExprLogical?: (ctx: ExprLogicalContext) => void;
705
+ /**
706
+ * Enter a parse tree produced by the `exprCast`
707
+ * labeled alternative in `MalloyParser.fieldExpr`.
708
+ * @param ctx the parse tree
709
+ */
710
+ enterExprCast?: (ctx: ExprCastContext) => void;
711
+ /**
712
+ * Exit a parse tree produced by the `exprCast`
713
+ * labeled alternative in `MalloyParser.fieldExpr`.
714
+ * @param ctx the parse tree
715
+ */
716
+ exitExprCast?: (ctx: ExprCastContext) => void;
717
+ /**
718
+ * Enter a parse tree produced by the `exprCountDisinct`
719
+ * labeled alternative in `MalloyParser.fieldExpr`.
720
+ * @param ctx the parse tree
721
+ */
722
+ enterExprCountDisinct?: (ctx: ExprCountDisinctContext) => void;
723
+ /**
724
+ * Exit a parse tree produced by the `exprCountDisinct`
725
+ * labeled alternative in `MalloyParser.fieldExpr`.
726
+ * @param ctx the parse tree
727
+ */
728
+ exitExprCountDisinct?: (ctx: ExprCountDisinctContext) => void;
729
+ /**
730
+ * Enter a parse tree produced by the `exprAggregate`
731
+ * labeled alternative in `MalloyParser.fieldExpr`.
732
+ * @param ctx the parse tree
733
+ */
734
+ enterExprAggregate?: (ctx: ExprAggregateContext) => void;
735
+ /**
736
+ * Exit a parse tree produced by the `exprAggregate`
737
+ * labeled alternative in `MalloyParser.fieldExpr`.
738
+ * @param ctx the parse tree
739
+ */
740
+ exitExprAggregate?: (ctx: ExprAggregateContext) => void;
741
+ /**
742
+ * Enter a parse tree produced by the `exprExpr`
743
+ * labeled alternative in `MalloyParser.fieldExpr`.
744
+ * @param ctx the parse tree
745
+ */
746
+ enterExprExpr?: (ctx: ExprExprContext) => void;
747
+ /**
748
+ * Exit a parse tree produced by the `exprExpr`
749
+ * labeled alternative in `MalloyParser.fieldExpr`.
750
+ * @param ctx the parse tree
751
+ */
752
+ exitExprExpr?: (ctx: ExprExprContext) => void;
753
+ /**
754
+ * Enter a parse tree produced by the `exprFunc`
755
+ * labeled alternative in `MalloyParser.fieldExpr`.
756
+ * @param ctx the parse tree
757
+ */
758
+ enterExprFunc?: (ctx: ExprFuncContext) => void;
759
+ /**
760
+ * Exit a parse tree produced by the `exprFunc`
761
+ * labeled alternative in `MalloyParser.fieldExpr`.
762
+ * @param ctx the parse tree
763
+ */
764
+ exitExprFunc?: (ctx: ExprFuncContext) => void;
765
+ /**
766
+ * Enter a parse tree produced by the `exprPick`
767
+ * labeled alternative in `MalloyParser.fieldExpr`.
768
+ * @param ctx the parse tree
769
+ */
770
+ enterExprPick?: (ctx: ExprPickContext) => void;
771
+ /**
772
+ * Exit a parse tree produced by the `exprPick`
773
+ * labeled alternative in `MalloyParser.fieldExpr`.
774
+ * @param ctx the parse tree
775
+ */
776
+ exitExprPick?: (ctx: ExprPickContext) => void;
777
+ /**
778
+ * Enter a parse tree produced by the `exprUngroup`
779
+ * labeled alternative in `MalloyParser.fieldExpr`.
780
+ * @param ctx the parse tree
781
+ */
782
+ enterExprUngroup?: (ctx: ExprUngroupContext) => void;
783
+ /**
784
+ * Exit a parse tree produced by the `exprUngroup`
785
+ * labeled alternative in `MalloyParser.fieldExpr`.
786
+ * @param ctx the parse tree
787
+ */
788
+ exitExprUngroup?: (ctx: ExprUngroupContext) => void;
789
+ /**
790
+ * Enter a parse tree produced by the `exploreArrowQuery`
791
+ * labeled alternative in `MalloyParser.query`.
792
+ * @param ctx the parse tree
793
+ */
794
+ enterExploreArrowQuery?: (ctx: ExploreArrowQueryContext) => void;
795
+ /**
796
+ * Exit a parse tree produced by the `exploreArrowQuery`
797
+ * labeled alternative in `MalloyParser.query`.
798
+ * @param ctx the parse tree
799
+ */
800
+ exitExploreArrowQuery?: (ctx: ExploreArrowQueryContext) => void;
801
+ /**
802
+ * Enter a parse tree produced by the `arrowQuery`
803
+ * labeled alternative in `MalloyParser.query`.
804
+ * @param ctx the parse tree
805
+ */
806
+ enterArrowQuery?: (ctx: ArrowQueryContext) => void;
807
+ /**
808
+ * Exit a parse tree produced by the `arrowQuery`
809
+ * labeled alternative in `MalloyParser.query`.
810
+ * @param ctx the parse tree
811
+ */
812
+ exitArrowQuery?: (ctx: ArrowQueryContext) => void;
813
+ /**
814
+ * Enter a parse tree produced by the `defJoinOne`
815
+ * labeled alternative in `MalloyParser.joinStatement`.
816
+ * @param ctx the parse tree
817
+ */
818
+ enterDefJoinOne?: (ctx: DefJoinOneContext) => void;
819
+ /**
820
+ * Exit a parse tree produced by the `defJoinOne`
821
+ * labeled alternative in `MalloyParser.joinStatement`.
822
+ * @param ctx the parse tree
823
+ */
824
+ exitDefJoinOne?: (ctx: DefJoinOneContext) => void;
825
+ /**
826
+ * Enter a parse tree produced by the `defJoinMany`
827
+ * labeled alternative in `MalloyParser.joinStatement`.
828
+ * @param ctx the parse tree
829
+ */
830
+ enterDefJoinMany?: (ctx: DefJoinManyContext) => void;
831
+ /**
832
+ * Exit a parse tree produced by the `defJoinMany`
833
+ * labeled alternative in `MalloyParser.joinStatement`.
834
+ * @param ctx the parse tree
835
+ */
836
+ exitDefJoinMany?: (ctx: DefJoinManyContext) => void;
837
+ /**
838
+ * Enter a parse tree produced by the `defJoinCross`
839
+ * labeled alternative in `MalloyParser.joinStatement`.
840
+ * @param ctx the parse tree
841
+ */
842
+ enterDefJoinCross?: (ctx: DefJoinCrossContext) => void;
843
+ /**
844
+ * Exit a parse tree produced by the `defJoinCross`
845
+ * labeled alternative in `MalloyParser.joinStatement`.
846
+ * @param ctx the parse tree
847
+ */
848
+ exitDefJoinCross?: (ctx: DefJoinCrossContext) => void;
849
+ /**
850
+ * Enter a parse tree produced by the `defExploreDimension`
851
+ * labeled alternative in `MalloyParser.exploreStatement`.
852
+ * @param ctx the parse tree
853
+ */
854
+ enterDefExploreDimension?: (ctx: DefExploreDimensionContext) => void;
855
+ /**
856
+ * Exit a parse tree produced by the `defExploreDimension`
857
+ * labeled alternative in `MalloyParser.exploreStatement`.
858
+ * @param ctx the parse tree
859
+ */
860
+ exitDefExploreDimension?: (ctx: DefExploreDimensionContext) => void;
861
+ /**
862
+ * Enter a parse tree produced by the `defExploreMeasure`
863
+ * labeled alternative in `MalloyParser.exploreStatement`.
864
+ * @param ctx the parse tree
865
+ */
866
+ enterDefExploreMeasure?: (ctx: DefExploreMeasureContext) => void;
867
+ /**
868
+ * Exit a parse tree produced by the `defExploreMeasure`
869
+ * labeled alternative in `MalloyParser.exploreStatement`.
870
+ * @param ctx the parse tree
871
+ */
872
+ exitDefExploreMeasure?: (ctx: DefExploreMeasureContext) => void;
873
+ /**
874
+ * Enter a parse tree produced by the `defDeclare_stub`
875
+ * labeled alternative in `MalloyParser.exploreStatement`.
876
+ * @param ctx the parse tree
877
+ */
878
+ enterDefDeclare_stub?: (ctx: DefDeclare_stubContext) => void;
879
+ /**
880
+ * Exit a parse tree produced by the `defDeclare_stub`
881
+ * labeled alternative in `MalloyParser.exploreStatement`.
882
+ * @param ctx the parse tree
883
+ */
884
+ exitDefDeclare_stub?: (ctx: DefDeclare_stubContext) => void;
885
+ /**
886
+ * Enter a parse tree produced by the `defJoin_stub`
887
+ * labeled alternative in `MalloyParser.exploreStatement`.
888
+ * @param ctx the parse tree
889
+ */
890
+ enterDefJoin_stub?: (ctx: DefJoin_stubContext) => void;
891
+ /**
892
+ * Exit a parse tree produced by the `defJoin_stub`
893
+ * labeled alternative in `MalloyParser.exploreStatement`.
894
+ * @param ctx the parse tree
895
+ */
896
+ exitDefJoin_stub?: (ctx: DefJoin_stubContext) => void;
897
+ /**
898
+ * Enter a parse tree produced by the `defExploreWhere`
899
+ * labeled alternative in `MalloyParser.exploreStatement`.
900
+ * @param ctx the parse tree
901
+ */
902
+ enterDefExploreWhere?: (ctx: DefExploreWhereContext) => void;
903
+ /**
904
+ * Exit a parse tree produced by the `defExploreWhere`
905
+ * labeled alternative in `MalloyParser.exploreStatement`.
906
+ * @param ctx the parse tree
907
+ */
908
+ exitDefExploreWhere?: (ctx: DefExploreWhereContext) => void;
909
+ /**
910
+ * Enter a parse tree produced by the `defExplorePrimaryKey`
911
+ * labeled alternative in `MalloyParser.exploreStatement`.
912
+ * @param ctx the parse tree
913
+ */
914
+ enterDefExplorePrimaryKey?: (ctx: DefExplorePrimaryKeyContext) => void;
915
+ /**
916
+ * Exit a parse tree produced by the `defExplorePrimaryKey`
917
+ * labeled alternative in `MalloyParser.exploreStatement`.
918
+ * @param ctx the parse tree
919
+ */
920
+ exitDefExplorePrimaryKey?: (ctx: DefExplorePrimaryKeyContext) => void;
921
+ /**
922
+ * Enter a parse tree produced by the `defExploreRename`
923
+ * labeled alternative in `MalloyParser.exploreStatement`.
924
+ * @param ctx the parse tree
925
+ */
926
+ enterDefExploreRename?: (ctx: DefExploreRenameContext) => void;
927
+ /**
928
+ * Exit a parse tree produced by the `defExploreRename`
929
+ * labeled alternative in `MalloyParser.exploreStatement`.
930
+ * @param ctx the parse tree
931
+ */
932
+ exitDefExploreRename?: (ctx: DefExploreRenameContext) => void;
933
+ /**
934
+ * Enter a parse tree produced by the `defExploreEditField`
935
+ * labeled alternative in `MalloyParser.exploreStatement`.
936
+ * @param ctx the parse tree
937
+ */
938
+ enterDefExploreEditField?: (ctx: DefExploreEditFieldContext) => void;
939
+ /**
940
+ * Exit a parse tree produced by the `defExploreEditField`
941
+ * labeled alternative in `MalloyParser.exploreStatement`.
942
+ * @param ctx the parse tree
943
+ */
944
+ exitDefExploreEditField?: (ctx: DefExploreEditFieldContext) => void;
945
+ /**
946
+ * Enter a parse tree produced by the `defExploreQuery`
947
+ * labeled alternative in `MalloyParser.exploreStatement`.
948
+ * @param ctx the parse tree
949
+ */
950
+ enterDefExploreQuery?: (ctx: DefExploreQueryContext) => void;
951
+ /**
952
+ * Exit a parse tree produced by the `defExploreQuery`
953
+ * labeled alternative in `MalloyParser.exploreStatement`.
954
+ * @param ctx the parse tree
955
+ */
956
+ exitDefExploreQuery?: (ctx: DefExploreQueryContext) => void;
957
+ /**
958
+ * Enter a parse tree produced by the `filterByShortcut`
959
+ * labeled alternative in `MalloyParser.filteredBy`.
960
+ * @param ctx the parse tree
961
+ */
962
+ enterFilterByShortcut?: (ctx: FilterByShortcutContext) => void;
963
+ /**
964
+ * Exit a parse tree produced by the `filterByShortcut`
965
+ * labeled alternative in `MalloyParser.filteredBy`.
966
+ * @param ctx the parse tree
967
+ */
968
+ exitFilterByShortcut?: (ctx: FilterByShortcutContext) => void;
969
+ /**
970
+ * Enter a parse tree produced by the `filterByWhere`
971
+ * labeled alternative in `MalloyParser.filteredBy`.
972
+ * @param ctx the parse tree
973
+ */
974
+ enterFilterByWhere?: (ctx: FilterByWhereContext) => void;
975
+ /**
976
+ * Exit a parse tree produced by the `filterByWhere`
977
+ * labeled alternative in `MalloyParser.filteredBy`.
978
+ * @param ctx the parse tree
979
+ */
980
+ exitFilterByWhere?: (ctx: FilterByWhereContext) => void;
981
+ /**
982
+ * Enter a parse tree produced by the `joinWith`
983
+ * labeled alternative in `MalloyParser.joinDef`.
984
+ * @param ctx the parse tree
985
+ */
986
+ enterJoinWith?: (ctx: JoinWithContext) => void;
987
+ /**
988
+ * Exit a parse tree produced by the `joinWith`
989
+ * labeled alternative in `MalloyParser.joinDef`.
990
+ * @param ctx the parse tree
991
+ */
992
+ exitJoinWith?: (ctx: JoinWithContext) => void;
993
+ /**
994
+ * Enter a parse tree produced by the `joinOn`
995
+ * labeled alternative in `MalloyParser.joinDef`.
996
+ * @param ctx the parse tree
997
+ */
998
+ enterJoinOn?: (ctx: JoinOnContext) => void;
999
+ /**
1000
+ * Exit a parse tree produced by the `joinOn`
1001
+ * labeled alternative in `MalloyParser.joinDef`.
1002
+ * @param ctx the parse tree
1003
+ */
1004
+ exitJoinOn?: (ctx: JoinOnContext) => void;
1005
+ /**
1006
+ * Enter a parse tree produced by `MalloyParser.malloyDocument`.
1007
+ * @param ctx the parse tree
1008
+ */
1009
+ enterMalloyDocument?: (ctx: MalloyDocumentContext) => void;
1010
+ /**
1011
+ * Exit a parse tree produced by `MalloyParser.malloyDocument`.
1012
+ * @param ctx the parse tree
1013
+ */
1014
+ exitMalloyDocument?: (ctx: MalloyDocumentContext) => void;
1015
+ /**
1016
+ * Enter a parse tree produced by `MalloyParser.malloyStatement`.
1017
+ * @param ctx the parse tree
1018
+ */
1019
+ enterMalloyStatement?: (ctx: MalloyStatementContext) => void;
1020
+ /**
1021
+ * Exit a parse tree produced by `MalloyParser.malloyStatement`.
1022
+ * @param ctx the parse tree
1023
+ */
1024
+ exitMalloyStatement?: (ctx: MalloyStatementContext) => void;
1025
+ /**
1026
+ * Enter a parse tree produced by `MalloyParser.defineExploreStatement`.
1027
+ * @param ctx the parse tree
1028
+ */
1029
+ enterDefineExploreStatement?: (ctx: DefineExploreStatementContext) => void;
1030
+ /**
1031
+ * Exit a parse tree produced by `MalloyParser.defineExploreStatement`.
1032
+ * @param ctx the parse tree
1033
+ */
1034
+ exitDefineExploreStatement?: (ctx: DefineExploreStatementContext) => void;
1035
+ /**
1036
+ * Enter a parse tree produced by `MalloyParser.exploreKeyword`.
1037
+ * @param ctx the parse tree
1038
+ */
1039
+ enterExploreKeyword?: (ctx: ExploreKeywordContext) => void;
1040
+ /**
1041
+ * Exit a parse tree produced by `MalloyParser.exploreKeyword`.
1042
+ * @param ctx the parse tree
1043
+ */
1044
+ exitExploreKeyword?: (ctx: ExploreKeywordContext) => void;
1045
+ /**
1046
+ * Enter a parse tree produced by `MalloyParser.defineQuery`.
1047
+ * @param ctx the parse tree
1048
+ */
1049
+ enterDefineQuery?: (ctx: DefineQueryContext) => void;
1050
+ /**
1051
+ * Exit a parse tree produced by `MalloyParser.defineQuery`.
1052
+ * @param ctx the parse tree
1053
+ */
1054
+ exitDefineQuery?: (ctx: DefineQueryContext) => void;
1055
+ /**
1056
+ * Enter a parse tree produced by `MalloyParser.topLevelAnonQueryDef`.
1057
+ * @param ctx the parse tree
1058
+ */
1059
+ enterTopLevelAnonQueryDef?: (ctx: TopLevelAnonQueryDefContext) => void;
1060
+ /**
1061
+ * Exit a parse tree produced by `MalloyParser.topLevelAnonQueryDef`.
1062
+ * @param ctx the parse tree
1063
+ */
1064
+ exitTopLevelAnonQueryDef?: (ctx: TopLevelAnonQueryDefContext) => void;
1065
+ /**
1066
+ * Enter a parse tree produced by `MalloyParser.defineSQLStatement`.
1067
+ * @param ctx the parse tree
1068
+ */
1069
+ enterDefineSQLStatement?: (ctx: DefineSQLStatementContext) => void;
1070
+ /**
1071
+ * Exit a parse tree produced by `MalloyParser.defineSQLStatement`.
1072
+ * @param ctx the parse tree
1073
+ */
1074
+ exitDefineSQLStatement?: (ctx: DefineSQLStatementContext) => void;
1075
+ /**
1076
+ * Enter a parse tree produced by `MalloyParser.sqlStatementDef`.
1077
+ * @param ctx the parse tree
1078
+ */
1079
+ enterSqlStatementDef?: (ctx: SqlStatementDefContext) => void;
1080
+ /**
1081
+ * Exit a parse tree produced by `MalloyParser.sqlStatementDef`.
1082
+ * @param ctx the parse tree
1083
+ */
1084
+ exitSqlStatementDef?: (ctx: SqlStatementDefContext) => void;
1085
+ /**
1086
+ * Enter a parse tree produced by `MalloyParser.importStatement`.
1087
+ * @param ctx the parse tree
1088
+ */
1089
+ enterImportStatement?: (ctx: ImportStatementContext) => void;
1090
+ /**
1091
+ * Exit a parse tree produced by `MalloyParser.importStatement`.
1092
+ * @param ctx the parse tree
1093
+ */
1094
+ exitImportStatement?: (ctx: ImportStatementContext) => void;
1095
+ /**
1096
+ * Enter a parse tree produced by `MalloyParser.importURL`.
1097
+ * @param ctx the parse tree
1098
+ */
1099
+ enterImportURL?: (ctx: ImportURLContext) => void;
1100
+ /**
1101
+ * Exit a parse tree produced by `MalloyParser.importURL`.
1102
+ * @param ctx the parse tree
1103
+ */
1104
+ exitImportURL?: (ctx: ImportURLContext) => void;
1105
+ /**
1106
+ * Enter a parse tree produced by `MalloyParser.topLevelQueryDefs`.
1107
+ * @param ctx the parse tree
1108
+ */
1109
+ enterTopLevelQueryDefs?: (ctx: TopLevelQueryDefsContext) => void;
1110
+ /**
1111
+ * Exit a parse tree produced by `MalloyParser.topLevelQueryDefs`.
1112
+ * @param ctx the parse tree
1113
+ */
1114
+ exitTopLevelQueryDefs?: (ctx: TopLevelQueryDefsContext) => void;
1115
+ /**
1116
+ * Enter a parse tree produced by `MalloyParser.topLevelQueryDef`.
1117
+ * @param ctx the parse tree
1118
+ */
1119
+ enterTopLevelQueryDef?: (ctx: TopLevelQueryDefContext) => void;
1120
+ /**
1121
+ * Exit a parse tree produced by `MalloyParser.topLevelQueryDef`.
1122
+ * @param ctx the parse tree
1123
+ */
1124
+ exitTopLevelQueryDef?: (ctx: TopLevelQueryDefContext) => void;
1125
+ /**
1126
+ * Enter a parse tree produced by `MalloyParser.refineOperator`.
1127
+ * @param ctx the parse tree
1128
+ */
1129
+ enterRefineOperator?: (ctx: RefineOperatorContext) => void;
1130
+ /**
1131
+ * Exit a parse tree produced by `MalloyParser.refineOperator`.
1132
+ * @param ctx the parse tree
1133
+ */
1134
+ exitRefineOperator?: (ctx: RefineOperatorContext) => void;
1135
+ /**
1136
+ * Enter a parse tree produced by `MalloyParser.query`.
1137
+ * @param ctx the parse tree
1138
+ */
1139
+ enterQuery?: (ctx: QueryContext) => void;
1140
+ /**
1141
+ * Exit a parse tree produced by `MalloyParser.query`.
1142
+ * @param ctx the parse tree
1143
+ */
1144
+ exitQuery?: (ctx: QueryContext) => void;
1145
+ /**
1146
+ * Enter a parse tree produced by `MalloyParser.pipelineFromName`.
1147
+ * @param ctx the parse tree
1148
+ */
1149
+ enterPipelineFromName?: (ctx: PipelineFromNameContext) => void;
1150
+ /**
1151
+ * Exit a parse tree produced by `MalloyParser.pipelineFromName`.
1152
+ * @param ctx the parse tree
1153
+ */
1154
+ exitPipelineFromName?: (ctx: PipelineFromNameContext) => void;
1155
+ /**
1156
+ * Enter a parse tree produced by `MalloyParser.firstSegment`.
1157
+ * @param ctx the parse tree
1158
+ */
1159
+ enterFirstSegment?: (ctx: FirstSegmentContext) => void;
1160
+ /**
1161
+ * Exit a parse tree produced by `MalloyParser.firstSegment`.
1162
+ * @param ctx the parse tree
1163
+ */
1164
+ exitFirstSegment?: (ctx: FirstSegmentContext) => void;
1165
+ /**
1166
+ * Enter a parse tree produced by `MalloyParser.pipeElement`.
1167
+ * @param ctx the parse tree
1168
+ */
1169
+ enterPipeElement?: (ctx: PipeElementContext) => void;
1170
+ /**
1171
+ * Exit a parse tree produced by `MalloyParser.pipeElement`.
1172
+ * @param ctx the parse tree
1173
+ */
1174
+ exitPipeElement?: (ctx: PipeElementContext) => void;
1175
+ /**
1176
+ * Enter a parse tree produced by `MalloyParser.exploreTable`.
1177
+ * @param ctx the parse tree
1178
+ */
1179
+ enterExploreTable?: (ctx: ExploreTableContext) => void;
1180
+ /**
1181
+ * Exit a parse tree produced by `MalloyParser.exploreTable`.
1182
+ * @param ctx the parse tree
1183
+ */
1184
+ exitExploreTable?: (ctx: ExploreTableContext) => void;
1185
+ /**
1186
+ * Enter a parse tree produced by `MalloyParser.queryProperties`.
1187
+ * @param ctx the parse tree
1188
+ */
1189
+ enterQueryProperties?: (ctx: QueryPropertiesContext) => void;
1190
+ /**
1191
+ * Exit a parse tree produced by `MalloyParser.queryProperties`.
1192
+ * @param ctx the parse tree
1193
+ */
1194
+ exitQueryProperties?: (ctx: QueryPropertiesContext) => void;
1195
+ /**
1196
+ * Enter a parse tree produced by `MalloyParser.filterShortcut`.
1197
+ * @param ctx the parse tree
1198
+ */
1199
+ enterFilterShortcut?: (ctx: FilterShortcutContext) => void;
1200
+ /**
1201
+ * Exit a parse tree produced by `MalloyParser.filterShortcut`.
1202
+ * @param ctx the parse tree
1203
+ */
1204
+ exitFilterShortcut?: (ctx: FilterShortcutContext) => void;
1205
+ /**
1206
+ * Enter a parse tree produced by `MalloyParser.exploreQueryName`.
1207
+ * @param ctx the parse tree
1208
+ */
1209
+ enterExploreQueryName?: (ctx: ExploreQueryNameContext) => void;
1210
+ /**
1211
+ * Exit a parse tree produced by `MalloyParser.exploreQueryName`.
1212
+ * @param ctx the parse tree
1213
+ */
1214
+ exitExploreQueryName?: (ctx: ExploreQueryNameContext) => void;
1215
+ /**
1216
+ * Enter a parse tree produced by `MalloyParser.queryName`.
1217
+ * @param ctx the parse tree
1218
+ */
1219
+ enterQueryName?: (ctx: QueryNameContext) => void;
1220
+ /**
1221
+ * Exit a parse tree produced by `MalloyParser.queryName`.
1222
+ * @param ctx the parse tree
1223
+ */
1224
+ exitQueryName?: (ctx: QueryNameContext) => void;
1225
+ /**
1226
+ * Enter a parse tree produced by `MalloyParser.exploreDefinitionList`.
1227
+ * @param ctx the parse tree
1228
+ */
1229
+ enterExploreDefinitionList?: (ctx: ExploreDefinitionListContext) => void;
1230
+ /**
1231
+ * Exit a parse tree produced by `MalloyParser.exploreDefinitionList`.
1232
+ * @param ctx the parse tree
1233
+ */
1234
+ exitExploreDefinitionList?: (ctx: ExploreDefinitionListContext) => void;
1235
+ /**
1236
+ * Enter a parse tree produced by `MalloyParser.exploreDefinition`.
1237
+ * @param ctx the parse tree
1238
+ */
1239
+ enterExploreDefinition?: (ctx: ExploreDefinitionContext) => void;
1240
+ /**
1241
+ * Exit a parse tree produced by `MalloyParser.exploreDefinition`.
1242
+ * @param ctx the parse tree
1243
+ */
1244
+ exitExploreDefinition?: (ctx: ExploreDefinitionContext) => void;
1245
+ /**
1246
+ * Enter a parse tree produced by `MalloyParser.explore`.
1247
+ * @param ctx the parse tree
1248
+ */
1249
+ enterExplore?: (ctx: ExploreContext) => void;
1250
+ /**
1251
+ * Exit a parse tree produced by `MalloyParser.explore`.
1252
+ * @param ctx the parse tree
1253
+ */
1254
+ exitExplore?: (ctx: ExploreContext) => void;
1255
+ /**
1256
+ * Enter a parse tree produced by `MalloyParser.exploreSource`.
1257
+ * @param ctx the parse tree
1258
+ */
1259
+ enterExploreSource?: (ctx: ExploreSourceContext) => void;
1260
+ /**
1261
+ * Exit a parse tree produced by `MalloyParser.exploreSource`.
1262
+ * @param ctx the parse tree
1263
+ */
1264
+ exitExploreSource?: (ctx: ExploreSourceContext) => void;
1265
+ /**
1266
+ * Enter a parse tree produced by `MalloyParser.exploreNameDef`.
1267
+ * @param ctx the parse tree
1268
+ */
1269
+ enterExploreNameDef?: (ctx: ExploreNameDefContext) => void;
1270
+ /**
1271
+ * Exit a parse tree produced by `MalloyParser.exploreNameDef`.
1272
+ * @param ctx the parse tree
1273
+ */
1274
+ exitExploreNameDef?: (ctx: ExploreNameDefContext) => void;
1275
+ /**
1276
+ * Enter a parse tree produced by `MalloyParser.exploreName`.
1277
+ * @param ctx the parse tree
1278
+ */
1279
+ enterExploreName?: (ctx: ExploreNameContext) => void;
1280
+ /**
1281
+ * Exit a parse tree produced by `MalloyParser.exploreName`.
1282
+ * @param ctx the parse tree
1283
+ */
1284
+ exitExploreName?: (ctx: ExploreNameContext) => void;
1285
+ /**
1286
+ * Enter a parse tree produced by `MalloyParser.exploreProperties`.
1287
+ * @param ctx the parse tree
1288
+ */
1289
+ enterExploreProperties?: (ctx: ExplorePropertiesContext) => void;
1290
+ /**
1291
+ * Exit a parse tree produced by `MalloyParser.exploreProperties`.
1292
+ * @param ctx the parse tree
1293
+ */
1294
+ exitExploreProperties?: (ctx: ExplorePropertiesContext) => void;
1295
+ /**
1296
+ * Enter a parse tree produced by `MalloyParser.exploreStatement`.
1297
+ * @param ctx the parse tree
1298
+ */
1299
+ enterExploreStatement?: (ctx: ExploreStatementContext) => void;
1300
+ /**
1301
+ * Exit a parse tree produced by `MalloyParser.exploreStatement`.
1302
+ * @param ctx the parse tree
1303
+ */
1304
+ exitExploreStatement?: (ctx: ExploreStatementContext) => void;
1305
+ /**
1306
+ * Enter a parse tree produced by `MalloyParser.renameList`.
1307
+ * @param ctx the parse tree
1308
+ */
1309
+ enterRenameList?: (ctx: RenameListContext) => void;
1310
+ /**
1311
+ * Exit a parse tree produced by `MalloyParser.renameList`.
1312
+ * @param ctx the parse tree
1313
+ */
1314
+ exitRenameList?: (ctx: RenameListContext) => void;
1315
+ /**
1316
+ * Enter a parse tree produced by `MalloyParser.exploreRenameDef`.
1317
+ * @param ctx the parse tree
1318
+ */
1319
+ enterExploreRenameDef?: (ctx: ExploreRenameDefContext) => void;
1320
+ /**
1321
+ * Exit a parse tree produced by `MalloyParser.exploreRenameDef`.
1322
+ * @param ctx the parse tree
1323
+ */
1324
+ exitExploreRenameDef?: (ctx: ExploreRenameDefContext) => void;
1325
+ /**
1326
+ * Enter a parse tree produced by `MalloyParser.dimensionDefList`.
1327
+ * @param ctx the parse tree
1328
+ */
1329
+ enterDimensionDefList?: (ctx: DimensionDefListContext) => void;
1330
+ /**
1331
+ * Exit a parse tree produced by `MalloyParser.dimensionDefList`.
1332
+ * @param ctx the parse tree
1333
+ */
1334
+ exitDimensionDefList?: (ctx: DimensionDefListContext) => void;
1335
+ /**
1336
+ * Enter a parse tree produced by `MalloyParser.measureDefList`.
1337
+ * @param ctx the parse tree
1338
+ */
1339
+ enterMeasureDefList?: (ctx: MeasureDefListContext) => void;
1340
+ /**
1341
+ * Exit a parse tree produced by `MalloyParser.measureDefList`.
1342
+ * @param ctx the parse tree
1343
+ */
1344
+ exitMeasureDefList?: (ctx: MeasureDefListContext) => void;
1345
+ /**
1346
+ * Enter a parse tree produced by `MalloyParser.fieldDef`.
1347
+ * @param ctx the parse tree
1348
+ */
1349
+ enterFieldDef?: (ctx: FieldDefContext) => void;
1350
+ /**
1351
+ * Exit a parse tree produced by `MalloyParser.fieldDef`.
1352
+ * @param ctx the parse tree
1353
+ */
1354
+ exitFieldDef?: (ctx: FieldDefContext) => void;
1355
+ /**
1356
+ * Enter a parse tree produced by `MalloyParser.fieldNameDef`.
1357
+ * @param ctx the parse tree
1358
+ */
1359
+ enterFieldNameDef?: (ctx: FieldNameDefContext) => void;
1360
+ /**
1361
+ * Exit a parse tree produced by `MalloyParser.fieldNameDef`.
1362
+ * @param ctx the parse tree
1363
+ */
1364
+ exitFieldNameDef?: (ctx: FieldNameDefContext) => void;
1365
+ /**
1366
+ * Enter a parse tree produced by `MalloyParser.joinNameDef`.
1367
+ * @param ctx the parse tree
1368
+ */
1369
+ enterJoinNameDef?: (ctx: JoinNameDefContext) => void;
1370
+ /**
1371
+ * Exit a parse tree produced by `MalloyParser.joinNameDef`.
1372
+ * @param ctx the parse tree
1373
+ */
1374
+ exitJoinNameDef?: (ctx: JoinNameDefContext) => void;
1375
+ /**
1376
+ * Enter a parse tree produced by `MalloyParser.measureDef`.
1377
+ * @param ctx the parse tree
1378
+ */
1379
+ enterMeasureDef?: (ctx: MeasureDefContext) => void;
1380
+ /**
1381
+ * Exit a parse tree produced by `MalloyParser.measureDef`.
1382
+ * @param ctx the parse tree
1383
+ */
1384
+ exitMeasureDef?: (ctx: MeasureDefContext) => void;
1385
+ /**
1386
+ * Enter a parse tree produced by `MalloyParser.declareStatement`.
1387
+ * @param ctx the parse tree
1388
+ */
1389
+ enterDeclareStatement?: (ctx: DeclareStatementContext) => void;
1390
+ /**
1391
+ * Exit a parse tree produced by `MalloyParser.declareStatement`.
1392
+ * @param ctx the parse tree
1393
+ */
1394
+ exitDeclareStatement?: (ctx: DeclareStatementContext) => void;
1395
+ /**
1396
+ * Enter a parse tree produced by `MalloyParser.joinStatement`.
1397
+ * @param ctx the parse tree
1398
+ */
1399
+ enterJoinStatement?: (ctx: JoinStatementContext) => void;
1400
+ /**
1401
+ * Exit a parse tree produced by `MalloyParser.joinStatement`.
1402
+ * @param ctx the parse tree
1403
+ */
1404
+ exitJoinStatement?: (ctx: JoinStatementContext) => void;
1405
+ /**
1406
+ * Enter a parse tree produced by `MalloyParser.joinList`.
1407
+ * @param ctx the parse tree
1408
+ */
1409
+ enterJoinList?: (ctx: JoinListContext) => void;
1410
+ /**
1411
+ * Exit a parse tree produced by `MalloyParser.joinList`.
1412
+ * @param ctx the parse tree
1413
+ */
1414
+ exitJoinList?: (ctx: JoinListContext) => void;
1415
+ /**
1416
+ * Enter a parse tree produced by `MalloyParser.joinDef`.
1417
+ * @param ctx the parse tree
1418
+ */
1419
+ enterJoinDef?: (ctx: JoinDefContext) => void;
1420
+ /**
1421
+ * Exit a parse tree produced by `MalloyParser.joinDef`.
1422
+ * @param ctx the parse tree
1423
+ */
1424
+ exitJoinDef?: (ctx: JoinDefContext) => void;
1425
+ /**
1426
+ * Enter a parse tree produced by `MalloyParser.joinExpression`.
1427
+ * @param ctx the parse tree
1428
+ */
1429
+ enterJoinExpression?: (ctx: JoinExpressionContext) => void;
1430
+ /**
1431
+ * Exit a parse tree produced by `MalloyParser.joinExpression`.
1432
+ * @param ctx the parse tree
1433
+ */
1434
+ exitJoinExpression?: (ctx: JoinExpressionContext) => void;
1435
+ /**
1436
+ * Enter a parse tree produced by `MalloyParser.filterStatement`.
1437
+ * @param ctx the parse tree
1438
+ */
1439
+ enterFilterStatement?: (ctx: FilterStatementContext) => void;
1440
+ /**
1441
+ * Exit a parse tree produced by `MalloyParser.filterStatement`.
1442
+ * @param ctx the parse tree
1443
+ */
1444
+ exitFilterStatement?: (ctx: FilterStatementContext) => void;
1445
+ /**
1446
+ * Enter a parse tree produced by `MalloyParser.filteredBy`.
1447
+ * @param ctx the parse tree
1448
+ */
1449
+ enterFilteredBy?: (ctx: FilteredByContext) => void;
1450
+ /**
1451
+ * Exit a parse tree produced by `MalloyParser.filteredBy`.
1452
+ * @param ctx the parse tree
1453
+ */
1454
+ exitFilteredBy?: (ctx: FilteredByContext) => void;
1455
+ /**
1456
+ * Enter a parse tree produced by `MalloyParser.filterClauseList`.
1457
+ * @param ctx the parse tree
1458
+ */
1459
+ enterFilterClauseList?: (ctx: FilterClauseListContext) => void;
1460
+ /**
1461
+ * Exit a parse tree produced by `MalloyParser.filterClauseList`.
1462
+ * @param ctx the parse tree
1463
+ */
1464
+ exitFilterClauseList?: (ctx: FilterClauseListContext) => void;
1465
+ /**
1466
+ * Enter a parse tree produced by `MalloyParser.whereStatement`.
1467
+ * @param ctx the parse tree
1468
+ */
1469
+ enterWhereStatement?: (ctx: WhereStatementContext) => void;
1470
+ /**
1471
+ * Exit a parse tree produced by `MalloyParser.whereStatement`.
1472
+ * @param ctx the parse tree
1473
+ */
1474
+ exitWhereStatement?: (ctx: WhereStatementContext) => void;
1475
+ /**
1476
+ * Enter a parse tree produced by `MalloyParser.havingStatement`.
1477
+ * @param ctx the parse tree
1478
+ */
1479
+ enterHavingStatement?: (ctx: HavingStatementContext) => void;
1480
+ /**
1481
+ * Exit a parse tree produced by `MalloyParser.havingStatement`.
1482
+ * @param ctx the parse tree
1483
+ */
1484
+ exitHavingStatement?: (ctx: HavingStatementContext) => void;
1485
+ /**
1486
+ * Enter a parse tree produced by `MalloyParser.subQueryDefList`.
1487
+ * @param ctx the parse tree
1488
+ */
1489
+ enterSubQueryDefList?: (ctx: SubQueryDefListContext) => void;
1490
+ /**
1491
+ * Exit a parse tree produced by `MalloyParser.subQueryDefList`.
1492
+ * @param ctx the parse tree
1493
+ */
1494
+ exitSubQueryDefList?: (ctx: SubQueryDefListContext) => void;
1495
+ /**
1496
+ * Enter a parse tree produced by `MalloyParser.exploreQueryNameDef`.
1497
+ * @param ctx the parse tree
1498
+ */
1499
+ enterExploreQueryNameDef?: (ctx: ExploreQueryNameDefContext) => void;
1500
+ /**
1501
+ * Exit a parse tree produced by `MalloyParser.exploreQueryNameDef`.
1502
+ * @param ctx the parse tree
1503
+ */
1504
+ exitExploreQueryNameDef?: (ctx: ExploreQueryNameDefContext) => void;
1505
+ /**
1506
+ * Enter a parse tree produced by `MalloyParser.exploreQueryDef`.
1507
+ * @param ctx the parse tree
1508
+ */
1509
+ enterExploreQueryDef?: (ctx: ExploreQueryDefContext) => void;
1510
+ /**
1511
+ * Exit a parse tree produced by `MalloyParser.exploreQueryDef`.
1512
+ * @param ctx the parse tree
1513
+ */
1514
+ exitExploreQueryDef?: (ctx: ExploreQueryDefContext) => void;
1515
+ /**
1516
+ * Enter a parse tree produced by `MalloyParser.queryStatement`.
1517
+ * @param ctx the parse tree
1518
+ */
1519
+ enterQueryStatement?: (ctx: QueryStatementContext) => void;
1520
+ /**
1521
+ * Exit a parse tree produced by `MalloyParser.queryStatement`.
1522
+ * @param ctx the parse tree
1523
+ */
1524
+ exitQueryStatement?: (ctx: QueryStatementContext) => void;
1525
+ /**
1526
+ * Enter a parse tree produced by `MalloyParser.groupByStatement`.
1527
+ * @param ctx the parse tree
1528
+ */
1529
+ enterGroupByStatement?: (ctx: GroupByStatementContext) => void;
1530
+ /**
1531
+ * Exit a parse tree produced by `MalloyParser.groupByStatement`.
1532
+ * @param ctx the parse tree
1533
+ */
1534
+ exitGroupByStatement?: (ctx: GroupByStatementContext) => void;
1535
+ /**
1536
+ * Enter a parse tree produced by `MalloyParser.queryFieldList`.
1537
+ * @param ctx the parse tree
1538
+ */
1539
+ enterQueryFieldList?: (ctx: QueryFieldListContext) => void;
1540
+ /**
1541
+ * Exit a parse tree produced by `MalloyParser.queryFieldList`.
1542
+ * @param ctx the parse tree
1543
+ */
1544
+ exitQueryFieldList?: (ctx: QueryFieldListContext) => void;
1545
+ /**
1546
+ * Enter a parse tree produced by `MalloyParser.dimensionDef`.
1547
+ * @param ctx the parse tree
1548
+ */
1549
+ enterDimensionDef?: (ctx: DimensionDefContext) => void;
1550
+ /**
1551
+ * Exit a parse tree produced by `MalloyParser.dimensionDef`.
1552
+ * @param ctx the parse tree
1553
+ */
1554
+ exitDimensionDef?: (ctx: DimensionDefContext) => void;
1555
+ /**
1556
+ * Enter a parse tree produced by `MalloyParser.queryFieldEntry`.
1557
+ * @param ctx the parse tree
1558
+ */
1559
+ enterQueryFieldEntry?: (ctx: QueryFieldEntryContext) => void;
1560
+ /**
1561
+ * Exit a parse tree produced by `MalloyParser.queryFieldEntry`.
1562
+ * @param ctx the parse tree
1563
+ */
1564
+ exitQueryFieldEntry?: (ctx: QueryFieldEntryContext) => void;
1565
+ /**
1566
+ * Enter a parse tree produced by `MalloyParser.nestStatement`.
1567
+ * @param ctx the parse tree
1568
+ */
1569
+ enterNestStatement?: (ctx: NestStatementContext) => void;
1570
+ /**
1571
+ * Exit a parse tree produced by `MalloyParser.nestStatement`.
1572
+ * @param ctx the parse tree
1573
+ */
1574
+ exitNestStatement?: (ctx: NestStatementContext) => void;
1575
+ /**
1576
+ * Enter a parse tree produced by `MalloyParser.nestedQueryList`.
1577
+ * @param ctx the parse tree
1578
+ */
1579
+ enterNestedQueryList?: (ctx: NestedQueryListContext) => void;
1580
+ /**
1581
+ * Exit a parse tree produced by `MalloyParser.nestedQueryList`.
1582
+ * @param ctx the parse tree
1583
+ */
1584
+ exitNestedQueryList?: (ctx: NestedQueryListContext) => void;
1585
+ /**
1586
+ * Enter a parse tree produced by `MalloyParser.nestEntry`.
1587
+ * @param ctx the parse tree
1588
+ */
1589
+ enterNestEntry?: (ctx: NestEntryContext) => void;
1590
+ /**
1591
+ * Exit a parse tree produced by `MalloyParser.nestEntry`.
1592
+ * @param ctx the parse tree
1593
+ */
1594
+ exitNestEntry?: (ctx: NestEntryContext) => void;
1595
+ /**
1596
+ * Enter a parse tree produced by `MalloyParser.aggregateStatement`.
1597
+ * @param ctx the parse tree
1598
+ */
1599
+ enterAggregateStatement?: (ctx: AggregateStatementContext) => void;
1600
+ /**
1601
+ * Exit a parse tree produced by `MalloyParser.aggregateStatement`.
1602
+ * @param ctx the parse tree
1603
+ */
1604
+ exitAggregateStatement?: (ctx: AggregateStatementContext) => void;
1605
+ /**
1606
+ * Enter a parse tree produced by `MalloyParser.projectStatement`.
1607
+ * @param ctx the parse tree
1608
+ */
1609
+ enterProjectStatement?: (ctx: ProjectStatementContext) => void;
1610
+ /**
1611
+ * Exit a parse tree produced by `MalloyParser.projectStatement`.
1612
+ * @param ctx the parse tree
1613
+ */
1614
+ exitProjectStatement?: (ctx: ProjectStatementContext) => void;
1615
+ /**
1616
+ * Enter a parse tree produced by `MalloyParser.orderByStatement`.
1617
+ * @param ctx the parse tree
1618
+ */
1619
+ enterOrderByStatement?: (ctx: OrderByStatementContext) => void;
1620
+ /**
1621
+ * Exit a parse tree produced by `MalloyParser.orderByStatement`.
1622
+ * @param ctx the parse tree
1623
+ */
1624
+ exitOrderByStatement?: (ctx: OrderByStatementContext) => void;
1625
+ /**
1626
+ * Enter a parse tree produced by `MalloyParser.ordering`.
1627
+ * @param ctx the parse tree
1628
+ */
1629
+ enterOrdering?: (ctx: OrderingContext) => void;
1630
+ /**
1631
+ * Exit a parse tree produced by `MalloyParser.ordering`.
1632
+ * @param ctx the parse tree
1633
+ */
1634
+ exitOrdering?: (ctx: OrderingContext) => void;
1635
+ /**
1636
+ * Enter a parse tree produced by `MalloyParser.orderBySpec`.
1637
+ * @param ctx the parse tree
1638
+ */
1639
+ enterOrderBySpec?: (ctx: OrderBySpecContext) => void;
1640
+ /**
1641
+ * Exit a parse tree produced by `MalloyParser.orderBySpec`.
1642
+ * @param ctx the parse tree
1643
+ */
1644
+ exitOrderBySpec?: (ctx: OrderBySpecContext) => void;
1645
+ /**
1646
+ * Enter a parse tree produced by `MalloyParser.limitStatement`.
1647
+ * @param ctx the parse tree
1648
+ */
1649
+ enterLimitStatement?: (ctx: LimitStatementContext) => void;
1650
+ /**
1651
+ * Exit a parse tree produced by `MalloyParser.limitStatement`.
1652
+ * @param ctx the parse tree
1653
+ */
1654
+ exitLimitStatement?: (ctx: LimitStatementContext) => void;
1655
+ /**
1656
+ * Enter a parse tree produced by `MalloyParser.bySpec`.
1657
+ * @param ctx the parse tree
1658
+ */
1659
+ enterBySpec?: (ctx: BySpecContext) => void;
1660
+ /**
1661
+ * Exit a parse tree produced by `MalloyParser.bySpec`.
1662
+ * @param ctx the parse tree
1663
+ */
1664
+ exitBySpec?: (ctx: BySpecContext) => void;
1665
+ /**
1666
+ * Enter a parse tree produced by `MalloyParser.topStatement`.
1667
+ * @param ctx the parse tree
1668
+ */
1669
+ enterTopStatement?: (ctx: TopStatementContext) => void;
1670
+ /**
1671
+ * Exit a parse tree produced by `MalloyParser.topStatement`.
1672
+ * @param ctx the parse tree
1673
+ */
1674
+ exitTopStatement?: (ctx: TopStatementContext) => void;
1675
+ /**
1676
+ * Enter a parse tree produced by `MalloyParser.indexElement`.
1677
+ * @param ctx the parse tree
1678
+ */
1679
+ enterIndexElement?: (ctx: IndexElementContext) => void;
1680
+ /**
1681
+ * Exit a parse tree produced by `MalloyParser.indexElement`.
1682
+ * @param ctx the parse tree
1683
+ */
1684
+ exitIndexElement?: (ctx: IndexElementContext) => void;
1685
+ /**
1686
+ * Enter a parse tree produced by `MalloyParser.indexFields`.
1687
+ * @param ctx the parse tree
1688
+ */
1689
+ enterIndexFields?: (ctx: IndexFieldsContext) => void;
1690
+ /**
1691
+ * Exit a parse tree produced by `MalloyParser.indexFields`.
1692
+ * @param ctx the parse tree
1693
+ */
1694
+ exitIndexFields?: (ctx: IndexFieldsContext) => void;
1695
+ /**
1696
+ * Enter a parse tree produced by `MalloyParser.indexStatement`.
1697
+ * @param ctx the parse tree
1698
+ */
1699
+ enterIndexStatement?: (ctx: IndexStatementContext) => void;
1700
+ /**
1701
+ * Exit a parse tree produced by `MalloyParser.indexStatement`.
1702
+ * @param ctx the parse tree
1703
+ */
1704
+ exitIndexStatement?: (ctx: IndexStatementContext) => void;
1705
+ /**
1706
+ * Enter a parse tree produced by `MalloyParser.sampleStatement`.
1707
+ * @param ctx the parse tree
1708
+ */
1709
+ enterSampleStatement?: (ctx: SampleStatementContext) => void;
1710
+ /**
1711
+ * Exit a parse tree produced by `MalloyParser.sampleStatement`.
1712
+ * @param ctx the parse tree
1713
+ */
1714
+ exitSampleStatement?: (ctx: SampleStatementContext) => void;
1715
+ /**
1716
+ * Enter a parse tree produced by `MalloyParser.sampleSpec`.
1717
+ * @param ctx the parse tree
1718
+ */
1719
+ enterSampleSpec?: (ctx: SampleSpecContext) => void;
1720
+ /**
1721
+ * Exit a parse tree produced by `MalloyParser.sampleSpec`.
1722
+ * @param ctx the parse tree
1723
+ */
1724
+ exitSampleSpec?: (ctx: SampleSpecContext) => void;
1725
+ /**
1726
+ * Enter a parse tree produced by `MalloyParser.aggregate`.
1727
+ * @param ctx the parse tree
1728
+ */
1729
+ enterAggregate?: (ctx: AggregateContext) => void;
1730
+ /**
1731
+ * Exit a parse tree produced by `MalloyParser.aggregate`.
1732
+ * @param ctx the parse tree
1733
+ */
1734
+ exitAggregate?: (ctx: AggregateContext) => void;
1735
+ /**
1736
+ * Enter a parse tree produced by `MalloyParser.malloyType`.
1737
+ * @param ctx the parse tree
1738
+ */
1739
+ enterMalloyType?: (ctx: MalloyTypeContext) => void;
1740
+ /**
1741
+ * Exit a parse tree produced by `MalloyParser.malloyType`.
1742
+ * @param ctx the parse tree
1743
+ */
1744
+ exitMalloyType?: (ctx: MalloyTypeContext) => void;
1745
+ /**
1746
+ * Enter a parse tree produced by `MalloyParser.compareOp`.
1747
+ * @param ctx the parse tree
1748
+ */
1749
+ enterCompareOp?: (ctx: CompareOpContext) => void;
1750
+ /**
1751
+ * Exit a parse tree produced by `MalloyParser.compareOp`.
1752
+ * @param ctx the parse tree
1753
+ */
1754
+ exitCompareOp?: (ctx: CompareOpContext) => void;
1755
+ /**
1756
+ * Enter a parse tree produced by `MalloyParser.literal`.
1757
+ * @param ctx the parse tree
1758
+ */
1759
+ enterLiteral?: (ctx: LiteralContext) => void;
1760
+ /**
1761
+ * Exit a parse tree produced by `MalloyParser.literal`.
1762
+ * @param ctx the parse tree
1763
+ */
1764
+ exitLiteral?: (ctx: LiteralContext) => void;
1765
+ /**
1766
+ * Enter a parse tree produced by `MalloyParser.dateLiteral`.
1767
+ * @param ctx the parse tree
1768
+ */
1769
+ enterDateLiteral?: (ctx: DateLiteralContext) => void;
1770
+ /**
1771
+ * Exit a parse tree produced by `MalloyParser.dateLiteral`.
1772
+ * @param ctx the parse tree
1773
+ */
1774
+ exitDateLiteral?: (ctx: DateLiteralContext) => void;
1775
+ /**
1776
+ * Enter a parse tree produced by `MalloyParser.tableName`.
1777
+ * @param ctx the parse tree
1778
+ */
1779
+ enterTableName?: (ctx: TableNameContext) => void;
1780
+ /**
1781
+ * Exit a parse tree produced by `MalloyParser.tableName`.
1782
+ * @param ctx the parse tree
1783
+ */
1784
+ exitTableName?: (ctx: TableNameContext) => void;
1785
+ /**
1786
+ * Enter a parse tree produced by `MalloyParser.id`.
1787
+ * @param ctx the parse tree
1788
+ */
1789
+ enterId?: (ctx: IdContext) => void;
1790
+ /**
1791
+ * Exit a parse tree produced by `MalloyParser.id`.
1792
+ * @param ctx the parse tree
1793
+ */
1794
+ exitId?: (ctx: IdContext) => void;
1795
+ /**
1796
+ * Enter a parse tree produced by `MalloyParser.timeframe`.
1797
+ * @param ctx the parse tree
1798
+ */
1799
+ enterTimeframe?: (ctx: TimeframeContext) => void;
1800
+ /**
1801
+ * Exit a parse tree produced by `MalloyParser.timeframe`.
1802
+ * @param ctx the parse tree
1803
+ */
1804
+ exitTimeframe?: (ctx: TimeframeContext) => void;
1805
+ /**
1806
+ * Enter a parse tree produced by `MalloyParser.ungroup`.
1807
+ * @param ctx the parse tree
1808
+ */
1809
+ enterUngroup?: (ctx: UngroupContext) => void;
1810
+ /**
1811
+ * Exit a parse tree produced by `MalloyParser.ungroup`.
1812
+ * @param ctx the parse tree
1813
+ */
1814
+ exitUngroup?: (ctx: UngroupContext) => void;
1815
+ /**
1816
+ * Enter a parse tree produced by `MalloyParser.fieldExpr`.
1817
+ * @param ctx the parse tree
1818
+ */
1819
+ enterFieldExpr?: (ctx: FieldExprContext) => void;
1820
+ /**
1821
+ * Exit a parse tree produced by `MalloyParser.fieldExpr`.
1822
+ * @param ctx the parse tree
1823
+ */
1824
+ exitFieldExpr?: (ctx: FieldExprContext) => void;
1825
+ /**
1826
+ * Enter a parse tree produced by `MalloyParser.partialAllowedFieldExpr`.
1827
+ * @param ctx the parse tree
1828
+ */
1829
+ enterPartialAllowedFieldExpr?: (ctx: PartialAllowedFieldExprContext) => void;
1830
+ /**
1831
+ * Exit a parse tree produced by `MalloyParser.partialAllowedFieldExpr`.
1832
+ * @param ctx the parse tree
1833
+ */
1834
+ exitPartialAllowedFieldExpr?: (ctx: PartialAllowedFieldExprContext) => void;
1835
+ /**
1836
+ * Enter a parse tree produced by `MalloyParser.pickStatement`.
1837
+ * @param ctx the parse tree
1838
+ */
1839
+ enterPickStatement?: (ctx: PickStatementContext) => void;
1840
+ /**
1841
+ * Exit a parse tree produced by `MalloyParser.pickStatement`.
1842
+ * @param ctx the parse tree
1843
+ */
1844
+ exitPickStatement?: (ctx: PickStatementContext) => void;
1845
+ /**
1846
+ * Enter a parse tree produced by `MalloyParser.pick`.
1847
+ * @param ctx the parse tree
1848
+ */
1849
+ enterPick?: (ctx: PickContext) => void;
1850
+ /**
1851
+ * Exit a parse tree produced by `MalloyParser.pick`.
1852
+ * @param ctx the parse tree
1853
+ */
1854
+ exitPick?: (ctx: PickContext) => void;
1855
+ /**
1856
+ * Enter a parse tree produced by `MalloyParser.argumentList`.
1857
+ * @param ctx the parse tree
1858
+ */
1859
+ enterArgumentList?: (ctx: ArgumentListContext) => void;
1860
+ /**
1861
+ * Exit a parse tree produced by `MalloyParser.argumentList`.
1862
+ * @param ctx the parse tree
1863
+ */
1864
+ exitArgumentList?: (ctx: ArgumentListContext) => void;
1865
+ /**
1866
+ * Enter a parse tree produced by `MalloyParser.fieldNameList`.
1867
+ * @param ctx the parse tree
1868
+ */
1869
+ enterFieldNameList?: (ctx: FieldNameListContext) => void;
1870
+ /**
1871
+ * Exit a parse tree produced by `MalloyParser.fieldNameList`.
1872
+ * @param ctx the parse tree
1873
+ */
1874
+ exitFieldNameList?: (ctx: FieldNameListContext) => void;
1875
+ /**
1876
+ * Enter a parse tree produced by `MalloyParser.fieldCollection`.
1877
+ * @param ctx the parse tree
1878
+ */
1879
+ enterFieldCollection?: (ctx: FieldCollectionContext) => void;
1880
+ /**
1881
+ * Exit a parse tree produced by `MalloyParser.fieldCollection`.
1882
+ * @param ctx the parse tree
1883
+ */
1884
+ exitFieldCollection?: (ctx: FieldCollectionContext) => void;
1885
+ /**
1886
+ * Enter a parse tree produced by `MalloyParser.collectionMember`.
1887
+ * @param ctx the parse tree
1888
+ */
1889
+ enterCollectionMember?: (ctx: CollectionMemberContext) => void;
1890
+ /**
1891
+ * Exit a parse tree produced by `MalloyParser.collectionMember`.
1892
+ * @param ctx the parse tree
1893
+ */
1894
+ exitCollectionMember?: (ctx: CollectionMemberContext) => void;
1895
+ /**
1896
+ * Enter a parse tree produced by `MalloyParser.fieldPath`.
1897
+ * @param ctx the parse tree
1898
+ */
1899
+ enterFieldPath?: (ctx: FieldPathContext) => void;
1900
+ /**
1901
+ * Exit a parse tree produced by `MalloyParser.fieldPath`.
1902
+ * @param ctx the parse tree
1903
+ */
1904
+ exitFieldPath?: (ctx: FieldPathContext) => void;
1905
+ /**
1906
+ * Enter a parse tree produced by `MalloyParser.joinName`.
1907
+ * @param ctx the parse tree
1908
+ */
1909
+ enterJoinName?: (ctx: JoinNameContext) => void;
1910
+ /**
1911
+ * Exit a parse tree produced by `MalloyParser.joinName`.
1912
+ * @param ctx the parse tree
1913
+ */
1914
+ exitJoinName?: (ctx: JoinNameContext) => void;
1915
+ /**
1916
+ * Enter a parse tree produced by `MalloyParser.fieldName`.
1917
+ * @param ctx the parse tree
1918
+ */
1919
+ enterFieldName?: (ctx: FieldNameContext) => void;
1920
+ /**
1921
+ * Exit a parse tree produced by `MalloyParser.fieldName`.
1922
+ * @param ctx the parse tree
1923
+ */
1924
+ exitFieldName?: (ctx: FieldNameContext) => void;
1925
+ /**
1926
+ * Enter a parse tree produced by `MalloyParser.justExpr`.
1927
+ * @param ctx the parse tree
1928
+ */
1929
+ enterJustExpr?: (ctx: JustExprContext) => void;
1930
+ /**
1931
+ * Exit a parse tree produced by `MalloyParser.justExpr`.
1932
+ * @param ctx the parse tree
1933
+ */
1934
+ exitJustExpr?: (ctx: JustExprContext) => void;
1935
+ /**
1936
+ * Enter a parse tree produced by `MalloyParser.json`.
1937
+ * @param ctx the parse tree
1938
+ */
1939
+ enterJson?: (ctx: JsonContext) => void;
1940
+ /**
1941
+ * Exit a parse tree produced by `MalloyParser.json`.
1942
+ * @param ctx the parse tree
1943
+ */
1944
+ exitJson?: (ctx: JsonContext) => void;
1945
+ /**
1946
+ * Enter a parse tree produced by `MalloyParser.jsonValue`.
1947
+ * @param ctx the parse tree
1948
+ */
1949
+ enterJsonValue?: (ctx: JsonValueContext) => void;
1950
+ /**
1951
+ * Exit a parse tree produced by `MalloyParser.jsonValue`.
1952
+ * @param ctx the parse tree
1953
+ */
1954
+ exitJsonValue?: (ctx: JsonValueContext) => void;
1955
+ /**
1956
+ * Enter a parse tree produced by `MalloyParser.jsonObject`.
1957
+ * @param ctx the parse tree
1958
+ */
1959
+ enterJsonObject?: (ctx: JsonObjectContext) => void;
1960
+ /**
1961
+ * Exit a parse tree produced by `MalloyParser.jsonObject`.
1962
+ * @param ctx the parse tree
1963
+ */
1964
+ exitJsonObject?: (ctx: JsonObjectContext) => void;
1965
+ /**
1966
+ * Enter a parse tree produced by `MalloyParser.jsonProperty`.
1967
+ * @param ctx the parse tree
1968
+ */
1969
+ enterJsonProperty?: (ctx: JsonPropertyContext) => void;
1970
+ /**
1971
+ * Exit a parse tree produced by `MalloyParser.jsonProperty`.
1972
+ * @param ctx the parse tree
1973
+ */
1974
+ exitJsonProperty?: (ctx: JsonPropertyContext) => void;
1975
+ /**
1976
+ * Enter a parse tree produced by `MalloyParser.jsonArray`.
1977
+ * @param ctx the parse tree
1978
+ */
1979
+ enterJsonArray?: (ctx: JsonArrayContext) => void;
1980
+ /**
1981
+ * Exit a parse tree produced by `MalloyParser.jsonArray`.
1982
+ * @param ctx the parse tree
1983
+ */
1984
+ exitJsonArray?: (ctx: JsonArrayContext) => void;
1985
+ /**
1986
+ * Enter a parse tree produced by `MalloyParser.sqlExploreNameRef`.
1987
+ * @param ctx the parse tree
1988
+ */
1989
+ enterSqlExploreNameRef?: (ctx: SqlExploreNameRefContext) => void;
1990
+ /**
1991
+ * Exit a parse tree produced by `MalloyParser.sqlExploreNameRef`.
1992
+ * @param ctx the parse tree
1993
+ */
1994
+ exitSqlExploreNameRef?: (ctx: SqlExploreNameRefContext) => void;
1995
+ /**
1996
+ * Enter a parse tree produced by `MalloyParser.sqlCommandNameDef`.
1997
+ * @param ctx the parse tree
1998
+ */
1999
+ enterSqlCommandNameDef?: (ctx: SqlCommandNameDefContext) => void;
2000
+ /**
2001
+ * Exit a parse tree produced by `MalloyParser.sqlCommandNameDef`.
2002
+ * @param ctx the parse tree
2003
+ */
2004
+ exitSqlCommandNameDef?: (ctx: SqlCommandNameDefContext) => void;
2005
+ /**
2006
+ * Enter a parse tree produced by `MalloyParser.connectionName`.
2007
+ * @param ctx the parse tree
2008
+ */
2009
+ enterConnectionName?: (ctx: ConnectionNameContext) => void;
2010
+ /**
2011
+ * Exit a parse tree produced by `MalloyParser.connectionName`.
2012
+ * @param ctx the parse tree
2013
+ */
2014
+ exitConnectionName?: (ctx: ConnectionNameContext) => void;
2015
+ }