@zenuml/core 2.0.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/Integration/vanilla-js/index.html +8 -13
  2. package/dist/zenuml/core.common.js +37977 -0
  3. package/dist/zenuml/core.common.js.map +1 -0
  4. package/dist/{vue-sequence.css → zenuml/core.css} +0 -0
  5. package/dist/zenuml/core.umd.js +37988 -0
  6. package/dist/zenuml/core.umd.js.map +1 -0
  7. package/dist/{vue-sequence.umd.min.js → zenuml/core.umd.min.js} +3 -3
  8. package/dist/zenuml/core.umd.min.js.map +1 -0
  9. package/package.json +6 -6
  10. package/coverage/clover.xml +0 -6
  11. package/coverage/coverage-final.json +0 -1
  12. package/coverage/lcov-report/Interaction.vue.html +0 -532
  13. package/coverage/lcov-report/Owner.js.html +0 -175
  14. package/coverage/lcov-report/base.css +0 -224
  15. package/coverage/lcov-report/block-navigation.js +0 -79
  16. package/coverage/lcov-report/components/interaction/Interaction.vue.html +0 -544
  17. package/coverage/lcov-report/components/interaction/index.html +0 -110
  18. package/coverage/lcov-report/index.html +0 -95
  19. package/coverage/lcov-report/positioning/david/DavidEisenstat2.ts.html +0 -196
  20. package/coverage/lcov-report/positioning/david/index.html +0 -110
  21. package/coverage/lcov-report/prettify.css +0 -1
  22. package/coverage/lcov-report/prettify.js +0 -2
  23. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  24. package/coverage/lcov-report/sorter.js +0 -170
  25. package/coverage/lcov.info +0 -0
  26. package/cypress/fixtures/example.json +0 -5
  27. package/cypress/fixtures/profile.json +0 -5
  28. package/cypress/fixtures/users.json +0 -232
  29. package/cypress/integration/__image_snapshots__/Smoke test creation #0.png +0 -0
  30. package/cypress/integration/__image_snapshots__/Smoke test fragment #0.png +0 -0
  31. package/cypress/integration/__image_snapshots__/Smoke test fragmentIssue #0.png +0 -0
  32. package/cypress/integration/__image_snapshots__/Smoke test interaction #0.png +0 -0
  33. package/cypress/integration/__image_snapshots__/Smoke test return #0.png +0 -0
  34. package/cypress/integration/__image_snapshots__/Smoke test return #1.png +0 -0
  35. package/cypress/integration/__image_snapshots__/Smoke test should load the home page #0.png +0 -0
  36. package/cypress/integration/smoke.spec.js +0 -64
  37. package/cypress/plugins/index.js +0 -30
  38. package/cypress/support/commands.js +0 -25
  39. package/cypress/support/index.js +0 -20
  40. package/cypress/videos/smoke.spec.js.mp4 +0 -0
  41. package/gen/css3.interp +0 -214
  42. package/gen/css3.tokens +0 -92
  43. package/gen/css3BaseListener.java +0 -1106
  44. package/gen/css3BaseVisitor.java +0 -636
  45. package/gen/css3Lexer.interp +0 -251
  46. package/gen/css3Lexer.java +0 -672
  47. package/gen/css3Lexer.tokens +0 -92
  48. package/gen/css3Listener.java +0 -939
  49. package/gen/css3Parser.java +0 -8113
  50. package/gen/css3Visitor.java +0 -566
  51. package/gen/sequenceLexer.interp +0 -206
  52. package/gen/sequenceLexer.java +0 -419
  53. package/gen/sequenceLexer.tokens +0 -104
  54. package/gen/sequenceParser.interp +0 -180
  55. package/gen/sequenceParser.java +0 -4659
  56. package/gen/sequenceParser.tokens +0 -101
  57. package/gen/sequenceParserBaseListener.java +0 -830
  58. package/gen/sequenceParserBaseVisitor.java +0 -475
  59. package/gen/sequenceParserListener.java +0 -703
  60. package/gen/sequenceParserVisitor.java +0 -425
@@ -1,703 +0,0 @@
1
- // Generated from /Users/pengxiao/workspaces/zenuml/vue-sequence/src/g4/sequenceParser.g4 by ANTLR 4.9.2
2
- import org.antlr.v4.runtime.tree.ParseTreeListener;
3
-
4
- /**
5
- * This interface defines a complete listener for a parse tree produced by
6
- * {@link sequenceParser}.
7
- */
8
- public interface sequenceParserListener extends ParseTreeListener {
9
- /**
10
- * Enter a parse tree produced by {@link sequenceParser#prog}.
11
- * @param ctx the parse tree
12
- */
13
- void enterProg(sequenceParser.ProgContext ctx);
14
- /**
15
- * Exit a parse tree produced by {@link sequenceParser#prog}.
16
- * @param ctx the parse tree
17
- */
18
- void exitProg(sequenceParser.ProgContext ctx);
19
- /**
20
- * Enter a parse tree produced by {@link sequenceParser#title}.
21
- * @param ctx the parse tree
22
- */
23
- void enterTitle(sequenceParser.TitleContext ctx);
24
- /**
25
- * Exit a parse tree produced by {@link sequenceParser#title}.
26
- * @param ctx the parse tree
27
- */
28
- void exitTitle(sequenceParser.TitleContext ctx);
29
- /**
30
- * Enter a parse tree produced by {@link sequenceParser#head}.
31
- * @param ctx the parse tree
32
- */
33
- void enterHead(sequenceParser.HeadContext ctx);
34
- /**
35
- * Exit a parse tree produced by {@link sequenceParser#head}.
36
- * @param ctx the parse tree
37
- */
38
- void exitHead(sequenceParser.HeadContext ctx);
39
- /**
40
- * Enter a parse tree produced by {@link sequenceParser#group}.
41
- * @param ctx the parse tree
42
- */
43
- void enterGroup(sequenceParser.GroupContext ctx);
44
- /**
45
- * Exit a parse tree produced by {@link sequenceParser#group}.
46
- * @param ctx the parse tree
47
- */
48
- void exitGroup(sequenceParser.GroupContext ctx);
49
- /**
50
- * Enter a parse tree produced by {@link sequenceParser#starterExp}.
51
- * @param ctx the parse tree
52
- */
53
- void enterStarterExp(sequenceParser.StarterExpContext ctx);
54
- /**
55
- * Exit a parse tree produced by {@link sequenceParser#starterExp}.
56
- * @param ctx the parse tree
57
- */
58
- void exitStarterExp(sequenceParser.StarterExpContext ctx);
59
- /**
60
- * Enter a parse tree produced by {@link sequenceParser#starter}.
61
- * @param ctx the parse tree
62
- */
63
- void enterStarter(sequenceParser.StarterContext ctx);
64
- /**
65
- * Exit a parse tree produced by {@link sequenceParser#starter}.
66
- * @param ctx the parse tree
67
- */
68
- void exitStarter(sequenceParser.StarterContext ctx);
69
- /**
70
- * Enter a parse tree produced by {@link sequenceParser#participant}.
71
- * @param ctx the parse tree
72
- */
73
- void enterParticipant(sequenceParser.ParticipantContext ctx);
74
- /**
75
- * Exit a parse tree produced by {@link sequenceParser#participant}.
76
- * @param ctx the parse tree
77
- */
78
- void exitParticipant(sequenceParser.ParticipantContext ctx);
79
- /**
80
- * Enter a parse tree produced by {@link sequenceParser#stereotype}.
81
- * @param ctx the parse tree
82
- */
83
- void enterStereotype(sequenceParser.StereotypeContext ctx);
84
- /**
85
- * Exit a parse tree produced by {@link sequenceParser#stereotype}.
86
- * @param ctx the parse tree
87
- */
88
- void exitStereotype(sequenceParser.StereotypeContext ctx);
89
- /**
90
- * Enter a parse tree produced by {@link sequenceParser#label}.
91
- * @param ctx the parse tree
92
- */
93
- void enterLabel(sequenceParser.LabelContext ctx);
94
- /**
95
- * Exit a parse tree produced by {@link sequenceParser#label}.
96
- * @param ctx the parse tree
97
- */
98
- void exitLabel(sequenceParser.LabelContext ctx);
99
- /**
100
- * Enter a parse tree produced by {@link sequenceParser#participantType}.
101
- * @param ctx the parse tree
102
- */
103
- void enterParticipantType(sequenceParser.ParticipantTypeContext ctx);
104
- /**
105
- * Exit a parse tree produced by {@link sequenceParser#participantType}.
106
- * @param ctx the parse tree
107
- */
108
- void exitParticipantType(sequenceParser.ParticipantTypeContext ctx);
109
- /**
110
- * Enter a parse tree produced by {@link sequenceParser#name}.
111
- * @param ctx the parse tree
112
- */
113
- void enterName(sequenceParser.NameContext ctx);
114
- /**
115
- * Exit a parse tree produced by {@link sequenceParser#name}.
116
- * @param ctx the parse tree
117
- */
118
- void exitName(sequenceParser.NameContext ctx);
119
- /**
120
- * Enter a parse tree produced by {@link sequenceParser#width}.
121
- * @param ctx the parse tree
122
- */
123
- void enterWidth(sequenceParser.WidthContext ctx);
124
- /**
125
- * Exit a parse tree produced by {@link sequenceParser#width}.
126
- * @param ctx the parse tree
127
- */
128
- void exitWidth(sequenceParser.WidthContext ctx);
129
- /**
130
- * Enter a parse tree produced by {@link sequenceParser#block}.
131
- * @param ctx the parse tree
132
- */
133
- void enterBlock(sequenceParser.BlockContext ctx);
134
- /**
135
- * Exit a parse tree produced by {@link sequenceParser#block}.
136
- * @param ctx the parse tree
137
- */
138
- void exitBlock(sequenceParser.BlockContext ctx);
139
- /**
140
- * Enter a parse tree produced by {@link sequenceParser#ret}.
141
- * @param ctx the parse tree
142
- */
143
- void enterRet(sequenceParser.RetContext ctx);
144
- /**
145
- * Exit a parse tree produced by {@link sequenceParser#ret}.
146
- * @param ctx the parse tree
147
- */
148
- void exitRet(sequenceParser.RetContext ctx);
149
- /**
150
- * Enter a parse tree produced by {@link sequenceParser#divider}.
151
- * @param ctx the parse tree
152
- */
153
- void enterDivider(sequenceParser.DividerContext ctx);
154
- /**
155
- * Exit a parse tree produced by {@link sequenceParser#divider}.
156
- * @param ctx the parse tree
157
- */
158
- void exitDivider(sequenceParser.DividerContext ctx);
159
- /**
160
- * Enter a parse tree produced by {@link sequenceParser#stat}.
161
- * @param ctx the parse tree
162
- */
163
- void enterStat(sequenceParser.StatContext ctx);
164
- /**
165
- * Exit a parse tree produced by {@link sequenceParser#stat}.
166
- * @param ctx the parse tree
167
- */
168
- void exitStat(sequenceParser.StatContext ctx);
169
- /**
170
- * Enter a parse tree produced by {@link sequenceParser#par}.
171
- * @param ctx the parse tree
172
- */
173
- void enterPar(sequenceParser.ParContext ctx);
174
- /**
175
- * Exit a parse tree produced by {@link sequenceParser#par}.
176
- * @param ctx the parse tree
177
- */
178
- void exitPar(sequenceParser.ParContext ctx);
179
- /**
180
- * Enter a parse tree produced by {@link sequenceParser#opt}.
181
- * @param ctx the parse tree
182
- */
183
- void enterOpt(sequenceParser.OptContext ctx);
184
- /**
185
- * Exit a parse tree produced by {@link sequenceParser#opt}.
186
- * @param ctx the parse tree
187
- */
188
- void exitOpt(sequenceParser.OptContext ctx);
189
- /**
190
- * Enter a parse tree produced by {@link sequenceParser#creation}.
191
- * @param ctx the parse tree
192
- */
193
- void enterCreation(sequenceParser.CreationContext ctx);
194
- /**
195
- * Exit a parse tree produced by {@link sequenceParser#creation}.
196
- * @param ctx the parse tree
197
- */
198
- void exitCreation(sequenceParser.CreationContext ctx);
199
- /**
200
- * Enter a parse tree produced by {@link sequenceParser#creationBody}.
201
- * @param ctx the parse tree
202
- */
203
- void enterCreationBody(sequenceParser.CreationBodyContext ctx);
204
- /**
205
- * Exit a parse tree produced by {@link sequenceParser#creationBody}.
206
- * @param ctx the parse tree
207
- */
208
- void exitCreationBody(sequenceParser.CreationBodyContext ctx);
209
- /**
210
- * Enter a parse tree produced by {@link sequenceParser#message}.
211
- * @param ctx the parse tree
212
- */
213
- void enterMessage(sequenceParser.MessageContext ctx);
214
- /**
215
- * Exit a parse tree produced by {@link sequenceParser#message}.
216
- * @param ctx the parse tree
217
- */
218
- void exitMessage(sequenceParser.MessageContext ctx);
219
- /**
220
- * Enter a parse tree produced by {@link sequenceParser#messageBody}.
221
- * @param ctx the parse tree
222
- */
223
- void enterMessageBody(sequenceParser.MessageBodyContext ctx);
224
- /**
225
- * Exit a parse tree produced by {@link sequenceParser#messageBody}.
226
- * @param ctx the parse tree
227
- */
228
- void exitMessageBody(sequenceParser.MessageBodyContext ctx);
229
- /**
230
- * Enter a parse tree produced by {@link sequenceParser#func}.
231
- * @param ctx the parse tree
232
- */
233
- void enterFunc(sequenceParser.FuncContext ctx);
234
- /**
235
- * Exit a parse tree produced by {@link sequenceParser#func}.
236
- * @param ctx the parse tree
237
- */
238
- void exitFunc(sequenceParser.FuncContext ctx);
239
- /**
240
- * Enter a parse tree produced by {@link sequenceParser#from}.
241
- * @param ctx the parse tree
242
- */
243
- void enterFrom(sequenceParser.FromContext ctx);
244
- /**
245
- * Exit a parse tree produced by {@link sequenceParser#from}.
246
- * @param ctx the parse tree
247
- */
248
- void exitFrom(sequenceParser.FromContext ctx);
249
- /**
250
- * Enter a parse tree produced by {@link sequenceParser#to}.
251
- * @param ctx the parse tree
252
- */
253
- void enterTo(sequenceParser.ToContext ctx);
254
- /**
255
- * Exit a parse tree produced by {@link sequenceParser#to}.
256
- * @param ctx the parse tree
257
- */
258
- void exitTo(sequenceParser.ToContext ctx);
259
- /**
260
- * Enter a parse tree produced by {@link sequenceParser#signature}.
261
- * @param ctx the parse tree
262
- */
263
- void enterSignature(sequenceParser.SignatureContext ctx);
264
- /**
265
- * Exit a parse tree produced by {@link sequenceParser#signature}.
266
- * @param ctx the parse tree
267
- */
268
- void exitSignature(sequenceParser.SignatureContext ctx);
269
- /**
270
- * Enter a parse tree produced by {@link sequenceParser#invocation}.
271
- * @param ctx the parse tree
272
- */
273
- void enterInvocation(sequenceParser.InvocationContext ctx);
274
- /**
275
- * Exit a parse tree produced by {@link sequenceParser#invocation}.
276
- * @param ctx the parse tree
277
- */
278
- void exitInvocation(sequenceParser.InvocationContext ctx);
279
- /**
280
- * Enter a parse tree produced by {@link sequenceParser#assignment}.
281
- * @param ctx the parse tree
282
- */
283
- void enterAssignment(sequenceParser.AssignmentContext ctx);
284
- /**
285
- * Exit a parse tree produced by {@link sequenceParser#assignment}.
286
- * @param ctx the parse tree
287
- */
288
- void exitAssignment(sequenceParser.AssignmentContext ctx);
289
- /**
290
- * Enter a parse tree produced by {@link sequenceParser#asyncMessage}.
291
- * @param ctx the parse tree
292
- */
293
- void enterAsyncMessage(sequenceParser.AsyncMessageContext ctx);
294
- /**
295
- * Exit a parse tree produced by {@link sequenceParser#asyncMessage}.
296
- * @param ctx the parse tree
297
- */
298
- void exitAsyncMessage(sequenceParser.AsyncMessageContext ctx);
299
- /**
300
- * Enter a parse tree produced by {@link sequenceParser#content}.
301
- * @param ctx the parse tree
302
- */
303
- void enterContent(sequenceParser.ContentContext ctx);
304
- /**
305
- * Exit a parse tree produced by {@link sequenceParser#content}.
306
- * @param ctx the parse tree
307
- */
308
- void exitContent(sequenceParser.ContentContext ctx);
309
- /**
310
- * Enter a parse tree produced by {@link sequenceParser#construct}.
311
- * @param ctx the parse tree
312
- */
313
- void enterConstruct(sequenceParser.ConstructContext ctx);
314
- /**
315
- * Exit a parse tree produced by {@link sequenceParser#construct}.
316
- * @param ctx the parse tree
317
- */
318
- void exitConstruct(sequenceParser.ConstructContext ctx);
319
- /**
320
- * Enter a parse tree produced by {@link sequenceParser#type}.
321
- * @param ctx the parse tree
322
- */
323
- void enterType(sequenceParser.TypeContext ctx);
324
- /**
325
- * Exit a parse tree produced by {@link sequenceParser#type}.
326
- * @param ctx the parse tree
327
- */
328
- void exitType(sequenceParser.TypeContext ctx);
329
- /**
330
- * Enter a parse tree produced by {@link sequenceParser#assignee}.
331
- * @param ctx the parse tree
332
- */
333
- void enterAssignee(sequenceParser.AssigneeContext ctx);
334
- /**
335
- * Exit a parse tree produced by {@link sequenceParser#assignee}.
336
- * @param ctx the parse tree
337
- */
338
- void exitAssignee(sequenceParser.AssigneeContext ctx);
339
- /**
340
- * Enter a parse tree produced by {@link sequenceParser#methodName}.
341
- * @param ctx the parse tree
342
- */
343
- void enterMethodName(sequenceParser.MethodNameContext ctx);
344
- /**
345
- * Exit a parse tree produced by {@link sequenceParser#methodName}.
346
- * @param ctx the parse tree
347
- */
348
- void exitMethodName(sequenceParser.MethodNameContext ctx);
349
- /**
350
- * Enter a parse tree produced by {@link sequenceParser#parameters}.
351
- * @param ctx the parse tree
352
- */
353
- void enterParameters(sequenceParser.ParametersContext ctx);
354
- /**
355
- * Exit a parse tree produced by {@link sequenceParser#parameters}.
356
- * @param ctx the parse tree
357
- */
358
- void exitParameters(sequenceParser.ParametersContext ctx);
359
- /**
360
- * Enter a parse tree produced by {@link sequenceParser#parameter}.
361
- * @param ctx the parse tree
362
- */
363
- void enterParameter(sequenceParser.ParameterContext ctx);
364
- /**
365
- * Exit a parse tree produced by {@link sequenceParser#parameter}.
366
- * @param ctx the parse tree
367
- */
368
- void exitParameter(sequenceParser.ParameterContext ctx);
369
- /**
370
- * Enter a parse tree produced by {@link sequenceParser#declaration}.
371
- * @param ctx the parse tree
372
- */
373
- void enterDeclaration(sequenceParser.DeclarationContext ctx);
374
- /**
375
- * Exit a parse tree produced by {@link sequenceParser#declaration}.
376
- * @param ctx the parse tree
377
- */
378
- void exitDeclaration(sequenceParser.DeclarationContext ctx);
379
- /**
380
- * Enter a parse tree produced by {@link sequenceParser#tcf}.
381
- * @param ctx the parse tree
382
- */
383
- void enterTcf(sequenceParser.TcfContext ctx);
384
- /**
385
- * Exit a parse tree produced by {@link sequenceParser#tcf}.
386
- * @param ctx the parse tree
387
- */
388
- void exitTcf(sequenceParser.TcfContext ctx);
389
- /**
390
- * Enter a parse tree produced by {@link sequenceParser#tryBlock}.
391
- * @param ctx the parse tree
392
- */
393
- void enterTryBlock(sequenceParser.TryBlockContext ctx);
394
- /**
395
- * Exit a parse tree produced by {@link sequenceParser#tryBlock}.
396
- * @param ctx the parse tree
397
- */
398
- void exitTryBlock(sequenceParser.TryBlockContext ctx);
399
- /**
400
- * Enter a parse tree produced by {@link sequenceParser#catchBlock}.
401
- * @param ctx the parse tree
402
- */
403
- void enterCatchBlock(sequenceParser.CatchBlockContext ctx);
404
- /**
405
- * Exit a parse tree produced by {@link sequenceParser#catchBlock}.
406
- * @param ctx the parse tree
407
- */
408
- void exitCatchBlock(sequenceParser.CatchBlockContext ctx);
409
- /**
410
- * Enter a parse tree produced by {@link sequenceParser#finallyBlock}.
411
- * @param ctx the parse tree
412
- */
413
- void enterFinallyBlock(sequenceParser.FinallyBlockContext ctx);
414
- /**
415
- * Exit a parse tree produced by {@link sequenceParser#finallyBlock}.
416
- * @param ctx the parse tree
417
- */
418
- void exitFinallyBlock(sequenceParser.FinallyBlockContext ctx);
419
- /**
420
- * Enter a parse tree produced by {@link sequenceParser#alt}.
421
- * @param ctx the parse tree
422
- */
423
- void enterAlt(sequenceParser.AltContext ctx);
424
- /**
425
- * Exit a parse tree produced by {@link sequenceParser#alt}.
426
- * @param ctx the parse tree
427
- */
428
- void exitAlt(sequenceParser.AltContext ctx);
429
- /**
430
- * Enter a parse tree produced by {@link sequenceParser#ifBlock}.
431
- * @param ctx the parse tree
432
- */
433
- void enterIfBlock(sequenceParser.IfBlockContext ctx);
434
- /**
435
- * Exit a parse tree produced by {@link sequenceParser#ifBlock}.
436
- * @param ctx the parse tree
437
- */
438
- void exitIfBlock(sequenceParser.IfBlockContext ctx);
439
- /**
440
- * Enter a parse tree produced by {@link sequenceParser#elseIfBlock}.
441
- * @param ctx the parse tree
442
- */
443
- void enterElseIfBlock(sequenceParser.ElseIfBlockContext ctx);
444
- /**
445
- * Exit a parse tree produced by {@link sequenceParser#elseIfBlock}.
446
- * @param ctx the parse tree
447
- */
448
- void exitElseIfBlock(sequenceParser.ElseIfBlockContext ctx);
449
- /**
450
- * Enter a parse tree produced by {@link sequenceParser#elseBlock}.
451
- * @param ctx the parse tree
452
- */
453
- void enterElseBlock(sequenceParser.ElseBlockContext ctx);
454
- /**
455
- * Exit a parse tree produced by {@link sequenceParser#elseBlock}.
456
- * @param ctx the parse tree
457
- */
458
- void exitElseBlock(sequenceParser.ElseBlockContext ctx);
459
- /**
460
- * Enter a parse tree produced by {@link sequenceParser#braceBlock}.
461
- * @param ctx the parse tree
462
- */
463
- void enterBraceBlock(sequenceParser.BraceBlockContext ctx);
464
- /**
465
- * Exit a parse tree produced by {@link sequenceParser#braceBlock}.
466
- * @param ctx the parse tree
467
- */
468
- void exitBraceBlock(sequenceParser.BraceBlockContext ctx);
469
- /**
470
- * Enter a parse tree produced by {@link sequenceParser#loop}.
471
- * @param ctx the parse tree
472
- */
473
- void enterLoop(sequenceParser.LoopContext ctx);
474
- /**
475
- * Exit a parse tree produced by {@link sequenceParser#loop}.
476
- * @param ctx the parse tree
477
- */
478
- void exitLoop(sequenceParser.LoopContext ctx);
479
- /**
480
- * Enter a parse tree produced by the {@code notExpr}
481
- * labeled alternative in {@link sequenceParser#expr}.
482
- * @param ctx the parse tree
483
- */
484
- void enterNotExpr(sequenceParser.NotExprContext ctx);
485
- /**
486
- * Exit a parse tree produced by the {@code notExpr}
487
- * labeled alternative in {@link sequenceParser#expr}.
488
- * @param ctx the parse tree
489
- */
490
- void exitNotExpr(sequenceParser.NotExprContext ctx);
491
- /**
492
- * Enter a parse tree produced by the {@code funcExpr}
493
- * labeled alternative in {@link sequenceParser#expr}.
494
- * @param ctx the parse tree
495
- */
496
- void enterFuncExpr(sequenceParser.FuncExprContext ctx);
497
- /**
498
- * Exit a parse tree produced by the {@code funcExpr}
499
- * labeled alternative in {@link sequenceParser#expr}.
500
- * @param ctx the parse tree
501
- */
502
- void exitFuncExpr(sequenceParser.FuncExprContext ctx);
503
- /**
504
- * Enter a parse tree produced by the {@code unaryMinusExpr}
505
- * labeled alternative in {@link sequenceParser#expr}.
506
- * @param ctx the parse tree
507
- */
508
- void enterUnaryMinusExpr(sequenceParser.UnaryMinusExprContext ctx);
509
- /**
510
- * Exit a parse tree produced by the {@code unaryMinusExpr}
511
- * labeled alternative in {@link sequenceParser#expr}.
512
- * @param ctx the parse tree
513
- */
514
- void exitUnaryMinusExpr(sequenceParser.UnaryMinusExprContext ctx);
515
- /**
516
- * Enter a parse tree produced by the {@code creationExpr}
517
- * labeled alternative in {@link sequenceParser#expr}.
518
- * @param ctx the parse tree
519
- */
520
- void enterCreationExpr(sequenceParser.CreationExprContext ctx);
521
- /**
522
- * Exit a parse tree produced by the {@code creationExpr}
523
- * labeled alternative in {@link sequenceParser#expr}.
524
- * @param ctx the parse tree
525
- */
526
- void exitCreationExpr(sequenceParser.CreationExprContext ctx);
527
- /**
528
- * Enter a parse tree produced by the {@code multiplicationExpr}
529
- * labeled alternative in {@link sequenceParser#expr}.
530
- * @param ctx the parse tree
531
- */
532
- void enterMultiplicationExpr(sequenceParser.MultiplicationExprContext ctx);
533
- /**
534
- * Exit a parse tree produced by the {@code multiplicationExpr}
535
- * labeled alternative in {@link sequenceParser#expr}.
536
- * @param ctx the parse tree
537
- */
538
- void exitMultiplicationExpr(sequenceParser.MultiplicationExprContext ctx);
539
- /**
540
- * Enter a parse tree produced by the {@code atomExpr}
541
- * labeled alternative in {@link sequenceParser#expr}.
542
- * @param ctx the parse tree
543
- */
544
- void enterAtomExpr(sequenceParser.AtomExprContext ctx);
545
- /**
546
- * Exit a parse tree produced by the {@code atomExpr}
547
- * labeled alternative in {@link sequenceParser#expr}.
548
- * @param ctx the parse tree
549
- */
550
- void exitAtomExpr(sequenceParser.AtomExprContext ctx);
551
- /**
552
- * Enter a parse tree produced by the {@code orExpr}
553
- * labeled alternative in {@link sequenceParser#expr}.
554
- * @param ctx the parse tree
555
- */
556
- void enterOrExpr(sequenceParser.OrExprContext ctx);
557
- /**
558
- * Exit a parse tree produced by the {@code orExpr}
559
- * labeled alternative in {@link sequenceParser#expr}.
560
- * @param ctx the parse tree
561
- */
562
- void exitOrExpr(sequenceParser.OrExprContext ctx);
563
- /**
564
- * Enter a parse tree produced by the {@code additiveExpr}
565
- * labeled alternative in {@link sequenceParser#expr}.
566
- * @param ctx the parse tree
567
- */
568
- void enterAdditiveExpr(sequenceParser.AdditiveExprContext ctx);
569
- /**
570
- * Exit a parse tree produced by the {@code additiveExpr}
571
- * labeled alternative in {@link sequenceParser#expr}.
572
- * @param ctx the parse tree
573
- */
574
- void exitAdditiveExpr(sequenceParser.AdditiveExprContext ctx);
575
- /**
576
- * Enter a parse tree produced by the {@code relationalExpr}
577
- * labeled alternative in {@link sequenceParser#expr}.
578
- * @param ctx the parse tree
579
- */
580
- void enterRelationalExpr(sequenceParser.RelationalExprContext ctx);
581
- /**
582
- * Exit a parse tree produced by the {@code relationalExpr}
583
- * labeled alternative in {@link sequenceParser#expr}.
584
- * @param ctx the parse tree
585
- */
586
- void exitRelationalExpr(sequenceParser.RelationalExprContext ctx);
587
- /**
588
- * Enter a parse tree produced by the {@code equalityExpr}
589
- * labeled alternative in {@link sequenceParser#expr}.
590
- * @param ctx the parse tree
591
- */
592
- void enterEqualityExpr(sequenceParser.EqualityExprContext ctx);
593
- /**
594
- * Exit a parse tree produced by the {@code equalityExpr}
595
- * labeled alternative in {@link sequenceParser#expr}.
596
- * @param ctx the parse tree
597
- */
598
- void exitEqualityExpr(sequenceParser.EqualityExprContext ctx);
599
- /**
600
- * Enter a parse tree produced by the {@code plusExpr}
601
- * labeled alternative in {@link sequenceParser#expr}.
602
- * @param ctx the parse tree
603
- */
604
- void enterPlusExpr(sequenceParser.PlusExprContext ctx);
605
- /**
606
- * Exit a parse tree produced by the {@code plusExpr}
607
- * labeled alternative in {@link sequenceParser#expr}.
608
- * @param ctx the parse tree
609
- */
610
- void exitPlusExpr(sequenceParser.PlusExprContext ctx);
611
- /**
612
- * Enter a parse tree produced by the {@code andExpr}
613
- * labeled alternative in {@link sequenceParser#expr}.
614
- * @param ctx the parse tree
615
- */
616
- void enterAndExpr(sequenceParser.AndExprContext ctx);
617
- /**
618
- * Exit a parse tree produced by the {@code andExpr}
619
- * labeled alternative in {@link sequenceParser#expr}.
620
- * @param ctx the parse tree
621
- */
622
- void exitAndExpr(sequenceParser.AndExprContext ctx);
623
- /**
624
- * Enter a parse tree produced by the {@code numberAtom}
625
- * labeled alternative in {@link sequenceParser#atom}.
626
- * @param ctx the parse tree
627
- */
628
- void enterNumberAtom(sequenceParser.NumberAtomContext ctx);
629
- /**
630
- * Exit a parse tree produced by the {@code numberAtom}
631
- * labeled alternative in {@link sequenceParser#atom}.
632
- * @param ctx the parse tree
633
- */
634
- void exitNumberAtom(sequenceParser.NumberAtomContext ctx);
635
- /**
636
- * Enter a parse tree produced by the {@code booleanAtom}
637
- * labeled alternative in {@link sequenceParser#atom}.
638
- * @param ctx the parse tree
639
- */
640
- void enterBooleanAtom(sequenceParser.BooleanAtomContext ctx);
641
- /**
642
- * Exit a parse tree produced by the {@code booleanAtom}
643
- * labeled alternative in {@link sequenceParser#atom}.
644
- * @param ctx the parse tree
645
- */
646
- void exitBooleanAtom(sequenceParser.BooleanAtomContext ctx);
647
- /**
648
- * Enter a parse tree produced by the {@code idAtom}
649
- * labeled alternative in {@link sequenceParser#atom}.
650
- * @param ctx the parse tree
651
- */
652
- void enterIdAtom(sequenceParser.IdAtomContext ctx);
653
- /**
654
- * Exit a parse tree produced by the {@code idAtom}
655
- * labeled alternative in {@link sequenceParser#atom}.
656
- * @param ctx the parse tree
657
- */
658
- void exitIdAtom(sequenceParser.IdAtomContext ctx);
659
- /**
660
- * Enter a parse tree produced by the {@code stringAtom}
661
- * labeled alternative in {@link sequenceParser#atom}.
662
- * @param ctx the parse tree
663
- */
664
- void enterStringAtom(sequenceParser.StringAtomContext ctx);
665
- /**
666
- * Exit a parse tree produced by the {@code stringAtom}
667
- * labeled alternative in {@link sequenceParser#atom}.
668
- * @param ctx the parse tree
669
- */
670
- void exitStringAtom(sequenceParser.StringAtomContext ctx);
671
- /**
672
- * Enter a parse tree produced by the {@code nilAtom}
673
- * labeled alternative in {@link sequenceParser#atom}.
674
- * @param ctx the parse tree
675
- */
676
- void enterNilAtom(sequenceParser.NilAtomContext ctx);
677
- /**
678
- * Exit a parse tree produced by the {@code nilAtom}
679
- * labeled alternative in {@link sequenceParser#atom}.
680
- * @param ctx the parse tree
681
- */
682
- void exitNilAtom(sequenceParser.NilAtomContext ctx);
683
- /**
684
- * Enter a parse tree produced by {@link sequenceParser#parExpr}.
685
- * @param ctx the parse tree
686
- */
687
- void enterParExpr(sequenceParser.ParExprContext ctx);
688
- /**
689
- * Exit a parse tree produced by {@link sequenceParser#parExpr}.
690
- * @param ctx the parse tree
691
- */
692
- void exitParExpr(sequenceParser.ParExprContext ctx);
693
- /**
694
- * Enter a parse tree produced by {@link sequenceParser#condition}.
695
- * @param ctx the parse tree
696
- */
697
- void enterCondition(sequenceParser.ConditionContext ctx);
698
- /**
699
- * Exit a parse tree produced by {@link sequenceParser#condition}.
700
- * @param ctx the parse tree
701
- */
702
- void exitCondition(sequenceParser.ConditionContext ctx);
703
- }