@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,636 @@
|
|
|
1
|
+
// Generated from /Users/pengxiao/workspaces/zenuml/vue-sequence/src/g4-units/css3.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 css3Visitor},
|
|
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 css3BaseVisitor<T> extends AbstractParseTreeVisitor<T> implements css3Visitor<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 visitStylesheet(css3Parser.StylesheetContext 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 visitGoodCharset(css3Parser.GoodCharsetContext 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 visitBadCharset(css3Parser.BadCharsetContext 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 visitGoodImport(css3Parser.GoodImportContext 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 visitBadImport(css3Parser.BadImportContext 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 visitGoodNamespace(css3Parser.GoodNamespaceContext 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 visitBadNamespace(css3Parser.BadNamespaceContext 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 visitNamespacePrefix(css3Parser.NamespacePrefixContext 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 visitMedia(css3Parser.MediaContext 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 visitMediaQueryList(css3Parser.MediaQueryListContext 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 visitMediaQuery(css3Parser.MediaQueryContext 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 visitMediaType(css3Parser.MediaTypeContext 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 visitMediaExpression(css3Parser.MediaExpressionContext 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 visitMediaFeature(css3Parser.MediaFeatureContext 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 visitPage(css3Parser.PageContext 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 visitPseudoPage(css3Parser.PseudoPageContext 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 visitSelectorGroup(css3Parser.SelectorGroupContext 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 visitSelector(css3Parser.SelectorContext 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 visitCombinator(css3Parser.CombinatorContext 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 visitSimpleSelectorSequence(css3Parser.SimpleSelectorSequenceContext 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 visitTypeSelector(css3Parser.TypeSelectorContext 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 visitTypeNamespacePrefix(css3Parser.TypeNamespacePrefixContext 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 visitElementName(css3Parser.ElementNameContext 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 visitUniversal(css3Parser.UniversalContext 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 visitClassName(css3Parser.ClassNameContext 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 visitAttrib(css3Parser.AttribContext 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 visitPseudo(css3Parser.PseudoContext 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 visitFunctionalPseudo(css3Parser.FunctionalPseudoContext 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 visitExpression(css3Parser.ExpressionContext 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 visitNegation(css3Parser.NegationContext 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 visitNegationArg(css3Parser.NegationArgContext 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 visitGoodOperator(css3Parser.GoodOperatorContext 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 visitBadOperator(css3Parser.BadOperatorContext 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 visitGoodProperty(css3Parser.GoodPropertyContext 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 visitBadProperty(css3Parser.BadPropertyContext 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 visitKnownRuleset(css3Parser.KnownRulesetContext 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 visitUnknownRuleset(css3Parser.UnknownRulesetContext 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 visitDeclarationList(css3Parser.DeclarationListContext 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 visitKnownDeclaration(css3Parser.KnownDeclarationContext 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 visitUnknownDeclaration(css3Parser.UnknownDeclarationContext 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 visitPrio(css3Parser.PrioContext 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 visitValue(css3Parser.ValueContext 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 visitExpr(css3Parser.ExprContext 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 visitKnownTerm(css3Parser.KnownTermContext 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 visitUnknownTerm(css3Parser.UnknownTermContext 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 visitBadTerm(css3Parser.BadTermContext 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 visitFunction_(css3Parser.Function_Context 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 visitDxImageTransform(css3Parser.DxImageTransformContext 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 visitHexcolor(css3Parser.HexcolorContext 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 visitNumber(css3Parser.NumberContext 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 visitPercentage(css3Parser.PercentageContext 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 visitDimension(css3Parser.DimensionContext 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 visitUnknownDimension(css3Parser.UnknownDimensionContext 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 visitAny_(css3Parser.Any_Context 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 visitUnknownAtRule(css3Parser.UnknownAtRuleContext 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 visitAtKeyword(css3Parser.AtKeywordContext 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 visitUnused(css3Parser.UnusedContext 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 visitBlock(css3Parser.BlockContext 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 visitNestedStatement(css3Parser.NestedStatementContext 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 visitGroupRuleBody(css3Parser.GroupRuleBodyContext 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 visitSupportsRule(css3Parser.SupportsRuleContext 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 visitSupportsCondition(css3Parser.SupportsConditionContext 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 visitSupportsConditionInParens(css3Parser.SupportsConditionInParensContext 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 visitSupportsNegation(css3Parser.SupportsNegationContext 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 visitSupportsConjunction(css3Parser.SupportsConjunctionContext 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 visitSupportsDisjunction(css3Parser.SupportsDisjunctionContext ctx) { return visitChildren(ctx); }
|
|
475
|
+
/**
|
|
476
|
+
* {@inheritDoc}
|
|
477
|
+
*
|
|
478
|
+
* <p>The default implementation returns the result of calling
|
|
479
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
480
|
+
*/
|
|
481
|
+
@Override public T visitSupportsDeclarationCondition(css3Parser.SupportsDeclarationConditionContext ctx) { return visitChildren(ctx); }
|
|
482
|
+
/**
|
|
483
|
+
* {@inheritDoc}
|
|
484
|
+
*
|
|
485
|
+
* <p>The default implementation returns the result of calling
|
|
486
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
487
|
+
*/
|
|
488
|
+
@Override public T visitGeneralEnclosed(css3Parser.GeneralEnclosedContext ctx) { return visitChildren(ctx); }
|
|
489
|
+
/**
|
|
490
|
+
* {@inheritDoc}
|
|
491
|
+
*
|
|
492
|
+
* <p>The default implementation returns the result of calling
|
|
493
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
494
|
+
*/
|
|
495
|
+
@Override public T visitVar_(css3Parser.Var_Context ctx) { return visitChildren(ctx); }
|
|
496
|
+
/**
|
|
497
|
+
* {@inheritDoc}
|
|
498
|
+
*
|
|
499
|
+
* <p>The default implementation returns the result of calling
|
|
500
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
501
|
+
*/
|
|
502
|
+
@Override public T visitCalc(css3Parser.CalcContext ctx) { return visitChildren(ctx); }
|
|
503
|
+
/**
|
|
504
|
+
* {@inheritDoc}
|
|
505
|
+
*
|
|
506
|
+
* <p>The default implementation returns the result of calling
|
|
507
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
508
|
+
*/
|
|
509
|
+
@Override public T visitCalcSum(css3Parser.CalcSumContext ctx) { return visitChildren(ctx); }
|
|
510
|
+
/**
|
|
511
|
+
* {@inheritDoc}
|
|
512
|
+
*
|
|
513
|
+
* <p>The default implementation returns the result of calling
|
|
514
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
515
|
+
*/
|
|
516
|
+
@Override public T visitCalcProduct(css3Parser.CalcProductContext ctx) { return visitChildren(ctx); }
|
|
517
|
+
/**
|
|
518
|
+
* {@inheritDoc}
|
|
519
|
+
*
|
|
520
|
+
* <p>The default implementation returns the result of calling
|
|
521
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
522
|
+
*/
|
|
523
|
+
@Override public T visitCalcValue(css3Parser.CalcValueContext ctx) { return visitChildren(ctx); }
|
|
524
|
+
/**
|
|
525
|
+
* {@inheritDoc}
|
|
526
|
+
*
|
|
527
|
+
* <p>The default implementation returns the result of calling
|
|
528
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
529
|
+
*/
|
|
530
|
+
@Override public T visitFontFaceRule(css3Parser.FontFaceRuleContext ctx) { return visitChildren(ctx); }
|
|
531
|
+
/**
|
|
532
|
+
* {@inheritDoc}
|
|
533
|
+
*
|
|
534
|
+
* <p>The default implementation returns the result of calling
|
|
535
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
536
|
+
*/
|
|
537
|
+
@Override public T visitKnownFontFaceDeclaration(css3Parser.KnownFontFaceDeclarationContext ctx) { return visitChildren(ctx); }
|
|
538
|
+
/**
|
|
539
|
+
* {@inheritDoc}
|
|
540
|
+
*
|
|
541
|
+
* <p>The default implementation returns the result of calling
|
|
542
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
543
|
+
*/
|
|
544
|
+
@Override public T visitUnknownFontFaceDeclaration(css3Parser.UnknownFontFaceDeclarationContext ctx) { return visitChildren(ctx); }
|
|
545
|
+
/**
|
|
546
|
+
* {@inheritDoc}
|
|
547
|
+
*
|
|
548
|
+
* <p>The default implementation returns the result of calling
|
|
549
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
550
|
+
*/
|
|
551
|
+
@Override public T visitKeyframesRule(css3Parser.KeyframesRuleContext ctx) { return visitChildren(ctx); }
|
|
552
|
+
/**
|
|
553
|
+
* {@inheritDoc}
|
|
554
|
+
*
|
|
555
|
+
* <p>The default implementation returns the result of calling
|
|
556
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
557
|
+
*/
|
|
558
|
+
@Override public T visitKeyframesBlocks(css3Parser.KeyframesBlocksContext ctx) { return visitChildren(ctx); }
|
|
559
|
+
/**
|
|
560
|
+
* {@inheritDoc}
|
|
561
|
+
*
|
|
562
|
+
* <p>The default implementation returns the result of calling
|
|
563
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
564
|
+
*/
|
|
565
|
+
@Override public T visitKeyframeSelector(css3Parser.KeyframeSelectorContext ctx) { return visitChildren(ctx); }
|
|
566
|
+
/**
|
|
567
|
+
* {@inheritDoc}
|
|
568
|
+
*
|
|
569
|
+
* <p>The default implementation returns the result of calling
|
|
570
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
571
|
+
*/
|
|
572
|
+
@Override public T visitViewport(css3Parser.ViewportContext ctx) { return visitChildren(ctx); }
|
|
573
|
+
/**
|
|
574
|
+
* {@inheritDoc}
|
|
575
|
+
*
|
|
576
|
+
* <p>The default implementation returns the result of calling
|
|
577
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
578
|
+
*/
|
|
579
|
+
@Override public T visitCounterStyle(css3Parser.CounterStyleContext ctx) { return visitChildren(ctx); }
|
|
580
|
+
/**
|
|
581
|
+
* {@inheritDoc}
|
|
582
|
+
*
|
|
583
|
+
* <p>The default implementation returns the result of calling
|
|
584
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
585
|
+
*/
|
|
586
|
+
@Override public T visitFontFeatureValuesRule(css3Parser.FontFeatureValuesRuleContext ctx) { return visitChildren(ctx); }
|
|
587
|
+
/**
|
|
588
|
+
* {@inheritDoc}
|
|
589
|
+
*
|
|
590
|
+
* <p>The default implementation returns the result of calling
|
|
591
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
592
|
+
*/
|
|
593
|
+
@Override public T visitFontFamilyNameList(css3Parser.FontFamilyNameListContext ctx) { return visitChildren(ctx); }
|
|
594
|
+
/**
|
|
595
|
+
* {@inheritDoc}
|
|
596
|
+
*
|
|
597
|
+
* <p>The default implementation returns the result of calling
|
|
598
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
599
|
+
*/
|
|
600
|
+
@Override public T visitFontFamilyName(css3Parser.FontFamilyNameContext ctx) { return visitChildren(ctx); }
|
|
601
|
+
/**
|
|
602
|
+
* {@inheritDoc}
|
|
603
|
+
*
|
|
604
|
+
* <p>The default implementation returns the result of calling
|
|
605
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
606
|
+
*/
|
|
607
|
+
@Override public T visitFeatureValueBlock(css3Parser.FeatureValueBlockContext ctx) { return visitChildren(ctx); }
|
|
608
|
+
/**
|
|
609
|
+
* {@inheritDoc}
|
|
610
|
+
*
|
|
611
|
+
* <p>The default implementation returns the result of calling
|
|
612
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
613
|
+
*/
|
|
614
|
+
@Override public T visitFeatureType(css3Parser.FeatureTypeContext ctx) { return visitChildren(ctx); }
|
|
615
|
+
/**
|
|
616
|
+
* {@inheritDoc}
|
|
617
|
+
*
|
|
618
|
+
* <p>The default implementation returns the result of calling
|
|
619
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
620
|
+
*/
|
|
621
|
+
@Override public T visitFeatureValueDefinition(css3Parser.FeatureValueDefinitionContext ctx) { return visitChildren(ctx); }
|
|
622
|
+
/**
|
|
623
|
+
* {@inheritDoc}
|
|
624
|
+
*
|
|
625
|
+
* <p>The default implementation returns the result of calling
|
|
626
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
627
|
+
*/
|
|
628
|
+
@Override public T visitIdent(css3Parser.IdentContext ctx) { return visitChildren(ctx); }
|
|
629
|
+
/**
|
|
630
|
+
* {@inheritDoc}
|
|
631
|
+
*
|
|
632
|
+
* <p>The default implementation returns the result of calling
|
|
633
|
+
* {@link #visitChildren} on {@code ctx}.</p>
|
|
634
|
+
*/
|
|
635
|
+
@Override public T visitWs(css3Parser.WsContext ctx) { return visitChildren(ctx); }
|
|
636
|
+
}
|