@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.
- package/Integration/vanilla-js/index.html +8 -13
- package/dist/zenuml/core.common.js +37977 -0
- package/dist/zenuml/core.common.js.map +1 -0
- package/dist/{vue-sequence.css → zenuml/core.css} +0 -0
- package/dist/zenuml/core.umd.js +37988 -0
- package/dist/zenuml/core.umd.js.map +1 -0
- package/dist/{vue-sequence.umd.min.js → zenuml/core.umd.min.js} +3 -3
- package/dist/zenuml/core.umd.min.js.map +1 -0
- package/package.json +6 -6
- package/coverage/clover.xml +0 -6
- package/coverage/coverage-final.json +0 -1
- package/coverage/lcov-report/Interaction.vue.html +0 -532
- package/coverage/lcov-report/Owner.js.html +0 -175
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -79
- package/coverage/lcov-report/components/interaction/Interaction.vue.html +0 -544
- package/coverage/lcov-report/components/interaction/index.html +0 -110
- package/coverage/lcov-report/index.html +0 -95
- package/coverage/lcov-report/positioning/david/DavidEisenstat2.ts.html +0 -196
- package/coverage/lcov-report/positioning/david/index.html +0 -110
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -170
- package/coverage/lcov.info +0 -0
- package/cypress/fixtures/example.json +0 -5
- package/cypress/fixtures/profile.json +0 -5
- package/cypress/fixtures/users.json +0 -232
- package/cypress/integration/__image_snapshots__/Smoke test creation #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test fragment #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test fragmentIssue #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test interaction #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test return #0.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test return #1.png +0 -0
- package/cypress/integration/__image_snapshots__/Smoke test should load the home page #0.png +0 -0
- package/cypress/integration/smoke.spec.js +0 -64
- package/cypress/plugins/index.js +0 -30
- package/cypress/support/commands.js +0 -25
- package/cypress/support/index.js +0 -20
- package/cypress/videos/smoke.spec.js.mp4 +0 -0
- package/gen/css3.interp +0 -214
- package/gen/css3.tokens +0 -92
- package/gen/css3BaseListener.java +0 -1106
- package/gen/css3BaseVisitor.java +0 -636
- package/gen/css3Lexer.interp +0 -251
- package/gen/css3Lexer.java +0 -672
- package/gen/css3Lexer.tokens +0 -92
- package/gen/css3Listener.java +0 -939
- package/gen/css3Parser.java +0 -8113
- package/gen/css3Visitor.java +0 -566
- package/gen/sequenceLexer.interp +0 -206
- package/gen/sequenceLexer.java +0 -419
- package/gen/sequenceLexer.tokens +0 -104
- package/gen/sequenceParser.interp +0 -180
- package/gen/sequenceParser.java +0 -4659
- package/gen/sequenceParser.tokens +0 -101
- package/gen/sequenceParserBaseListener.java +0 -830
- package/gen/sequenceParserBaseVisitor.java +0 -475
- package/gen/sequenceParserListener.java +0 -703
- package/gen/sequenceParserVisitor.java +0 -425
|
@@ -1,425 +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.ParseTreeVisitor;
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* This interface defines a complete generic visitor for a parse tree produced
|
|
6
|
-
* by {@link sequenceParser}.
|
|
7
|
-
*
|
|
8
|
-
* @param <T> The return type of the visit operation. Use {@link Void} for
|
|
9
|
-
* operations with no return type.
|
|
10
|
-
*/
|
|
11
|
-
public interface sequenceParserVisitor<T> extends ParseTreeVisitor<T> {
|
|
12
|
-
/**
|
|
13
|
-
* Visit a parse tree produced by {@link sequenceParser#prog}.
|
|
14
|
-
* @param ctx the parse tree
|
|
15
|
-
* @return the visitor result
|
|
16
|
-
*/
|
|
17
|
-
T visitProg(sequenceParser.ProgContext ctx);
|
|
18
|
-
/**
|
|
19
|
-
* Visit a parse tree produced by {@link sequenceParser#title}.
|
|
20
|
-
* @param ctx the parse tree
|
|
21
|
-
* @return the visitor result
|
|
22
|
-
*/
|
|
23
|
-
T visitTitle(sequenceParser.TitleContext ctx);
|
|
24
|
-
/**
|
|
25
|
-
* Visit a parse tree produced by {@link sequenceParser#head}.
|
|
26
|
-
* @param ctx the parse tree
|
|
27
|
-
* @return the visitor result
|
|
28
|
-
*/
|
|
29
|
-
T visitHead(sequenceParser.HeadContext ctx);
|
|
30
|
-
/**
|
|
31
|
-
* Visit a parse tree produced by {@link sequenceParser#group}.
|
|
32
|
-
* @param ctx the parse tree
|
|
33
|
-
* @return the visitor result
|
|
34
|
-
*/
|
|
35
|
-
T visitGroup(sequenceParser.GroupContext ctx);
|
|
36
|
-
/**
|
|
37
|
-
* Visit a parse tree produced by {@link sequenceParser#starterExp}.
|
|
38
|
-
* @param ctx the parse tree
|
|
39
|
-
* @return the visitor result
|
|
40
|
-
*/
|
|
41
|
-
T visitStarterExp(sequenceParser.StarterExpContext ctx);
|
|
42
|
-
/**
|
|
43
|
-
* Visit a parse tree produced by {@link sequenceParser#starter}.
|
|
44
|
-
* @param ctx the parse tree
|
|
45
|
-
* @return the visitor result
|
|
46
|
-
*/
|
|
47
|
-
T visitStarter(sequenceParser.StarterContext ctx);
|
|
48
|
-
/**
|
|
49
|
-
* Visit a parse tree produced by {@link sequenceParser#participant}.
|
|
50
|
-
* @param ctx the parse tree
|
|
51
|
-
* @return the visitor result
|
|
52
|
-
*/
|
|
53
|
-
T visitParticipant(sequenceParser.ParticipantContext ctx);
|
|
54
|
-
/**
|
|
55
|
-
* Visit a parse tree produced by {@link sequenceParser#stereotype}.
|
|
56
|
-
* @param ctx the parse tree
|
|
57
|
-
* @return the visitor result
|
|
58
|
-
*/
|
|
59
|
-
T visitStereotype(sequenceParser.StereotypeContext ctx);
|
|
60
|
-
/**
|
|
61
|
-
* Visit a parse tree produced by {@link sequenceParser#label}.
|
|
62
|
-
* @param ctx the parse tree
|
|
63
|
-
* @return the visitor result
|
|
64
|
-
*/
|
|
65
|
-
T visitLabel(sequenceParser.LabelContext ctx);
|
|
66
|
-
/**
|
|
67
|
-
* Visit a parse tree produced by {@link sequenceParser#participantType}.
|
|
68
|
-
* @param ctx the parse tree
|
|
69
|
-
* @return the visitor result
|
|
70
|
-
*/
|
|
71
|
-
T visitParticipantType(sequenceParser.ParticipantTypeContext ctx);
|
|
72
|
-
/**
|
|
73
|
-
* Visit a parse tree produced by {@link sequenceParser#name}.
|
|
74
|
-
* @param ctx the parse tree
|
|
75
|
-
* @return the visitor result
|
|
76
|
-
*/
|
|
77
|
-
T visitName(sequenceParser.NameContext ctx);
|
|
78
|
-
/**
|
|
79
|
-
* Visit a parse tree produced by {@link sequenceParser#width}.
|
|
80
|
-
* @param ctx the parse tree
|
|
81
|
-
* @return the visitor result
|
|
82
|
-
*/
|
|
83
|
-
T visitWidth(sequenceParser.WidthContext ctx);
|
|
84
|
-
/**
|
|
85
|
-
* Visit a parse tree produced by {@link sequenceParser#block}.
|
|
86
|
-
* @param ctx the parse tree
|
|
87
|
-
* @return the visitor result
|
|
88
|
-
*/
|
|
89
|
-
T visitBlock(sequenceParser.BlockContext ctx);
|
|
90
|
-
/**
|
|
91
|
-
* Visit a parse tree produced by {@link sequenceParser#ret}.
|
|
92
|
-
* @param ctx the parse tree
|
|
93
|
-
* @return the visitor result
|
|
94
|
-
*/
|
|
95
|
-
T visitRet(sequenceParser.RetContext ctx);
|
|
96
|
-
/**
|
|
97
|
-
* Visit a parse tree produced by {@link sequenceParser#divider}.
|
|
98
|
-
* @param ctx the parse tree
|
|
99
|
-
* @return the visitor result
|
|
100
|
-
*/
|
|
101
|
-
T visitDivider(sequenceParser.DividerContext ctx);
|
|
102
|
-
/**
|
|
103
|
-
* Visit a parse tree produced by {@link sequenceParser#stat}.
|
|
104
|
-
* @param ctx the parse tree
|
|
105
|
-
* @return the visitor result
|
|
106
|
-
*/
|
|
107
|
-
T visitStat(sequenceParser.StatContext ctx);
|
|
108
|
-
/**
|
|
109
|
-
* Visit a parse tree produced by {@link sequenceParser#par}.
|
|
110
|
-
* @param ctx the parse tree
|
|
111
|
-
* @return the visitor result
|
|
112
|
-
*/
|
|
113
|
-
T visitPar(sequenceParser.ParContext ctx);
|
|
114
|
-
/**
|
|
115
|
-
* Visit a parse tree produced by {@link sequenceParser#opt}.
|
|
116
|
-
* @param ctx the parse tree
|
|
117
|
-
* @return the visitor result
|
|
118
|
-
*/
|
|
119
|
-
T visitOpt(sequenceParser.OptContext ctx);
|
|
120
|
-
/**
|
|
121
|
-
* Visit a parse tree produced by {@link sequenceParser#creation}.
|
|
122
|
-
* @param ctx the parse tree
|
|
123
|
-
* @return the visitor result
|
|
124
|
-
*/
|
|
125
|
-
T visitCreation(sequenceParser.CreationContext ctx);
|
|
126
|
-
/**
|
|
127
|
-
* Visit a parse tree produced by {@link sequenceParser#creationBody}.
|
|
128
|
-
* @param ctx the parse tree
|
|
129
|
-
* @return the visitor result
|
|
130
|
-
*/
|
|
131
|
-
T visitCreationBody(sequenceParser.CreationBodyContext ctx);
|
|
132
|
-
/**
|
|
133
|
-
* Visit a parse tree produced by {@link sequenceParser#message}.
|
|
134
|
-
* @param ctx the parse tree
|
|
135
|
-
* @return the visitor result
|
|
136
|
-
*/
|
|
137
|
-
T visitMessage(sequenceParser.MessageContext ctx);
|
|
138
|
-
/**
|
|
139
|
-
* Visit a parse tree produced by {@link sequenceParser#messageBody}.
|
|
140
|
-
* @param ctx the parse tree
|
|
141
|
-
* @return the visitor result
|
|
142
|
-
*/
|
|
143
|
-
T visitMessageBody(sequenceParser.MessageBodyContext ctx);
|
|
144
|
-
/**
|
|
145
|
-
* Visit a parse tree produced by {@link sequenceParser#func}.
|
|
146
|
-
* @param ctx the parse tree
|
|
147
|
-
* @return the visitor result
|
|
148
|
-
*/
|
|
149
|
-
T visitFunc(sequenceParser.FuncContext ctx);
|
|
150
|
-
/**
|
|
151
|
-
* Visit a parse tree produced by {@link sequenceParser#from}.
|
|
152
|
-
* @param ctx the parse tree
|
|
153
|
-
* @return the visitor result
|
|
154
|
-
*/
|
|
155
|
-
T visitFrom(sequenceParser.FromContext ctx);
|
|
156
|
-
/**
|
|
157
|
-
* Visit a parse tree produced by {@link sequenceParser#to}.
|
|
158
|
-
* @param ctx the parse tree
|
|
159
|
-
* @return the visitor result
|
|
160
|
-
*/
|
|
161
|
-
T visitTo(sequenceParser.ToContext ctx);
|
|
162
|
-
/**
|
|
163
|
-
* Visit a parse tree produced by {@link sequenceParser#signature}.
|
|
164
|
-
* @param ctx the parse tree
|
|
165
|
-
* @return the visitor result
|
|
166
|
-
*/
|
|
167
|
-
T visitSignature(sequenceParser.SignatureContext ctx);
|
|
168
|
-
/**
|
|
169
|
-
* Visit a parse tree produced by {@link sequenceParser#invocation}.
|
|
170
|
-
* @param ctx the parse tree
|
|
171
|
-
* @return the visitor result
|
|
172
|
-
*/
|
|
173
|
-
T visitInvocation(sequenceParser.InvocationContext ctx);
|
|
174
|
-
/**
|
|
175
|
-
* Visit a parse tree produced by {@link sequenceParser#assignment}.
|
|
176
|
-
* @param ctx the parse tree
|
|
177
|
-
* @return the visitor result
|
|
178
|
-
*/
|
|
179
|
-
T visitAssignment(sequenceParser.AssignmentContext ctx);
|
|
180
|
-
/**
|
|
181
|
-
* Visit a parse tree produced by {@link sequenceParser#asyncMessage}.
|
|
182
|
-
* @param ctx the parse tree
|
|
183
|
-
* @return the visitor result
|
|
184
|
-
*/
|
|
185
|
-
T visitAsyncMessage(sequenceParser.AsyncMessageContext ctx);
|
|
186
|
-
/**
|
|
187
|
-
* Visit a parse tree produced by {@link sequenceParser#content}.
|
|
188
|
-
* @param ctx the parse tree
|
|
189
|
-
* @return the visitor result
|
|
190
|
-
*/
|
|
191
|
-
T visitContent(sequenceParser.ContentContext ctx);
|
|
192
|
-
/**
|
|
193
|
-
* Visit a parse tree produced by {@link sequenceParser#construct}.
|
|
194
|
-
* @param ctx the parse tree
|
|
195
|
-
* @return the visitor result
|
|
196
|
-
*/
|
|
197
|
-
T visitConstruct(sequenceParser.ConstructContext ctx);
|
|
198
|
-
/**
|
|
199
|
-
* Visit a parse tree produced by {@link sequenceParser#type}.
|
|
200
|
-
* @param ctx the parse tree
|
|
201
|
-
* @return the visitor result
|
|
202
|
-
*/
|
|
203
|
-
T visitType(sequenceParser.TypeContext ctx);
|
|
204
|
-
/**
|
|
205
|
-
* Visit a parse tree produced by {@link sequenceParser#assignee}.
|
|
206
|
-
* @param ctx the parse tree
|
|
207
|
-
* @return the visitor result
|
|
208
|
-
*/
|
|
209
|
-
T visitAssignee(sequenceParser.AssigneeContext ctx);
|
|
210
|
-
/**
|
|
211
|
-
* Visit a parse tree produced by {@link sequenceParser#methodName}.
|
|
212
|
-
* @param ctx the parse tree
|
|
213
|
-
* @return the visitor result
|
|
214
|
-
*/
|
|
215
|
-
T visitMethodName(sequenceParser.MethodNameContext ctx);
|
|
216
|
-
/**
|
|
217
|
-
* Visit a parse tree produced by {@link sequenceParser#parameters}.
|
|
218
|
-
* @param ctx the parse tree
|
|
219
|
-
* @return the visitor result
|
|
220
|
-
*/
|
|
221
|
-
T visitParameters(sequenceParser.ParametersContext ctx);
|
|
222
|
-
/**
|
|
223
|
-
* Visit a parse tree produced by {@link sequenceParser#parameter}.
|
|
224
|
-
* @param ctx the parse tree
|
|
225
|
-
* @return the visitor result
|
|
226
|
-
*/
|
|
227
|
-
T visitParameter(sequenceParser.ParameterContext ctx);
|
|
228
|
-
/**
|
|
229
|
-
* Visit a parse tree produced by {@link sequenceParser#declaration}.
|
|
230
|
-
* @param ctx the parse tree
|
|
231
|
-
* @return the visitor result
|
|
232
|
-
*/
|
|
233
|
-
T visitDeclaration(sequenceParser.DeclarationContext ctx);
|
|
234
|
-
/**
|
|
235
|
-
* Visit a parse tree produced by {@link sequenceParser#tcf}.
|
|
236
|
-
* @param ctx the parse tree
|
|
237
|
-
* @return the visitor result
|
|
238
|
-
*/
|
|
239
|
-
T visitTcf(sequenceParser.TcfContext ctx);
|
|
240
|
-
/**
|
|
241
|
-
* Visit a parse tree produced by {@link sequenceParser#tryBlock}.
|
|
242
|
-
* @param ctx the parse tree
|
|
243
|
-
* @return the visitor result
|
|
244
|
-
*/
|
|
245
|
-
T visitTryBlock(sequenceParser.TryBlockContext ctx);
|
|
246
|
-
/**
|
|
247
|
-
* Visit a parse tree produced by {@link sequenceParser#catchBlock}.
|
|
248
|
-
* @param ctx the parse tree
|
|
249
|
-
* @return the visitor result
|
|
250
|
-
*/
|
|
251
|
-
T visitCatchBlock(sequenceParser.CatchBlockContext ctx);
|
|
252
|
-
/**
|
|
253
|
-
* Visit a parse tree produced by {@link sequenceParser#finallyBlock}.
|
|
254
|
-
* @param ctx the parse tree
|
|
255
|
-
* @return the visitor result
|
|
256
|
-
*/
|
|
257
|
-
T visitFinallyBlock(sequenceParser.FinallyBlockContext ctx);
|
|
258
|
-
/**
|
|
259
|
-
* Visit a parse tree produced by {@link sequenceParser#alt}.
|
|
260
|
-
* @param ctx the parse tree
|
|
261
|
-
* @return the visitor result
|
|
262
|
-
*/
|
|
263
|
-
T visitAlt(sequenceParser.AltContext ctx);
|
|
264
|
-
/**
|
|
265
|
-
* Visit a parse tree produced by {@link sequenceParser#ifBlock}.
|
|
266
|
-
* @param ctx the parse tree
|
|
267
|
-
* @return the visitor result
|
|
268
|
-
*/
|
|
269
|
-
T visitIfBlock(sequenceParser.IfBlockContext ctx);
|
|
270
|
-
/**
|
|
271
|
-
* Visit a parse tree produced by {@link sequenceParser#elseIfBlock}.
|
|
272
|
-
* @param ctx the parse tree
|
|
273
|
-
* @return the visitor result
|
|
274
|
-
*/
|
|
275
|
-
T visitElseIfBlock(sequenceParser.ElseIfBlockContext ctx);
|
|
276
|
-
/**
|
|
277
|
-
* Visit a parse tree produced by {@link sequenceParser#elseBlock}.
|
|
278
|
-
* @param ctx the parse tree
|
|
279
|
-
* @return the visitor result
|
|
280
|
-
*/
|
|
281
|
-
T visitElseBlock(sequenceParser.ElseBlockContext ctx);
|
|
282
|
-
/**
|
|
283
|
-
* Visit a parse tree produced by {@link sequenceParser#braceBlock}.
|
|
284
|
-
* @param ctx the parse tree
|
|
285
|
-
* @return the visitor result
|
|
286
|
-
*/
|
|
287
|
-
T visitBraceBlock(sequenceParser.BraceBlockContext ctx);
|
|
288
|
-
/**
|
|
289
|
-
* Visit a parse tree produced by {@link sequenceParser#loop}.
|
|
290
|
-
* @param ctx the parse tree
|
|
291
|
-
* @return the visitor result
|
|
292
|
-
*/
|
|
293
|
-
T visitLoop(sequenceParser.LoopContext ctx);
|
|
294
|
-
/**
|
|
295
|
-
* Visit a parse tree produced by the {@code notExpr}
|
|
296
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
297
|
-
* @param ctx the parse tree
|
|
298
|
-
* @return the visitor result
|
|
299
|
-
*/
|
|
300
|
-
T visitNotExpr(sequenceParser.NotExprContext ctx);
|
|
301
|
-
/**
|
|
302
|
-
* Visit a parse tree produced by the {@code funcExpr}
|
|
303
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
304
|
-
* @param ctx the parse tree
|
|
305
|
-
* @return the visitor result
|
|
306
|
-
*/
|
|
307
|
-
T visitFuncExpr(sequenceParser.FuncExprContext ctx);
|
|
308
|
-
/**
|
|
309
|
-
* Visit a parse tree produced by the {@code unaryMinusExpr}
|
|
310
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
311
|
-
* @param ctx the parse tree
|
|
312
|
-
* @return the visitor result
|
|
313
|
-
*/
|
|
314
|
-
T visitUnaryMinusExpr(sequenceParser.UnaryMinusExprContext ctx);
|
|
315
|
-
/**
|
|
316
|
-
* Visit a parse tree produced by the {@code creationExpr}
|
|
317
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
318
|
-
* @param ctx the parse tree
|
|
319
|
-
* @return the visitor result
|
|
320
|
-
*/
|
|
321
|
-
T visitCreationExpr(sequenceParser.CreationExprContext ctx);
|
|
322
|
-
/**
|
|
323
|
-
* Visit a parse tree produced by the {@code multiplicationExpr}
|
|
324
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
325
|
-
* @param ctx the parse tree
|
|
326
|
-
* @return the visitor result
|
|
327
|
-
*/
|
|
328
|
-
T visitMultiplicationExpr(sequenceParser.MultiplicationExprContext ctx);
|
|
329
|
-
/**
|
|
330
|
-
* Visit a parse tree produced by the {@code atomExpr}
|
|
331
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
332
|
-
* @param ctx the parse tree
|
|
333
|
-
* @return the visitor result
|
|
334
|
-
*/
|
|
335
|
-
T visitAtomExpr(sequenceParser.AtomExprContext ctx);
|
|
336
|
-
/**
|
|
337
|
-
* Visit a parse tree produced by the {@code orExpr}
|
|
338
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
339
|
-
* @param ctx the parse tree
|
|
340
|
-
* @return the visitor result
|
|
341
|
-
*/
|
|
342
|
-
T visitOrExpr(sequenceParser.OrExprContext ctx);
|
|
343
|
-
/**
|
|
344
|
-
* Visit a parse tree produced by the {@code additiveExpr}
|
|
345
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
346
|
-
* @param ctx the parse tree
|
|
347
|
-
* @return the visitor result
|
|
348
|
-
*/
|
|
349
|
-
T visitAdditiveExpr(sequenceParser.AdditiveExprContext ctx);
|
|
350
|
-
/**
|
|
351
|
-
* Visit a parse tree produced by the {@code relationalExpr}
|
|
352
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
353
|
-
* @param ctx the parse tree
|
|
354
|
-
* @return the visitor result
|
|
355
|
-
*/
|
|
356
|
-
T visitRelationalExpr(sequenceParser.RelationalExprContext ctx);
|
|
357
|
-
/**
|
|
358
|
-
* Visit a parse tree produced by the {@code equalityExpr}
|
|
359
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
360
|
-
* @param ctx the parse tree
|
|
361
|
-
* @return the visitor result
|
|
362
|
-
*/
|
|
363
|
-
T visitEqualityExpr(sequenceParser.EqualityExprContext ctx);
|
|
364
|
-
/**
|
|
365
|
-
* Visit a parse tree produced by the {@code plusExpr}
|
|
366
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
367
|
-
* @param ctx the parse tree
|
|
368
|
-
* @return the visitor result
|
|
369
|
-
*/
|
|
370
|
-
T visitPlusExpr(sequenceParser.PlusExprContext ctx);
|
|
371
|
-
/**
|
|
372
|
-
* Visit a parse tree produced by the {@code andExpr}
|
|
373
|
-
* labeled alternative in {@link sequenceParser#expr}.
|
|
374
|
-
* @param ctx the parse tree
|
|
375
|
-
* @return the visitor result
|
|
376
|
-
*/
|
|
377
|
-
T visitAndExpr(sequenceParser.AndExprContext ctx);
|
|
378
|
-
/**
|
|
379
|
-
* Visit a parse tree produced by the {@code numberAtom}
|
|
380
|
-
* labeled alternative in {@link sequenceParser#atom}.
|
|
381
|
-
* @param ctx the parse tree
|
|
382
|
-
* @return the visitor result
|
|
383
|
-
*/
|
|
384
|
-
T visitNumberAtom(sequenceParser.NumberAtomContext ctx);
|
|
385
|
-
/**
|
|
386
|
-
* Visit a parse tree produced by the {@code booleanAtom}
|
|
387
|
-
* labeled alternative in {@link sequenceParser#atom}.
|
|
388
|
-
* @param ctx the parse tree
|
|
389
|
-
* @return the visitor result
|
|
390
|
-
*/
|
|
391
|
-
T visitBooleanAtom(sequenceParser.BooleanAtomContext ctx);
|
|
392
|
-
/**
|
|
393
|
-
* Visit a parse tree produced by the {@code idAtom}
|
|
394
|
-
* labeled alternative in {@link sequenceParser#atom}.
|
|
395
|
-
* @param ctx the parse tree
|
|
396
|
-
* @return the visitor result
|
|
397
|
-
*/
|
|
398
|
-
T visitIdAtom(sequenceParser.IdAtomContext ctx);
|
|
399
|
-
/**
|
|
400
|
-
* Visit a parse tree produced by the {@code stringAtom}
|
|
401
|
-
* labeled alternative in {@link sequenceParser#atom}.
|
|
402
|
-
* @param ctx the parse tree
|
|
403
|
-
* @return the visitor result
|
|
404
|
-
*/
|
|
405
|
-
T visitStringAtom(sequenceParser.StringAtomContext ctx);
|
|
406
|
-
/**
|
|
407
|
-
* Visit a parse tree produced by the {@code nilAtom}
|
|
408
|
-
* labeled alternative in {@link sequenceParser#atom}.
|
|
409
|
-
* @param ctx the parse tree
|
|
410
|
-
* @return the visitor result
|
|
411
|
-
*/
|
|
412
|
-
T visitNilAtom(sequenceParser.NilAtomContext ctx);
|
|
413
|
-
/**
|
|
414
|
-
* Visit a parse tree produced by {@link sequenceParser#parExpr}.
|
|
415
|
-
* @param ctx the parse tree
|
|
416
|
-
* @return the visitor result
|
|
417
|
-
*/
|
|
418
|
-
T visitParExpr(sequenceParser.ParExprContext ctx);
|
|
419
|
-
/**
|
|
420
|
-
* Visit a parse tree produced by {@link sequenceParser#condition}.
|
|
421
|
-
* @param ctx the parse tree
|
|
422
|
-
* @return the visitor result
|
|
423
|
-
*/
|
|
424
|
-
T visitCondition(sequenceParser.ConditionContext ctx);
|
|
425
|
-
}
|