@zenuml/core 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Integration/vanilla-js/index.html +31 -0
- package/LICENSE +21 -0
- package/README.md +81 -0
- package/README_CN.md +15 -0
- package/antlr/antlr-4.8-complete.jar +0 -0
- package/coverage/clover.xml +6 -0
- package/coverage/coverage-final.json +1 -0
- package/coverage/lcov-report/Interaction.vue.html +532 -0
- package/coverage/lcov-report/Owner.js.html +175 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +79 -0
- package/coverage/lcov-report/components/interaction/Interaction.vue.html +544 -0
- package/coverage/lcov-report/components/interaction/index.html +110 -0
- package/coverage/lcov-report/index.html +95 -0
- package/coverage/lcov-report/positioning/david/DavidEisenstat2.ts.html +196 -0
- package/coverage/lcov-report/positioning/david/index.html +110 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +170 -0
- package/coverage/lcov.info +0 -0
- package/cypress/fixtures/example.json +5 -0
- package/cypress/fixtures/profile.json +5 -0
- package/cypress/fixtures/users.json +232 -0
- 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 +64 -0
- package/cypress/plugins/index.js +30 -0
- package/cypress/support/commands.js +25 -0
- package/cypress/support/index.js +20 -0
- package/cypress/videos/smoke.spec.js.mp4 +0 -0
- package/cypress.json +7 -0
- package/dist/fonts/kalam-v15-latin-300.00bd845e.woff2 +0 -0
- package/dist/fonts/kalam-v15-latin-300.1c36b0ad.woff +0 -0
- package/dist/fonts/kalam-v15-latin-700.2a87f463.woff2 +0 -0
- package/dist/fonts/kalam-v15-latin-700.9ec0bbf1.woff +0 -0
- package/dist/fonts/kalam-v15-latin-regular.4c0c4df4.woff +0 -0
- package/dist/fonts/kalam-v15-latin-regular.e4d4907f.woff2 +0 -0
- package/dist/vue-sequence.css +7 -0
- package/dist/vue-sequence.umd.min.js +12 -0
- package/docs/asciidoc/contributor.adoc +79 -0
- package/docs/asciidoc/create-my-own-theme.adoc +25 -0
- package/docs/asciidoc/images/creation-component.png +0 -0
- package/docs/asciidoc/images/creation-rtl.png +0 -0
- package/docs/asciidoc/images/message-arrow-rtl.png +0 -0
- package/docs/asciidoc/images/occurrence.png +0 -0
- package/docs/asciidoc/images/return-message-conflict.png +0 -0
- package/docs/asciidoc/images/shift-up-half-the-height.png +0 -0
- package/docs/asciidoc/images/vertical-alignment.svg +1 -0
- package/docs/asciidoc/images/vertically-aligning.png +0 -0
- package/docs/asciidoc/index.adoc +277 -0
- package/docs/asciidoc/integration-guide.adoc +121 -0
- package/docs/asciidoc/tutorial.adoc +22 -0
- package/docs/async-vs-sync-parser-rules.md +78 -0
- package/docs/handling-starter.png +0 -0
- package/docs/highlighting-messages.md +47 -0
- package/docs/inherited-vs-provided-from.md +59 -0
- package/docs/invalid-host-header-error.md +20 -0
- package/docs/osx-unsupported-arm64-node12.md +13 -0
- package/docs/participants-function.md +27 -0
- package/docs/responsive-participant-margin.md +52 -0
- package/docs/starter.md +8 -0
- package/docs/testing-minified-lib.md +29 -0
- package/docs/watch.md +1 -0
- package/docs/why-we-publish-embed-view-to-github-pages.md +15 -0
- package/docs/width-translate-and-offsets.md +54 -0
- package/gen/css3.interp +214 -0
- package/gen/css3.tokens +92 -0
- package/gen/css3BaseListener.java +1106 -0
- package/gen/css3BaseVisitor.java +636 -0
- package/gen/css3Lexer.interp +251 -0
- package/gen/css3Lexer.java +672 -0
- package/gen/css3Lexer.tokens +92 -0
- package/gen/css3Listener.java +939 -0
- package/gen/css3Parser.java +8113 -0
- package/gen/css3Visitor.java +566 -0
- package/gen/sequenceLexer.interp +206 -0
- package/gen/sequenceLexer.java +419 -0
- package/gen/sequenceLexer.tokens +104 -0
- package/gen/sequenceParser.interp +180 -0
- package/gen/sequenceParser.java +4659 -0
- package/gen/sequenceParser.tokens +101 -0
- package/gen/sequenceParserBaseListener.java +830 -0
- package/gen/sequenceParserBaseVisitor.java +475 -0
- package/gen/sequenceParserListener.java +703 -0
- package/gen/sequenceParserVisitor.java +425 -0
- package/package.json +133 -0
- package/playground/creation.html +32 -0
- package/playground/message.html +39 -0
- package/tailwind.config.js +15 -0
- package/types/index.d.ts +34 -0
- package/vue.config.spec.js +53 -0
|
@@ -0,0 +1,475 @@
|
|
|
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.AbstractParseTreeVisitor;
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* This class provides an empty implementation of {@link sequenceParserVisitor},
|
|
6
|
+
* which can be extended to create a visitor which only needs to handle a subset
|
|
7
|
+
* of the available methods.
|
|
8
|
+
*
|
|
9
|
+
* @param <T> The return type of the visit operation. Use {@link Void} for
|
|
10
|
+
* operations with no return type.
|
|
11
|
+
*/
|
|
12
|
+
public class sequenceParserBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements sequenceParserVisitor<T> {
|
|
13
|
+
/**
|
|
14
|
+
* {@inheritDoc}
|
|
15
|
+
*
|
|
16
|
+
* <p>The default implementation returns the result of calling
|
|
17
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
18
|
+
*/
|
|
19
|
+
@Override public T visitProg(sequenceParser.ProgContext ctx) { return visitChildren(ctx); }
|
|
20
|
+
/**
|
|
21
|
+
* {@inheritDoc}
|
|
22
|
+
*
|
|
23
|
+
* <p>The default implementation returns the result of calling
|
|
24
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
25
|
+
*/
|
|
26
|
+
@Override public T visitTitle(sequenceParser.TitleContext ctx) { return visitChildren(ctx); }
|
|
27
|
+
/**
|
|
28
|
+
* {@inheritDoc}
|
|
29
|
+
*
|
|
30
|
+
* <p>The default implementation returns the result of calling
|
|
31
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
32
|
+
*/
|
|
33
|
+
@Override public T visitHead(sequenceParser.HeadContext ctx) { return visitChildren(ctx); }
|
|
34
|
+
/**
|
|
35
|
+
* {@inheritDoc}
|
|
36
|
+
*
|
|
37
|
+
* <p>The default implementation returns the result of calling
|
|
38
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
39
|
+
*/
|
|
40
|
+
@Override public T visitGroup(sequenceParser.GroupContext ctx) { return visitChildren(ctx); }
|
|
41
|
+
/**
|
|
42
|
+
* {@inheritDoc}
|
|
43
|
+
*
|
|
44
|
+
* <p>The default implementation returns the result of calling
|
|
45
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
46
|
+
*/
|
|
47
|
+
@Override public T visitStarterExp(sequenceParser.StarterExpContext ctx) { return visitChildren(ctx); }
|
|
48
|
+
/**
|
|
49
|
+
* {@inheritDoc}
|
|
50
|
+
*
|
|
51
|
+
* <p>The default implementation returns the result of calling
|
|
52
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
53
|
+
*/
|
|
54
|
+
@Override public T visitStarter(sequenceParser.StarterContext ctx) { return visitChildren(ctx); }
|
|
55
|
+
/**
|
|
56
|
+
* {@inheritDoc}
|
|
57
|
+
*
|
|
58
|
+
* <p>The default implementation returns the result of calling
|
|
59
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
60
|
+
*/
|
|
61
|
+
@Override public T visitParticipant(sequenceParser.ParticipantContext ctx) { return visitChildren(ctx); }
|
|
62
|
+
/**
|
|
63
|
+
* {@inheritDoc}
|
|
64
|
+
*
|
|
65
|
+
* <p>The default implementation returns the result of calling
|
|
66
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
67
|
+
*/
|
|
68
|
+
@Override public T visitStereotype(sequenceParser.StereotypeContext ctx) { return visitChildren(ctx); }
|
|
69
|
+
/**
|
|
70
|
+
* {@inheritDoc}
|
|
71
|
+
*
|
|
72
|
+
* <p>The default implementation returns the result of calling
|
|
73
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
74
|
+
*/
|
|
75
|
+
@Override public T visitLabel(sequenceParser.LabelContext ctx) { return visitChildren(ctx); }
|
|
76
|
+
/**
|
|
77
|
+
* {@inheritDoc}
|
|
78
|
+
*
|
|
79
|
+
* <p>The default implementation returns the result of calling
|
|
80
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
81
|
+
*/
|
|
82
|
+
@Override public T visitParticipantType(sequenceParser.ParticipantTypeContext ctx) { return visitChildren(ctx); }
|
|
83
|
+
/**
|
|
84
|
+
* {@inheritDoc}
|
|
85
|
+
*
|
|
86
|
+
* <p>The default implementation returns the result of calling
|
|
87
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
88
|
+
*/
|
|
89
|
+
@Override public T visitName(sequenceParser.NameContext ctx) { return visitChildren(ctx); }
|
|
90
|
+
/**
|
|
91
|
+
* {@inheritDoc}
|
|
92
|
+
*
|
|
93
|
+
* <p>The default implementation returns the result of calling
|
|
94
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
95
|
+
*/
|
|
96
|
+
@Override public T visitWidth(sequenceParser.WidthContext ctx) { return visitChildren(ctx); }
|
|
97
|
+
/**
|
|
98
|
+
* {@inheritDoc}
|
|
99
|
+
*
|
|
100
|
+
* <p>The default implementation returns the result of calling
|
|
101
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
102
|
+
*/
|
|
103
|
+
@Override public T visitBlock(sequenceParser.BlockContext ctx) { return visitChildren(ctx); }
|
|
104
|
+
/**
|
|
105
|
+
* {@inheritDoc}
|
|
106
|
+
*
|
|
107
|
+
* <p>The default implementation returns the result of calling
|
|
108
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
109
|
+
*/
|
|
110
|
+
@Override public T visitRet(sequenceParser.RetContext ctx) { return visitChildren(ctx); }
|
|
111
|
+
/**
|
|
112
|
+
* {@inheritDoc}
|
|
113
|
+
*
|
|
114
|
+
* <p>The default implementation returns the result of calling
|
|
115
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
116
|
+
*/
|
|
117
|
+
@Override public T visitDivider(sequenceParser.DividerContext ctx) { return visitChildren(ctx); }
|
|
118
|
+
/**
|
|
119
|
+
* {@inheritDoc}
|
|
120
|
+
*
|
|
121
|
+
* <p>The default implementation returns the result of calling
|
|
122
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
123
|
+
*/
|
|
124
|
+
@Override public T visitStat(sequenceParser.StatContext ctx) { return visitChildren(ctx); }
|
|
125
|
+
/**
|
|
126
|
+
* {@inheritDoc}
|
|
127
|
+
*
|
|
128
|
+
* <p>The default implementation returns the result of calling
|
|
129
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
130
|
+
*/
|
|
131
|
+
@Override public T visitPar(sequenceParser.ParContext ctx) { return visitChildren(ctx); }
|
|
132
|
+
/**
|
|
133
|
+
* {@inheritDoc}
|
|
134
|
+
*
|
|
135
|
+
* <p>The default implementation returns the result of calling
|
|
136
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
137
|
+
*/
|
|
138
|
+
@Override public T visitOpt(sequenceParser.OptContext ctx) { return visitChildren(ctx); }
|
|
139
|
+
/**
|
|
140
|
+
* {@inheritDoc}
|
|
141
|
+
*
|
|
142
|
+
* <p>The default implementation returns the result of calling
|
|
143
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
144
|
+
*/
|
|
145
|
+
@Override public T visitCreation(sequenceParser.CreationContext ctx) { return visitChildren(ctx); }
|
|
146
|
+
/**
|
|
147
|
+
* {@inheritDoc}
|
|
148
|
+
*
|
|
149
|
+
* <p>The default implementation returns the result of calling
|
|
150
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
151
|
+
*/
|
|
152
|
+
@Override public T visitCreationBody(sequenceParser.CreationBodyContext ctx) { return visitChildren(ctx); }
|
|
153
|
+
/**
|
|
154
|
+
* {@inheritDoc}
|
|
155
|
+
*
|
|
156
|
+
* <p>The default implementation returns the result of calling
|
|
157
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
158
|
+
*/
|
|
159
|
+
@Override public T visitMessage(sequenceParser.MessageContext ctx) { return visitChildren(ctx); }
|
|
160
|
+
/**
|
|
161
|
+
* {@inheritDoc}
|
|
162
|
+
*
|
|
163
|
+
* <p>The default implementation returns the result of calling
|
|
164
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
165
|
+
*/
|
|
166
|
+
@Override public T visitMessageBody(sequenceParser.MessageBodyContext ctx) { return visitChildren(ctx); }
|
|
167
|
+
/**
|
|
168
|
+
* {@inheritDoc}
|
|
169
|
+
*
|
|
170
|
+
* <p>The default implementation returns the result of calling
|
|
171
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
172
|
+
*/
|
|
173
|
+
@Override public T visitFunc(sequenceParser.FuncContext ctx) { return visitChildren(ctx); }
|
|
174
|
+
/**
|
|
175
|
+
* {@inheritDoc}
|
|
176
|
+
*
|
|
177
|
+
* <p>The default implementation returns the result of calling
|
|
178
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
179
|
+
*/
|
|
180
|
+
@Override public T visitFrom(sequenceParser.FromContext ctx) { return visitChildren(ctx); }
|
|
181
|
+
/**
|
|
182
|
+
* {@inheritDoc}
|
|
183
|
+
*
|
|
184
|
+
* <p>The default implementation returns the result of calling
|
|
185
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
186
|
+
*/
|
|
187
|
+
@Override public T visitTo(sequenceParser.ToContext ctx) { return visitChildren(ctx); }
|
|
188
|
+
/**
|
|
189
|
+
* {@inheritDoc}
|
|
190
|
+
*
|
|
191
|
+
* <p>The default implementation returns the result of calling
|
|
192
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
193
|
+
*/
|
|
194
|
+
@Override public T visitSignature(sequenceParser.SignatureContext ctx) { return visitChildren(ctx); }
|
|
195
|
+
/**
|
|
196
|
+
* {@inheritDoc}
|
|
197
|
+
*
|
|
198
|
+
* <p>The default implementation returns the result of calling
|
|
199
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
200
|
+
*/
|
|
201
|
+
@Override public T visitInvocation(sequenceParser.InvocationContext ctx) { return visitChildren(ctx); }
|
|
202
|
+
/**
|
|
203
|
+
* {@inheritDoc}
|
|
204
|
+
*
|
|
205
|
+
* <p>The default implementation returns the result of calling
|
|
206
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
207
|
+
*/
|
|
208
|
+
@Override public T visitAssignment(sequenceParser.AssignmentContext ctx) { return visitChildren(ctx); }
|
|
209
|
+
/**
|
|
210
|
+
* {@inheritDoc}
|
|
211
|
+
*
|
|
212
|
+
* <p>The default implementation returns the result of calling
|
|
213
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
214
|
+
*/
|
|
215
|
+
@Override public T visitAsyncMessage(sequenceParser.AsyncMessageContext ctx) { return visitChildren(ctx); }
|
|
216
|
+
/**
|
|
217
|
+
* {@inheritDoc}
|
|
218
|
+
*
|
|
219
|
+
* <p>The default implementation returns the result of calling
|
|
220
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
221
|
+
*/
|
|
222
|
+
@Override public T visitContent(sequenceParser.ContentContext ctx) { return visitChildren(ctx); }
|
|
223
|
+
/**
|
|
224
|
+
* {@inheritDoc}
|
|
225
|
+
*
|
|
226
|
+
* <p>The default implementation returns the result of calling
|
|
227
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
228
|
+
*/
|
|
229
|
+
@Override public T visitConstruct(sequenceParser.ConstructContext ctx) { return visitChildren(ctx); }
|
|
230
|
+
/**
|
|
231
|
+
* {@inheritDoc}
|
|
232
|
+
*
|
|
233
|
+
* <p>The default implementation returns the result of calling
|
|
234
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
235
|
+
*/
|
|
236
|
+
@Override public T visitType(sequenceParser.TypeContext ctx) { return visitChildren(ctx); }
|
|
237
|
+
/**
|
|
238
|
+
* {@inheritDoc}
|
|
239
|
+
*
|
|
240
|
+
* <p>The default implementation returns the result of calling
|
|
241
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
242
|
+
*/
|
|
243
|
+
@Override public T visitAssignee(sequenceParser.AssigneeContext ctx) { return visitChildren(ctx); }
|
|
244
|
+
/**
|
|
245
|
+
* {@inheritDoc}
|
|
246
|
+
*
|
|
247
|
+
* <p>The default implementation returns the result of calling
|
|
248
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
249
|
+
*/
|
|
250
|
+
@Override public T visitMethodName(sequenceParser.MethodNameContext ctx) { return visitChildren(ctx); }
|
|
251
|
+
/**
|
|
252
|
+
* {@inheritDoc}
|
|
253
|
+
*
|
|
254
|
+
* <p>The default implementation returns the result of calling
|
|
255
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
256
|
+
*/
|
|
257
|
+
@Override public T visitParameters(sequenceParser.ParametersContext ctx) { return visitChildren(ctx); }
|
|
258
|
+
/**
|
|
259
|
+
* {@inheritDoc}
|
|
260
|
+
*
|
|
261
|
+
* <p>The default implementation returns the result of calling
|
|
262
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
263
|
+
*/
|
|
264
|
+
@Override public T visitParameter(sequenceParser.ParameterContext ctx) { return visitChildren(ctx); }
|
|
265
|
+
/**
|
|
266
|
+
* {@inheritDoc}
|
|
267
|
+
*
|
|
268
|
+
* <p>The default implementation returns the result of calling
|
|
269
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
270
|
+
*/
|
|
271
|
+
@Override public T visitDeclaration(sequenceParser.DeclarationContext ctx) { return visitChildren(ctx); }
|
|
272
|
+
/**
|
|
273
|
+
* {@inheritDoc}
|
|
274
|
+
*
|
|
275
|
+
* <p>The default implementation returns the result of calling
|
|
276
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
277
|
+
*/
|
|
278
|
+
@Override public T visitTcf(sequenceParser.TcfContext ctx) { return visitChildren(ctx); }
|
|
279
|
+
/**
|
|
280
|
+
* {@inheritDoc}
|
|
281
|
+
*
|
|
282
|
+
* <p>The default implementation returns the result of calling
|
|
283
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
284
|
+
*/
|
|
285
|
+
@Override public T visitTryBlock(sequenceParser.TryBlockContext ctx) { return visitChildren(ctx); }
|
|
286
|
+
/**
|
|
287
|
+
* {@inheritDoc}
|
|
288
|
+
*
|
|
289
|
+
* <p>The default implementation returns the result of calling
|
|
290
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
291
|
+
*/
|
|
292
|
+
@Override public T visitCatchBlock(sequenceParser.CatchBlockContext ctx) { return visitChildren(ctx); }
|
|
293
|
+
/**
|
|
294
|
+
* {@inheritDoc}
|
|
295
|
+
*
|
|
296
|
+
* <p>The default implementation returns the result of calling
|
|
297
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
298
|
+
*/
|
|
299
|
+
@Override public T visitFinallyBlock(sequenceParser.FinallyBlockContext ctx) { return visitChildren(ctx); }
|
|
300
|
+
/**
|
|
301
|
+
* {@inheritDoc}
|
|
302
|
+
*
|
|
303
|
+
* <p>The default implementation returns the result of calling
|
|
304
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
305
|
+
*/
|
|
306
|
+
@Override public T visitAlt(sequenceParser.AltContext ctx) { return visitChildren(ctx); }
|
|
307
|
+
/**
|
|
308
|
+
* {@inheritDoc}
|
|
309
|
+
*
|
|
310
|
+
* <p>The default implementation returns the result of calling
|
|
311
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
312
|
+
*/
|
|
313
|
+
@Override public T visitIfBlock(sequenceParser.IfBlockContext ctx) { return visitChildren(ctx); }
|
|
314
|
+
/**
|
|
315
|
+
* {@inheritDoc}
|
|
316
|
+
*
|
|
317
|
+
* <p>The default implementation returns the result of calling
|
|
318
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
319
|
+
*/
|
|
320
|
+
@Override public T visitElseIfBlock(sequenceParser.ElseIfBlockContext ctx) { return visitChildren(ctx); }
|
|
321
|
+
/**
|
|
322
|
+
* {@inheritDoc}
|
|
323
|
+
*
|
|
324
|
+
* <p>The default implementation returns the result of calling
|
|
325
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
326
|
+
*/
|
|
327
|
+
@Override public T visitElseBlock(sequenceParser.ElseBlockContext ctx) { return visitChildren(ctx); }
|
|
328
|
+
/**
|
|
329
|
+
* {@inheritDoc}
|
|
330
|
+
*
|
|
331
|
+
* <p>The default implementation returns the result of calling
|
|
332
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
333
|
+
*/
|
|
334
|
+
@Override public T visitBraceBlock(sequenceParser.BraceBlockContext ctx) { return visitChildren(ctx); }
|
|
335
|
+
/**
|
|
336
|
+
* {@inheritDoc}
|
|
337
|
+
*
|
|
338
|
+
* <p>The default implementation returns the result of calling
|
|
339
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
340
|
+
*/
|
|
341
|
+
@Override public T visitLoop(sequenceParser.LoopContext ctx) { return visitChildren(ctx); }
|
|
342
|
+
/**
|
|
343
|
+
* {@inheritDoc}
|
|
344
|
+
*
|
|
345
|
+
* <p>The default implementation returns the result of calling
|
|
346
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
347
|
+
*/
|
|
348
|
+
@Override public T visitNotExpr(sequenceParser.NotExprContext ctx) { return visitChildren(ctx); }
|
|
349
|
+
/**
|
|
350
|
+
* {@inheritDoc}
|
|
351
|
+
*
|
|
352
|
+
* <p>The default implementation returns the result of calling
|
|
353
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
354
|
+
*/
|
|
355
|
+
@Override public T visitFuncExpr(sequenceParser.FuncExprContext ctx) { return visitChildren(ctx); }
|
|
356
|
+
/**
|
|
357
|
+
* {@inheritDoc}
|
|
358
|
+
*
|
|
359
|
+
* <p>The default implementation returns the result of calling
|
|
360
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
361
|
+
*/
|
|
362
|
+
@Override public T visitUnaryMinusExpr(sequenceParser.UnaryMinusExprContext ctx) { return visitChildren(ctx); }
|
|
363
|
+
/**
|
|
364
|
+
* {@inheritDoc}
|
|
365
|
+
*
|
|
366
|
+
* <p>The default implementation returns the result of calling
|
|
367
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
368
|
+
*/
|
|
369
|
+
@Override public T visitCreationExpr(sequenceParser.CreationExprContext ctx) { return visitChildren(ctx); }
|
|
370
|
+
/**
|
|
371
|
+
* {@inheritDoc}
|
|
372
|
+
*
|
|
373
|
+
* <p>The default implementation returns the result of calling
|
|
374
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
375
|
+
*/
|
|
376
|
+
@Override public T visitMultiplicationExpr(sequenceParser.MultiplicationExprContext ctx) { return visitChildren(ctx); }
|
|
377
|
+
/**
|
|
378
|
+
* {@inheritDoc}
|
|
379
|
+
*
|
|
380
|
+
* <p>The default implementation returns the result of calling
|
|
381
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
382
|
+
*/
|
|
383
|
+
@Override public T visitAtomExpr(sequenceParser.AtomExprContext ctx) { return visitChildren(ctx); }
|
|
384
|
+
/**
|
|
385
|
+
* {@inheritDoc}
|
|
386
|
+
*
|
|
387
|
+
* <p>The default implementation returns the result of calling
|
|
388
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
389
|
+
*/
|
|
390
|
+
@Override public T visitOrExpr(sequenceParser.OrExprContext ctx) { return visitChildren(ctx); }
|
|
391
|
+
/**
|
|
392
|
+
* {@inheritDoc}
|
|
393
|
+
*
|
|
394
|
+
* <p>The default implementation returns the result of calling
|
|
395
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
396
|
+
*/
|
|
397
|
+
@Override public T visitAdditiveExpr(sequenceParser.AdditiveExprContext ctx) { return visitChildren(ctx); }
|
|
398
|
+
/**
|
|
399
|
+
* {@inheritDoc}
|
|
400
|
+
*
|
|
401
|
+
* <p>The default implementation returns the result of calling
|
|
402
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
403
|
+
*/
|
|
404
|
+
@Override public T visitRelationalExpr(sequenceParser.RelationalExprContext ctx) { return visitChildren(ctx); }
|
|
405
|
+
/**
|
|
406
|
+
* {@inheritDoc}
|
|
407
|
+
*
|
|
408
|
+
* <p>The default implementation returns the result of calling
|
|
409
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
410
|
+
*/
|
|
411
|
+
@Override public T visitEqualityExpr(sequenceParser.EqualityExprContext ctx) { return visitChildren(ctx); }
|
|
412
|
+
/**
|
|
413
|
+
* {@inheritDoc}
|
|
414
|
+
*
|
|
415
|
+
* <p>The default implementation returns the result of calling
|
|
416
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
417
|
+
*/
|
|
418
|
+
@Override public T visitPlusExpr(sequenceParser.PlusExprContext ctx) { return visitChildren(ctx); }
|
|
419
|
+
/**
|
|
420
|
+
* {@inheritDoc}
|
|
421
|
+
*
|
|
422
|
+
* <p>The default implementation returns the result of calling
|
|
423
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
424
|
+
*/
|
|
425
|
+
@Override public T visitAndExpr(sequenceParser.AndExprContext ctx) { return visitChildren(ctx); }
|
|
426
|
+
/**
|
|
427
|
+
* {@inheritDoc}
|
|
428
|
+
*
|
|
429
|
+
* <p>The default implementation returns the result of calling
|
|
430
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
431
|
+
*/
|
|
432
|
+
@Override public T visitNumberAtom(sequenceParser.NumberAtomContext ctx) { return visitChildren(ctx); }
|
|
433
|
+
/**
|
|
434
|
+
* {@inheritDoc}
|
|
435
|
+
*
|
|
436
|
+
* <p>The default implementation returns the result of calling
|
|
437
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
438
|
+
*/
|
|
439
|
+
@Override public T visitBooleanAtom(sequenceParser.BooleanAtomContext ctx) { return visitChildren(ctx); }
|
|
440
|
+
/**
|
|
441
|
+
* {@inheritDoc}
|
|
442
|
+
*
|
|
443
|
+
* <p>The default implementation returns the result of calling
|
|
444
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
445
|
+
*/
|
|
446
|
+
@Override public T visitIdAtom(sequenceParser.IdAtomContext ctx) { return visitChildren(ctx); }
|
|
447
|
+
/**
|
|
448
|
+
* {@inheritDoc}
|
|
449
|
+
*
|
|
450
|
+
* <p>The default implementation returns the result of calling
|
|
451
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
452
|
+
*/
|
|
453
|
+
@Override public T visitStringAtom(sequenceParser.StringAtomContext ctx) { return visitChildren(ctx); }
|
|
454
|
+
/**
|
|
455
|
+
* {@inheritDoc}
|
|
456
|
+
*
|
|
457
|
+
* <p>The default implementation returns the result of calling
|
|
458
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
459
|
+
*/
|
|
460
|
+
@Override public T visitNilAtom(sequenceParser.NilAtomContext ctx) { return visitChildren(ctx); }
|
|
461
|
+
/**
|
|
462
|
+
* {@inheritDoc}
|
|
463
|
+
*
|
|
464
|
+
* <p>The default implementation returns the result of calling
|
|
465
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
466
|
+
*/
|
|
467
|
+
@Override public T visitParExpr(sequenceParser.ParExprContext ctx) { return visitChildren(ctx); }
|
|
468
|
+
/**
|
|
469
|
+
* {@inheritDoc}
|
|
470
|
+
*
|
|
471
|
+
* <p>The default implementation returns the result of calling
|
|
472
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
473
|
+
*/
|
|
474
|
+
@Override public T visitCondition(sequenceParser.ConditionContext ctx) { return visitChildren(ctx); }
|
|
475
|
+
}
|