simple-graph-query 1.0.1 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,942 @@
1
+ import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener";
2
+ import { PredDeclContext } from "./ForgeParser";
3
+ import { ParseExprContext } from "./ForgeParser";
4
+ import { AlloyModuleContext } from "./ForgeParser";
5
+ import { ImportDeclContext } from "./ForgeParser";
6
+ import { ParagraphContext } from "./ForgeParser";
7
+ import { SigDeclContext } from "./ForgeParser";
8
+ import { SigExtContext } from "./ForgeParser";
9
+ import { MultContext } from "./ForgeParser";
10
+ import { ArrowMultContext } from "./ForgeParser";
11
+ import { HelperMultContext } from "./ForgeParser";
12
+ import { ParaDeclContext } from "./ForgeParser";
13
+ import { QuantDeclContext } from "./ForgeParser";
14
+ import { ArrowDeclContext } from "./ForgeParser";
15
+ import { PredTypeContext } from "./ForgeParser";
16
+ import { FunDeclContext } from "./ForgeParser";
17
+ import { ParaDeclsContext } from "./ForgeParser";
18
+ import { AssertDeclContext } from "./ForgeParser";
19
+ import { CmdDeclContext } from "./ForgeParser";
20
+ import { TestDeclContext } from "./ForgeParser";
21
+ import { TestExpectDeclContext } from "./ForgeParser";
22
+ import { TestBlockContext } from "./ForgeParser";
23
+ import { ScopeContext } from "./ForgeParser";
24
+ import { TypescopeContext } from "./ForgeParser";
25
+ import { ConstContext } from "./ForgeParser";
26
+ import { SatisfiabilityDeclContext } from "./ForgeParser";
27
+ import { QuantifiedPropertyDeclContext } from "./ForgeParser";
28
+ import { PropertyDeclContext } from "./ForgeParser";
29
+ import { ConsistencyDeclContext } from "./ForgeParser";
30
+ import { TestSuiteDeclContext } from "./ForgeParser";
31
+ import { TestConstructContext } from "./ForgeParser";
32
+ import { ArrowOpContext } from "./ForgeParser";
33
+ import { CompareOpContext } from "./ForgeParser";
34
+ import { LetDeclContext } from "./ForgeParser";
35
+ import { BlockContext } from "./ForgeParser";
36
+ import { BlockOrBarContext } from "./ForgeParser";
37
+ import { QuantContext } from "./ForgeParser";
38
+ import { QualNameContext } from "./ForgeParser";
39
+ import { OptionDeclContext } from "./ForgeParser";
40
+ import { NameContext } from "./ForgeParser";
41
+ import { NameListContext } from "./ForgeParser";
42
+ import { QualNameListContext } from "./ForgeParser";
43
+ import { ParaDeclListContext } from "./ForgeParser";
44
+ import { QuantDeclListContext } from "./ForgeParser";
45
+ import { ArrowDeclListContext } from "./ForgeParser";
46
+ import { LetDeclListContext } from "./ForgeParser";
47
+ import { TypescopeListContext } from "./ForgeParser";
48
+ import { ExprListContext } from "./ForgeParser";
49
+ import { ExprContext } from "./ForgeParser";
50
+ import { Expr1Context } from "./ForgeParser";
51
+ import { Expr1_5Context } from "./ForgeParser";
52
+ import { Expr2Context } from "./ForgeParser";
53
+ import { Expr3Context } from "./ForgeParser";
54
+ import { Expr4Context } from "./ForgeParser";
55
+ import { Expr4_5Context } from "./ForgeParser";
56
+ import { Expr5Context } from "./ForgeParser";
57
+ import { Expr6Context } from "./ForgeParser";
58
+ import { Expr7Context } from "./ForgeParser";
59
+ import { Expr8Context } from "./ForgeParser";
60
+ import { Expr9Context } from "./ForgeParser";
61
+ import { Expr10Context } from "./ForgeParser";
62
+ import { Expr11Context } from "./ForgeParser";
63
+ import { Expr12Context } from "./ForgeParser";
64
+ import { Expr13Context } from "./ForgeParser";
65
+ import { Expr14Context } from "./ForgeParser";
66
+ import { Expr15Context } from "./ForgeParser";
67
+ import { Expr16Context } from "./ForgeParser";
68
+ import { Expr17Context } from "./ForgeParser";
69
+ import { Expr18Context } from "./ForgeParser";
70
+ import { ArrowExprContext } from "./ForgeParser";
71
+ import { SexprDeclContext } from "./ForgeParser";
72
+ import { SexprContext } from "./ForgeParser";
73
+ import { InstDeclContext } from "./ForgeParser";
74
+ import { EvalRelDeclContext } from "./ForgeParser";
75
+ import { EvalDeclContext } from "./ForgeParser";
76
+ import { ExampleDeclContext } from "./ForgeParser";
77
+ import { QueryDeclContext } from "./ForgeParser";
78
+ import { NumberListContext } from "./ForgeParser";
79
+ import { NumberContext } from "./ForgeParser";
80
+ import { BoundsContext } from "./ForgeParser";
81
+ import { AtomNameOrNumberContext } from "./ForgeParser";
82
+ import { BoundContext } from "./ForgeParser";
83
+ import { BoundLHSContext } from "./ForgeParser";
84
+ import { BindRHSUnionContext } from "./ForgeParser";
85
+ import { BindRHSProductContext } from "./ForgeParser";
86
+ import { BindRHSProductBaseContext } from "./ForgeParser";
87
+ /**
88
+ * This interface defines a complete listener for a parse tree produced by
89
+ * `ForgeParser`.
90
+ */
91
+ export interface ForgeListener extends ParseTreeListener {
92
+ /**
93
+ * Enter a parse tree produced by `ForgeParser.predDecl`.
94
+ * @param ctx the parse tree
95
+ */
96
+ enterPredDecl?: (ctx: PredDeclContext) => void;
97
+ /**
98
+ * Exit a parse tree produced by `ForgeParser.predDecl`.
99
+ * @param ctx the parse tree
100
+ */
101
+ exitPredDecl?: (ctx: PredDeclContext) => void;
102
+ /**
103
+ * Enter a parse tree produced by `ForgeParser.parseExpr`.
104
+ * @param ctx the parse tree
105
+ */
106
+ enterParseExpr?: (ctx: ParseExprContext) => void;
107
+ /**
108
+ * Exit a parse tree produced by `ForgeParser.parseExpr`.
109
+ * @param ctx the parse tree
110
+ */
111
+ exitParseExpr?: (ctx: ParseExprContext) => void;
112
+ /**
113
+ * Enter a parse tree produced by `ForgeParser.alloyModule`.
114
+ * @param ctx the parse tree
115
+ */
116
+ enterAlloyModule?: (ctx: AlloyModuleContext) => void;
117
+ /**
118
+ * Exit a parse tree produced by `ForgeParser.alloyModule`.
119
+ * @param ctx the parse tree
120
+ */
121
+ exitAlloyModule?: (ctx: AlloyModuleContext) => void;
122
+ /**
123
+ * Enter a parse tree produced by `ForgeParser.importDecl`.
124
+ * @param ctx the parse tree
125
+ */
126
+ enterImportDecl?: (ctx: ImportDeclContext) => void;
127
+ /**
128
+ * Exit a parse tree produced by `ForgeParser.importDecl`.
129
+ * @param ctx the parse tree
130
+ */
131
+ exitImportDecl?: (ctx: ImportDeclContext) => void;
132
+ /**
133
+ * Enter a parse tree produced by `ForgeParser.paragraph`.
134
+ * @param ctx the parse tree
135
+ */
136
+ enterParagraph?: (ctx: ParagraphContext) => void;
137
+ /**
138
+ * Exit a parse tree produced by `ForgeParser.paragraph`.
139
+ * @param ctx the parse tree
140
+ */
141
+ exitParagraph?: (ctx: ParagraphContext) => void;
142
+ /**
143
+ * Enter a parse tree produced by `ForgeParser.sigDecl`.
144
+ * @param ctx the parse tree
145
+ */
146
+ enterSigDecl?: (ctx: SigDeclContext) => void;
147
+ /**
148
+ * Exit a parse tree produced by `ForgeParser.sigDecl`.
149
+ * @param ctx the parse tree
150
+ */
151
+ exitSigDecl?: (ctx: SigDeclContext) => void;
152
+ /**
153
+ * Enter a parse tree produced by `ForgeParser.sigExt`.
154
+ * @param ctx the parse tree
155
+ */
156
+ enterSigExt?: (ctx: SigExtContext) => void;
157
+ /**
158
+ * Exit a parse tree produced by `ForgeParser.sigExt`.
159
+ * @param ctx the parse tree
160
+ */
161
+ exitSigExt?: (ctx: SigExtContext) => void;
162
+ /**
163
+ * Enter a parse tree produced by `ForgeParser.mult`.
164
+ * @param ctx the parse tree
165
+ */
166
+ enterMult?: (ctx: MultContext) => void;
167
+ /**
168
+ * Exit a parse tree produced by `ForgeParser.mult`.
169
+ * @param ctx the parse tree
170
+ */
171
+ exitMult?: (ctx: MultContext) => void;
172
+ /**
173
+ * Enter a parse tree produced by `ForgeParser.arrowMult`.
174
+ * @param ctx the parse tree
175
+ */
176
+ enterArrowMult?: (ctx: ArrowMultContext) => void;
177
+ /**
178
+ * Exit a parse tree produced by `ForgeParser.arrowMult`.
179
+ * @param ctx the parse tree
180
+ */
181
+ exitArrowMult?: (ctx: ArrowMultContext) => void;
182
+ /**
183
+ * Enter a parse tree produced by `ForgeParser.helperMult`.
184
+ * @param ctx the parse tree
185
+ */
186
+ enterHelperMult?: (ctx: HelperMultContext) => void;
187
+ /**
188
+ * Exit a parse tree produced by `ForgeParser.helperMult`.
189
+ * @param ctx the parse tree
190
+ */
191
+ exitHelperMult?: (ctx: HelperMultContext) => void;
192
+ /**
193
+ * Enter a parse tree produced by `ForgeParser.paraDecl`.
194
+ * @param ctx the parse tree
195
+ */
196
+ enterParaDecl?: (ctx: ParaDeclContext) => void;
197
+ /**
198
+ * Exit a parse tree produced by `ForgeParser.paraDecl`.
199
+ * @param ctx the parse tree
200
+ */
201
+ exitParaDecl?: (ctx: ParaDeclContext) => void;
202
+ /**
203
+ * Enter a parse tree produced by `ForgeParser.quantDecl`.
204
+ * @param ctx the parse tree
205
+ */
206
+ enterQuantDecl?: (ctx: QuantDeclContext) => void;
207
+ /**
208
+ * Exit a parse tree produced by `ForgeParser.quantDecl`.
209
+ * @param ctx the parse tree
210
+ */
211
+ exitQuantDecl?: (ctx: QuantDeclContext) => void;
212
+ /**
213
+ * Enter a parse tree produced by `ForgeParser.arrowDecl`.
214
+ * @param ctx the parse tree
215
+ */
216
+ enterArrowDecl?: (ctx: ArrowDeclContext) => void;
217
+ /**
218
+ * Exit a parse tree produced by `ForgeParser.arrowDecl`.
219
+ * @param ctx the parse tree
220
+ */
221
+ exitArrowDecl?: (ctx: ArrowDeclContext) => void;
222
+ /**
223
+ * Enter a parse tree produced by `ForgeParser.predType`.
224
+ * @param ctx the parse tree
225
+ */
226
+ enterPredType?: (ctx: PredTypeContext) => void;
227
+ /**
228
+ * Exit a parse tree produced by `ForgeParser.predType`.
229
+ * @param ctx the parse tree
230
+ */
231
+ exitPredType?: (ctx: PredTypeContext) => void;
232
+ /**
233
+ * Enter a parse tree produced by `ForgeParser.funDecl`.
234
+ * @param ctx the parse tree
235
+ */
236
+ enterFunDecl?: (ctx: FunDeclContext) => void;
237
+ /**
238
+ * Exit a parse tree produced by `ForgeParser.funDecl`.
239
+ * @param ctx the parse tree
240
+ */
241
+ exitFunDecl?: (ctx: FunDeclContext) => void;
242
+ /**
243
+ * Enter a parse tree produced by `ForgeParser.paraDecls`.
244
+ * @param ctx the parse tree
245
+ */
246
+ enterParaDecls?: (ctx: ParaDeclsContext) => void;
247
+ /**
248
+ * Exit a parse tree produced by `ForgeParser.paraDecls`.
249
+ * @param ctx the parse tree
250
+ */
251
+ exitParaDecls?: (ctx: ParaDeclsContext) => void;
252
+ /**
253
+ * Enter a parse tree produced by `ForgeParser.assertDecl`.
254
+ * @param ctx the parse tree
255
+ */
256
+ enterAssertDecl?: (ctx: AssertDeclContext) => void;
257
+ /**
258
+ * Exit a parse tree produced by `ForgeParser.assertDecl`.
259
+ * @param ctx the parse tree
260
+ */
261
+ exitAssertDecl?: (ctx: AssertDeclContext) => void;
262
+ /**
263
+ * Enter a parse tree produced by `ForgeParser.cmdDecl`.
264
+ * @param ctx the parse tree
265
+ */
266
+ enterCmdDecl?: (ctx: CmdDeclContext) => void;
267
+ /**
268
+ * Exit a parse tree produced by `ForgeParser.cmdDecl`.
269
+ * @param ctx the parse tree
270
+ */
271
+ exitCmdDecl?: (ctx: CmdDeclContext) => void;
272
+ /**
273
+ * Enter a parse tree produced by `ForgeParser.testDecl`.
274
+ * @param ctx the parse tree
275
+ */
276
+ enterTestDecl?: (ctx: TestDeclContext) => void;
277
+ /**
278
+ * Exit a parse tree produced by `ForgeParser.testDecl`.
279
+ * @param ctx the parse tree
280
+ */
281
+ exitTestDecl?: (ctx: TestDeclContext) => void;
282
+ /**
283
+ * Enter a parse tree produced by `ForgeParser.testExpectDecl`.
284
+ * @param ctx the parse tree
285
+ */
286
+ enterTestExpectDecl?: (ctx: TestExpectDeclContext) => void;
287
+ /**
288
+ * Exit a parse tree produced by `ForgeParser.testExpectDecl`.
289
+ * @param ctx the parse tree
290
+ */
291
+ exitTestExpectDecl?: (ctx: TestExpectDeclContext) => void;
292
+ /**
293
+ * Enter a parse tree produced by `ForgeParser.testBlock`.
294
+ * @param ctx the parse tree
295
+ */
296
+ enterTestBlock?: (ctx: TestBlockContext) => void;
297
+ /**
298
+ * Exit a parse tree produced by `ForgeParser.testBlock`.
299
+ * @param ctx the parse tree
300
+ */
301
+ exitTestBlock?: (ctx: TestBlockContext) => void;
302
+ /**
303
+ * Enter a parse tree produced by `ForgeParser.scope`.
304
+ * @param ctx the parse tree
305
+ */
306
+ enterScope?: (ctx: ScopeContext) => void;
307
+ /**
308
+ * Exit a parse tree produced by `ForgeParser.scope`.
309
+ * @param ctx the parse tree
310
+ */
311
+ exitScope?: (ctx: ScopeContext) => void;
312
+ /**
313
+ * Enter a parse tree produced by `ForgeParser.typescope`.
314
+ * @param ctx the parse tree
315
+ */
316
+ enterTypescope?: (ctx: TypescopeContext) => void;
317
+ /**
318
+ * Exit a parse tree produced by `ForgeParser.typescope`.
319
+ * @param ctx the parse tree
320
+ */
321
+ exitTypescope?: (ctx: TypescopeContext) => void;
322
+ /**
323
+ * Enter a parse tree produced by `ForgeParser.const`.
324
+ * @param ctx the parse tree
325
+ */
326
+ enterConst?: (ctx: ConstContext) => void;
327
+ /**
328
+ * Exit a parse tree produced by `ForgeParser.const`.
329
+ * @param ctx the parse tree
330
+ */
331
+ exitConst?: (ctx: ConstContext) => void;
332
+ /**
333
+ * Enter a parse tree produced by `ForgeParser.satisfiabilityDecl`.
334
+ * @param ctx the parse tree
335
+ */
336
+ enterSatisfiabilityDecl?: (ctx: SatisfiabilityDeclContext) => void;
337
+ /**
338
+ * Exit a parse tree produced by `ForgeParser.satisfiabilityDecl`.
339
+ * @param ctx the parse tree
340
+ */
341
+ exitSatisfiabilityDecl?: (ctx: SatisfiabilityDeclContext) => void;
342
+ /**
343
+ * Enter a parse tree produced by `ForgeParser.quantifiedPropertyDecl`.
344
+ * @param ctx the parse tree
345
+ */
346
+ enterQuantifiedPropertyDecl?: (ctx: QuantifiedPropertyDeclContext) => void;
347
+ /**
348
+ * Exit a parse tree produced by `ForgeParser.quantifiedPropertyDecl`.
349
+ * @param ctx the parse tree
350
+ */
351
+ exitQuantifiedPropertyDecl?: (ctx: QuantifiedPropertyDeclContext) => void;
352
+ /**
353
+ * Enter a parse tree produced by `ForgeParser.propertyDecl`.
354
+ * @param ctx the parse tree
355
+ */
356
+ enterPropertyDecl?: (ctx: PropertyDeclContext) => void;
357
+ /**
358
+ * Exit a parse tree produced by `ForgeParser.propertyDecl`.
359
+ * @param ctx the parse tree
360
+ */
361
+ exitPropertyDecl?: (ctx: PropertyDeclContext) => void;
362
+ /**
363
+ * Enter a parse tree produced by `ForgeParser.consistencyDecl`.
364
+ * @param ctx the parse tree
365
+ */
366
+ enterConsistencyDecl?: (ctx: ConsistencyDeclContext) => void;
367
+ /**
368
+ * Exit a parse tree produced by `ForgeParser.consistencyDecl`.
369
+ * @param ctx the parse tree
370
+ */
371
+ exitConsistencyDecl?: (ctx: ConsistencyDeclContext) => void;
372
+ /**
373
+ * Enter a parse tree produced by `ForgeParser.testSuiteDecl`.
374
+ * @param ctx the parse tree
375
+ */
376
+ enterTestSuiteDecl?: (ctx: TestSuiteDeclContext) => void;
377
+ /**
378
+ * Exit a parse tree produced by `ForgeParser.testSuiteDecl`.
379
+ * @param ctx the parse tree
380
+ */
381
+ exitTestSuiteDecl?: (ctx: TestSuiteDeclContext) => void;
382
+ /**
383
+ * Enter a parse tree produced by `ForgeParser.testConstruct`.
384
+ * @param ctx the parse tree
385
+ */
386
+ enterTestConstruct?: (ctx: TestConstructContext) => void;
387
+ /**
388
+ * Exit a parse tree produced by `ForgeParser.testConstruct`.
389
+ * @param ctx the parse tree
390
+ */
391
+ exitTestConstruct?: (ctx: TestConstructContext) => void;
392
+ /**
393
+ * Enter a parse tree produced by `ForgeParser.arrowOp`.
394
+ * @param ctx the parse tree
395
+ */
396
+ enterArrowOp?: (ctx: ArrowOpContext) => void;
397
+ /**
398
+ * Exit a parse tree produced by `ForgeParser.arrowOp`.
399
+ * @param ctx the parse tree
400
+ */
401
+ exitArrowOp?: (ctx: ArrowOpContext) => void;
402
+ /**
403
+ * Enter a parse tree produced by `ForgeParser.compareOp`.
404
+ * @param ctx the parse tree
405
+ */
406
+ enterCompareOp?: (ctx: CompareOpContext) => void;
407
+ /**
408
+ * Exit a parse tree produced by `ForgeParser.compareOp`.
409
+ * @param ctx the parse tree
410
+ */
411
+ exitCompareOp?: (ctx: CompareOpContext) => void;
412
+ /**
413
+ * Enter a parse tree produced by `ForgeParser.letDecl`.
414
+ * @param ctx the parse tree
415
+ */
416
+ enterLetDecl?: (ctx: LetDeclContext) => void;
417
+ /**
418
+ * Exit a parse tree produced by `ForgeParser.letDecl`.
419
+ * @param ctx the parse tree
420
+ */
421
+ exitLetDecl?: (ctx: LetDeclContext) => void;
422
+ /**
423
+ * Enter a parse tree produced by `ForgeParser.block`.
424
+ * @param ctx the parse tree
425
+ */
426
+ enterBlock?: (ctx: BlockContext) => void;
427
+ /**
428
+ * Exit a parse tree produced by `ForgeParser.block`.
429
+ * @param ctx the parse tree
430
+ */
431
+ exitBlock?: (ctx: BlockContext) => void;
432
+ /**
433
+ * Enter a parse tree produced by `ForgeParser.blockOrBar`.
434
+ * @param ctx the parse tree
435
+ */
436
+ enterBlockOrBar?: (ctx: BlockOrBarContext) => void;
437
+ /**
438
+ * Exit a parse tree produced by `ForgeParser.blockOrBar`.
439
+ * @param ctx the parse tree
440
+ */
441
+ exitBlockOrBar?: (ctx: BlockOrBarContext) => void;
442
+ /**
443
+ * Enter a parse tree produced by `ForgeParser.quant`.
444
+ * @param ctx the parse tree
445
+ */
446
+ enterQuant?: (ctx: QuantContext) => void;
447
+ /**
448
+ * Exit a parse tree produced by `ForgeParser.quant`.
449
+ * @param ctx the parse tree
450
+ */
451
+ exitQuant?: (ctx: QuantContext) => void;
452
+ /**
453
+ * Enter a parse tree produced by `ForgeParser.qualName`.
454
+ * @param ctx the parse tree
455
+ */
456
+ enterQualName?: (ctx: QualNameContext) => void;
457
+ /**
458
+ * Exit a parse tree produced by `ForgeParser.qualName`.
459
+ * @param ctx the parse tree
460
+ */
461
+ exitQualName?: (ctx: QualNameContext) => void;
462
+ /**
463
+ * Enter a parse tree produced by `ForgeParser.optionDecl`.
464
+ * @param ctx the parse tree
465
+ */
466
+ enterOptionDecl?: (ctx: OptionDeclContext) => void;
467
+ /**
468
+ * Exit a parse tree produced by `ForgeParser.optionDecl`.
469
+ * @param ctx the parse tree
470
+ */
471
+ exitOptionDecl?: (ctx: OptionDeclContext) => void;
472
+ /**
473
+ * Enter a parse tree produced by `ForgeParser.name`.
474
+ * @param ctx the parse tree
475
+ */
476
+ enterName?: (ctx: NameContext) => void;
477
+ /**
478
+ * Exit a parse tree produced by `ForgeParser.name`.
479
+ * @param ctx the parse tree
480
+ */
481
+ exitName?: (ctx: NameContext) => void;
482
+ /**
483
+ * Enter a parse tree produced by `ForgeParser.nameList`.
484
+ * @param ctx the parse tree
485
+ */
486
+ enterNameList?: (ctx: NameListContext) => void;
487
+ /**
488
+ * Exit a parse tree produced by `ForgeParser.nameList`.
489
+ * @param ctx the parse tree
490
+ */
491
+ exitNameList?: (ctx: NameListContext) => void;
492
+ /**
493
+ * Enter a parse tree produced by `ForgeParser.qualNameList`.
494
+ * @param ctx the parse tree
495
+ */
496
+ enterQualNameList?: (ctx: QualNameListContext) => void;
497
+ /**
498
+ * Exit a parse tree produced by `ForgeParser.qualNameList`.
499
+ * @param ctx the parse tree
500
+ */
501
+ exitQualNameList?: (ctx: QualNameListContext) => void;
502
+ /**
503
+ * Enter a parse tree produced by `ForgeParser.paraDeclList`.
504
+ * @param ctx the parse tree
505
+ */
506
+ enterParaDeclList?: (ctx: ParaDeclListContext) => void;
507
+ /**
508
+ * Exit a parse tree produced by `ForgeParser.paraDeclList`.
509
+ * @param ctx the parse tree
510
+ */
511
+ exitParaDeclList?: (ctx: ParaDeclListContext) => void;
512
+ /**
513
+ * Enter a parse tree produced by `ForgeParser.quantDeclList`.
514
+ * @param ctx the parse tree
515
+ */
516
+ enterQuantDeclList?: (ctx: QuantDeclListContext) => void;
517
+ /**
518
+ * Exit a parse tree produced by `ForgeParser.quantDeclList`.
519
+ * @param ctx the parse tree
520
+ */
521
+ exitQuantDeclList?: (ctx: QuantDeclListContext) => void;
522
+ /**
523
+ * Enter a parse tree produced by `ForgeParser.arrowDeclList`.
524
+ * @param ctx the parse tree
525
+ */
526
+ enterArrowDeclList?: (ctx: ArrowDeclListContext) => void;
527
+ /**
528
+ * Exit a parse tree produced by `ForgeParser.arrowDeclList`.
529
+ * @param ctx the parse tree
530
+ */
531
+ exitArrowDeclList?: (ctx: ArrowDeclListContext) => void;
532
+ /**
533
+ * Enter a parse tree produced by `ForgeParser.letDeclList`.
534
+ * @param ctx the parse tree
535
+ */
536
+ enterLetDeclList?: (ctx: LetDeclListContext) => void;
537
+ /**
538
+ * Exit a parse tree produced by `ForgeParser.letDeclList`.
539
+ * @param ctx the parse tree
540
+ */
541
+ exitLetDeclList?: (ctx: LetDeclListContext) => void;
542
+ /**
543
+ * Enter a parse tree produced by `ForgeParser.typescopeList`.
544
+ * @param ctx the parse tree
545
+ */
546
+ enterTypescopeList?: (ctx: TypescopeListContext) => void;
547
+ /**
548
+ * Exit a parse tree produced by `ForgeParser.typescopeList`.
549
+ * @param ctx the parse tree
550
+ */
551
+ exitTypescopeList?: (ctx: TypescopeListContext) => void;
552
+ /**
553
+ * Enter a parse tree produced by `ForgeParser.exprList`.
554
+ * @param ctx the parse tree
555
+ */
556
+ enterExprList?: (ctx: ExprListContext) => void;
557
+ /**
558
+ * Exit a parse tree produced by `ForgeParser.exprList`.
559
+ * @param ctx the parse tree
560
+ */
561
+ exitExprList?: (ctx: ExprListContext) => void;
562
+ /**
563
+ * Enter a parse tree produced by `ForgeParser.expr`.
564
+ * @param ctx the parse tree
565
+ */
566
+ enterExpr?: (ctx: ExprContext) => void;
567
+ /**
568
+ * Exit a parse tree produced by `ForgeParser.expr`.
569
+ * @param ctx the parse tree
570
+ */
571
+ exitExpr?: (ctx: ExprContext) => void;
572
+ /**
573
+ * Enter a parse tree produced by `ForgeParser.expr1`.
574
+ * @param ctx the parse tree
575
+ */
576
+ enterExpr1?: (ctx: Expr1Context) => void;
577
+ /**
578
+ * Exit a parse tree produced by `ForgeParser.expr1`.
579
+ * @param ctx the parse tree
580
+ */
581
+ exitExpr1?: (ctx: Expr1Context) => void;
582
+ /**
583
+ * Enter a parse tree produced by `ForgeParser.expr1_5`.
584
+ * @param ctx the parse tree
585
+ */
586
+ enterExpr1_5?: (ctx: Expr1_5Context) => void;
587
+ /**
588
+ * Exit a parse tree produced by `ForgeParser.expr1_5`.
589
+ * @param ctx the parse tree
590
+ */
591
+ exitExpr1_5?: (ctx: Expr1_5Context) => void;
592
+ /**
593
+ * Enter a parse tree produced by `ForgeParser.expr2`.
594
+ * @param ctx the parse tree
595
+ */
596
+ enterExpr2?: (ctx: Expr2Context) => void;
597
+ /**
598
+ * Exit a parse tree produced by `ForgeParser.expr2`.
599
+ * @param ctx the parse tree
600
+ */
601
+ exitExpr2?: (ctx: Expr2Context) => void;
602
+ /**
603
+ * Enter a parse tree produced by `ForgeParser.expr3`.
604
+ * @param ctx the parse tree
605
+ */
606
+ enterExpr3?: (ctx: Expr3Context) => void;
607
+ /**
608
+ * Exit a parse tree produced by `ForgeParser.expr3`.
609
+ * @param ctx the parse tree
610
+ */
611
+ exitExpr3?: (ctx: Expr3Context) => void;
612
+ /**
613
+ * Enter a parse tree produced by `ForgeParser.expr4`.
614
+ * @param ctx the parse tree
615
+ */
616
+ enterExpr4?: (ctx: Expr4Context) => void;
617
+ /**
618
+ * Exit a parse tree produced by `ForgeParser.expr4`.
619
+ * @param ctx the parse tree
620
+ */
621
+ exitExpr4?: (ctx: Expr4Context) => void;
622
+ /**
623
+ * Enter a parse tree produced by `ForgeParser.expr4_5`.
624
+ * @param ctx the parse tree
625
+ */
626
+ enterExpr4_5?: (ctx: Expr4_5Context) => void;
627
+ /**
628
+ * Exit a parse tree produced by `ForgeParser.expr4_5`.
629
+ * @param ctx the parse tree
630
+ */
631
+ exitExpr4_5?: (ctx: Expr4_5Context) => void;
632
+ /**
633
+ * Enter a parse tree produced by `ForgeParser.expr5`.
634
+ * @param ctx the parse tree
635
+ */
636
+ enterExpr5?: (ctx: Expr5Context) => void;
637
+ /**
638
+ * Exit a parse tree produced by `ForgeParser.expr5`.
639
+ * @param ctx the parse tree
640
+ */
641
+ exitExpr5?: (ctx: Expr5Context) => void;
642
+ /**
643
+ * Enter a parse tree produced by `ForgeParser.expr6`.
644
+ * @param ctx the parse tree
645
+ */
646
+ enterExpr6?: (ctx: Expr6Context) => void;
647
+ /**
648
+ * Exit a parse tree produced by `ForgeParser.expr6`.
649
+ * @param ctx the parse tree
650
+ */
651
+ exitExpr6?: (ctx: Expr6Context) => void;
652
+ /**
653
+ * Enter a parse tree produced by `ForgeParser.expr7`.
654
+ * @param ctx the parse tree
655
+ */
656
+ enterExpr7?: (ctx: Expr7Context) => void;
657
+ /**
658
+ * Exit a parse tree produced by `ForgeParser.expr7`.
659
+ * @param ctx the parse tree
660
+ */
661
+ exitExpr7?: (ctx: Expr7Context) => void;
662
+ /**
663
+ * Enter a parse tree produced by `ForgeParser.expr8`.
664
+ * @param ctx the parse tree
665
+ */
666
+ enterExpr8?: (ctx: Expr8Context) => void;
667
+ /**
668
+ * Exit a parse tree produced by `ForgeParser.expr8`.
669
+ * @param ctx the parse tree
670
+ */
671
+ exitExpr8?: (ctx: Expr8Context) => void;
672
+ /**
673
+ * Enter a parse tree produced by `ForgeParser.expr9`.
674
+ * @param ctx the parse tree
675
+ */
676
+ enterExpr9?: (ctx: Expr9Context) => void;
677
+ /**
678
+ * Exit a parse tree produced by `ForgeParser.expr9`.
679
+ * @param ctx the parse tree
680
+ */
681
+ exitExpr9?: (ctx: Expr9Context) => void;
682
+ /**
683
+ * Enter a parse tree produced by `ForgeParser.expr10`.
684
+ * @param ctx the parse tree
685
+ */
686
+ enterExpr10?: (ctx: Expr10Context) => void;
687
+ /**
688
+ * Exit a parse tree produced by `ForgeParser.expr10`.
689
+ * @param ctx the parse tree
690
+ */
691
+ exitExpr10?: (ctx: Expr10Context) => void;
692
+ /**
693
+ * Enter a parse tree produced by `ForgeParser.expr11`.
694
+ * @param ctx the parse tree
695
+ */
696
+ enterExpr11?: (ctx: Expr11Context) => void;
697
+ /**
698
+ * Exit a parse tree produced by `ForgeParser.expr11`.
699
+ * @param ctx the parse tree
700
+ */
701
+ exitExpr11?: (ctx: Expr11Context) => void;
702
+ /**
703
+ * Enter a parse tree produced by `ForgeParser.expr12`.
704
+ * @param ctx the parse tree
705
+ */
706
+ enterExpr12?: (ctx: Expr12Context) => void;
707
+ /**
708
+ * Exit a parse tree produced by `ForgeParser.expr12`.
709
+ * @param ctx the parse tree
710
+ */
711
+ exitExpr12?: (ctx: Expr12Context) => void;
712
+ /**
713
+ * Enter a parse tree produced by `ForgeParser.expr13`.
714
+ * @param ctx the parse tree
715
+ */
716
+ enterExpr13?: (ctx: Expr13Context) => void;
717
+ /**
718
+ * Exit a parse tree produced by `ForgeParser.expr13`.
719
+ * @param ctx the parse tree
720
+ */
721
+ exitExpr13?: (ctx: Expr13Context) => void;
722
+ /**
723
+ * Enter a parse tree produced by `ForgeParser.expr14`.
724
+ * @param ctx the parse tree
725
+ */
726
+ enterExpr14?: (ctx: Expr14Context) => void;
727
+ /**
728
+ * Exit a parse tree produced by `ForgeParser.expr14`.
729
+ * @param ctx the parse tree
730
+ */
731
+ exitExpr14?: (ctx: Expr14Context) => void;
732
+ /**
733
+ * Enter a parse tree produced by `ForgeParser.expr15`.
734
+ * @param ctx the parse tree
735
+ */
736
+ enterExpr15?: (ctx: Expr15Context) => void;
737
+ /**
738
+ * Exit a parse tree produced by `ForgeParser.expr15`.
739
+ * @param ctx the parse tree
740
+ */
741
+ exitExpr15?: (ctx: Expr15Context) => void;
742
+ /**
743
+ * Enter a parse tree produced by `ForgeParser.expr16`.
744
+ * @param ctx the parse tree
745
+ */
746
+ enterExpr16?: (ctx: Expr16Context) => void;
747
+ /**
748
+ * Exit a parse tree produced by `ForgeParser.expr16`.
749
+ * @param ctx the parse tree
750
+ */
751
+ exitExpr16?: (ctx: Expr16Context) => void;
752
+ /**
753
+ * Enter a parse tree produced by `ForgeParser.expr17`.
754
+ * @param ctx the parse tree
755
+ */
756
+ enterExpr17?: (ctx: Expr17Context) => void;
757
+ /**
758
+ * Exit a parse tree produced by `ForgeParser.expr17`.
759
+ * @param ctx the parse tree
760
+ */
761
+ exitExpr17?: (ctx: Expr17Context) => void;
762
+ /**
763
+ * Enter a parse tree produced by `ForgeParser.expr18`.
764
+ * @param ctx the parse tree
765
+ */
766
+ enterExpr18?: (ctx: Expr18Context) => void;
767
+ /**
768
+ * Exit a parse tree produced by `ForgeParser.expr18`.
769
+ * @param ctx the parse tree
770
+ */
771
+ exitExpr18?: (ctx: Expr18Context) => void;
772
+ /**
773
+ * Enter a parse tree produced by `ForgeParser.arrowExpr`.
774
+ * @param ctx the parse tree
775
+ */
776
+ enterArrowExpr?: (ctx: ArrowExprContext) => void;
777
+ /**
778
+ * Exit a parse tree produced by `ForgeParser.arrowExpr`.
779
+ * @param ctx the parse tree
780
+ */
781
+ exitArrowExpr?: (ctx: ArrowExprContext) => void;
782
+ /**
783
+ * Enter a parse tree produced by `ForgeParser.sexprDecl`.
784
+ * @param ctx the parse tree
785
+ */
786
+ enterSexprDecl?: (ctx: SexprDeclContext) => void;
787
+ /**
788
+ * Exit a parse tree produced by `ForgeParser.sexprDecl`.
789
+ * @param ctx the parse tree
790
+ */
791
+ exitSexprDecl?: (ctx: SexprDeclContext) => void;
792
+ /**
793
+ * Enter a parse tree produced by `ForgeParser.sexpr`.
794
+ * @param ctx the parse tree
795
+ */
796
+ enterSexpr?: (ctx: SexprContext) => void;
797
+ /**
798
+ * Exit a parse tree produced by `ForgeParser.sexpr`.
799
+ * @param ctx the parse tree
800
+ */
801
+ exitSexpr?: (ctx: SexprContext) => void;
802
+ /**
803
+ * Enter a parse tree produced by `ForgeParser.instDecl`.
804
+ * @param ctx the parse tree
805
+ */
806
+ enterInstDecl?: (ctx: InstDeclContext) => void;
807
+ /**
808
+ * Exit a parse tree produced by `ForgeParser.instDecl`.
809
+ * @param ctx the parse tree
810
+ */
811
+ exitInstDecl?: (ctx: InstDeclContext) => void;
812
+ /**
813
+ * Enter a parse tree produced by `ForgeParser.evalRelDecl`.
814
+ * @param ctx the parse tree
815
+ */
816
+ enterEvalRelDecl?: (ctx: EvalRelDeclContext) => void;
817
+ /**
818
+ * Exit a parse tree produced by `ForgeParser.evalRelDecl`.
819
+ * @param ctx the parse tree
820
+ */
821
+ exitEvalRelDecl?: (ctx: EvalRelDeclContext) => void;
822
+ /**
823
+ * Enter a parse tree produced by `ForgeParser.evalDecl`.
824
+ * @param ctx the parse tree
825
+ */
826
+ enterEvalDecl?: (ctx: EvalDeclContext) => void;
827
+ /**
828
+ * Exit a parse tree produced by `ForgeParser.evalDecl`.
829
+ * @param ctx the parse tree
830
+ */
831
+ exitEvalDecl?: (ctx: EvalDeclContext) => void;
832
+ /**
833
+ * Enter a parse tree produced by `ForgeParser.exampleDecl`.
834
+ * @param ctx the parse tree
835
+ */
836
+ enterExampleDecl?: (ctx: ExampleDeclContext) => void;
837
+ /**
838
+ * Exit a parse tree produced by `ForgeParser.exampleDecl`.
839
+ * @param ctx the parse tree
840
+ */
841
+ exitExampleDecl?: (ctx: ExampleDeclContext) => void;
842
+ /**
843
+ * Enter a parse tree produced by `ForgeParser.queryDecl`.
844
+ * @param ctx the parse tree
845
+ */
846
+ enterQueryDecl?: (ctx: QueryDeclContext) => void;
847
+ /**
848
+ * Exit a parse tree produced by `ForgeParser.queryDecl`.
849
+ * @param ctx the parse tree
850
+ */
851
+ exitQueryDecl?: (ctx: QueryDeclContext) => void;
852
+ /**
853
+ * Enter a parse tree produced by `ForgeParser.numberList`.
854
+ * @param ctx the parse tree
855
+ */
856
+ enterNumberList?: (ctx: NumberListContext) => void;
857
+ /**
858
+ * Exit a parse tree produced by `ForgeParser.numberList`.
859
+ * @param ctx the parse tree
860
+ */
861
+ exitNumberList?: (ctx: NumberListContext) => void;
862
+ /**
863
+ * Enter a parse tree produced by `ForgeParser.number`.
864
+ * @param ctx the parse tree
865
+ */
866
+ enterNumber?: (ctx: NumberContext) => void;
867
+ /**
868
+ * Exit a parse tree produced by `ForgeParser.number`.
869
+ * @param ctx the parse tree
870
+ */
871
+ exitNumber?: (ctx: NumberContext) => void;
872
+ /**
873
+ * Enter a parse tree produced by `ForgeParser.bounds`.
874
+ * @param ctx the parse tree
875
+ */
876
+ enterBounds?: (ctx: BoundsContext) => void;
877
+ /**
878
+ * Exit a parse tree produced by `ForgeParser.bounds`.
879
+ * @param ctx the parse tree
880
+ */
881
+ exitBounds?: (ctx: BoundsContext) => void;
882
+ /**
883
+ * Enter a parse tree produced by `ForgeParser.atomNameOrNumber`.
884
+ * @param ctx the parse tree
885
+ */
886
+ enterAtomNameOrNumber?: (ctx: AtomNameOrNumberContext) => void;
887
+ /**
888
+ * Exit a parse tree produced by `ForgeParser.atomNameOrNumber`.
889
+ * @param ctx the parse tree
890
+ */
891
+ exitAtomNameOrNumber?: (ctx: AtomNameOrNumberContext) => void;
892
+ /**
893
+ * Enter a parse tree produced by `ForgeParser.bound`.
894
+ * @param ctx the parse tree
895
+ */
896
+ enterBound?: (ctx: BoundContext) => void;
897
+ /**
898
+ * Exit a parse tree produced by `ForgeParser.bound`.
899
+ * @param ctx the parse tree
900
+ */
901
+ exitBound?: (ctx: BoundContext) => void;
902
+ /**
903
+ * Enter a parse tree produced by `ForgeParser.boundLHS`.
904
+ * @param ctx the parse tree
905
+ */
906
+ enterBoundLHS?: (ctx: BoundLHSContext) => void;
907
+ /**
908
+ * Exit a parse tree produced by `ForgeParser.boundLHS`.
909
+ * @param ctx the parse tree
910
+ */
911
+ exitBoundLHS?: (ctx: BoundLHSContext) => void;
912
+ /**
913
+ * Enter a parse tree produced by `ForgeParser.bindRHSUnion`.
914
+ * @param ctx the parse tree
915
+ */
916
+ enterBindRHSUnion?: (ctx: BindRHSUnionContext) => void;
917
+ /**
918
+ * Exit a parse tree produced by `ForgeParser.bindRHSUnion`.
919
+ * @param ctx the parse tree
920
+ */
921
+ exitBindRHSUnion?: (ctx: BindRHSUnionContext) => void;
922
+ /**
923
+ * Enter a parse tree produced by `ForgeParser.bindRHSProduct`.
924
+ * @param ctx the parse tree
925
+ */
926
+ enterBindRHSProduct?: (ctx: BindRHSProductContext) => void;
927
+ /**
928
+ * Exit a parse tree produced by `ForgeParser.bindRHSProduct`.
929
+ * @param ctx the parse tree
930
+ */
931
+ exitBindRHSProduct?: (ctx: BindRHSProductContext) => void;
932
+ /**
933
+ * Enter a parse tree produced by `ForgeParser.bindRHSProductBase`.
934
+ * @param ctx the parse tree
935
+ */
936
+ enterBindRHSProductBase?: (ctx: BindRHSProductBaseContext) => void;
937
+ /**
938
+ * Exit a parse tree produced by `ForgeParser.bindRHSProductBase`.
939
+ * @param ctx the parse tree
940
+ */
941
+ exitBindRHSProductBase?: (ctx: BindRHSProductBaseContext) => void;
942
+ }