@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,566 +0,0 @@
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.ParseTreeVisitor;
3
-
4
- /**
5
- * This interface defines a complete generic visitor for a parse tree produced
6
- * by {@link css3Parser}.
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 css3Visitor<T> extends ParseTreeVisitor<T> {
12
- /**
13
- * Visit a parse tree produced by {@link css3Parser#stylesheet}.
14
- * @param ctx the parse tree
15
- * @return the visitor result
16
- */
17
- T visitStylesheet(css3Parser.StylesheetContext ctx);
18
- /**
19
- * Visit a parse tree produced by the {@code goodCharset}
20
- * labeled alternative in {@link css3Parser#charset}.
21
- * @param ctx the parse tree
22
- * @return the visitor result
23
- */
24
- T visitGoodCharset(css3Parser.GoodCharsetContext ctx);
25
- /**
26
- * Visit a parse tree produced by the {@code badCharset}
27
- * labeled alternative in {@link css3Parser#charset}.
28
- * @param ctx the parse tree
29
- * @return the visitor result
30
- */
31
- T visitBadCharset(css3Parser.BadCharsetContext ctx);
32
- /**
33
- * Visit a parse tree produced by the {@code goodImport}
34
- * labeled alternative in {@link css3Parser#imports}.
35
- * @param ctx the parse tree
36
- * @return the visitor result
37
- */
38
- T visitGoodImport(css3Parser.GoodImportContext ctx);
39
- /**
40
- * Visit a parse tree produced by the {@code badImport}
41
- * labeled alternative in {@link css3Parser#imports}.
42
- * @param ctx the parse tree
43
- * @return the visitor result
44
- */
45
- T visitBadImport(css3Parser.BadImportContext ctx);
46
- /**
47
- * Visit a parse tree produced by the {@code goodNamespace}
48
- * labeled alternative in {@link css3Parser#namespace_}.
49
- * @param ctx the parse tree
50
- * @return the visitor result
51
- */
52
- T visitGoodNamespace(css3Parser.GoodNamespaceContext ctx);
53
- /**
54
- * Visit a parse tree produced by the {@code badNamespace}
55
- * labeled alternative in {@link css3Parser#namespace_}.
56
- * @param ctx the parse tree
57
- * @return the visitor result
58
- */
59
- T visitBadNamespace(css3Parser.BadNamespaceContext ctx);
60
- /**
61
- * Visit a parse tree produced by {@link css3Parser#namespacePrefix}.
62
- * @param ctx the parse tree
63
- * @return the visitor result
64
- */
65
- T visitNamespacePrefix(css3Parser.NamespacePrefixContext ctx);
66
- /**
67
- * Visit a parse tree produced by {@link css3Parser#media}.
68
- * @param ctx the parse tree
69
- * @return the visitor result
70
- */
71
- T visitMedia(css3Parser.MediaContext ctx);
72
- /**
73
- * Visit a parse tree produced by {@link css3Parser#mediaQueryList}.
74
- * @param ctx the parse tree
75
- * @return the visitor result
76
- */
77
- T visitMediaQueryList(css3Parser.MediaQueryListContext ctx);
78
- /**
79
- * Visit a parse tree produced by {@link css3Parser#mediaQuery}.
80
- * @param ctx the parse tree
81
- * @return the visitor result
82
- */
83
- T visitMediaQuery(css3Parser.MediaQueryContext ctx);
84
- /**
85
- * Visit a parse tree produced by {@link css3Parser#mediaType}.
86
- * @param ctx the parse tree
87
- * @return the visitor result
88
- */
89
- T visitMediaType(css3Parser.MediaTypeContext ctx);
90
- /**
91
- * Visit a parse tree produced by {@link css3Parser#mediaExpression}.
92
- * @param ctx the parse tree
93
- * @return the visitor result
94
- */
95
- T visitMediaExpression(css3Parser.MediaExpressionContext ctx);
96
- /**
97
- * Visit a parse tree produced by {@link css3Parser#mediaFeature}.
98
- * @param ctx the parse tree
99
- * @return the visitor result
100
- */
101
- T visitMediaFeature(css3Parser.MediaFeatureContext ctx);
102
- /**
103
- * Visit a parse tree produced by {@link css3Parser#page}.
104
- * @param ctx the parse tree
105
- * @return the visitor result
106
- */
107
- T visitPage(css3Parser.PageContext ctx);
108
- /**
109
- * Visit a parse tree produced by {@link css3Parser#pseudoPage}.
110
- * @param ctx the parse tree
111
- * @return the visitor result
112
- */
113
- T visitPseudoPage(css3Parser.PseudoPageContext ctx);
114
- /**
115
- * Visit a parse tree produced by {@link css3Parser#selectorGroup}.
116
- * @param ctx the parse tree
117
- * @return the visitor result
118
- */
119
- T visitSelectorGroup(css3Parser.SelectorGroupContext ctx);
120
- /**
121
- * Visit a parse tree produced by {@link css3Parser#selector}.
122
- * @param ctx the parse tree
123
- * @return the visitor result
124
- */
125
- T visitSelector(css3Parser.SelectorContext ctx);
126
- /**
127
- * Visit a parse tree produced by {@link css3Parser#combinator}.
128
- * @param ctx the parse tree
129
- * @return the visitor result
130
- */
131
- T visitCombinator(css3Parser.CombinatorContext ctx);
132
- /**
133
- * Visit a parse tree produced by {@link css3Parser#simpleSelectorSequence}.
134
- * @param ctx the parse tree
135
- * @return the visitor result
136
- */
137
- T visitSimpleSelectorSequence(css3Parser.SimpleSelectorSequenceContext ctx);
138
- /**
139
- * Visit a parse tree produced by {@link css3Parser#typeSelector}.
140
- * @param ctx the parse tree
141
- * @return the visitor result
142
- */
143
- T visitTypeSelector(css3Parser.TypeSelectorContext ctx);
144
- /**
145
- * Visit a parse tree produced by {@link css3Parser#typeNamespacePrefix}.
146
- * @param ctx the parse tree
147
- * @return the visitor result
148
- */
149
- T visitTypeNamespacePrefix(css3Parser.TypeNamespacePrefixContext ctx);
150
- /**
151
- * Visit a parse tree produced by {@link css3Parser#elementName}.
152
- * @param ctx the parse tree
153
- * @return the visitor result
154
- */
155
- T visitElementName(css3Parser.ElementNameContext ctx);
156
- /**
157
- * Visit a parse tree produced by {@link css3Parser#universal}.
158
- * @param ctx the parse tree
159
- * @return the visitor result
160
- */
161
- T visitUniversal(css3Parser.UniversalContext ctx);
162
- /**
163
- * Visit a parse tree produced by {@link css3Parser#className}.
164
- * @param ctx the parse tree
165
- * @return the visitor result
166
- */
167
- T visitClassName(css3Parser.ClassNameContext ctx);
168
- /**
169
- * Visit a parse tree produced by {@link css3Parser#attrib}.
170
- * @param ctx the parse tree
171
- * @return the visitor result
172
- */
173
- T visitAttrib(css3Parser.AttribContext ctx);
174
- /**
175
- * Visit a parse tree produced by {@link css3Parser#pseudo}.
176
- * @param ctx the parse tree
177
- * @return the visitor result
178
- */
179
- T visitPseudo(css3Parser.PseudoContext ctx);
180
- /**
181
- * Visit a parse tree produced by {@link css3Parser#functionalPseudo}.
182
- * @param ctx the parse tree
183
- * @return the visitor result
184
- */
185
- T visitFunctionalPseudo(css3Parser.FunctionalPseudoContext ctx);
186
- /**
187
- * Visit a parse tree produced by {@link css3Parser#expression}.
188
- * @param ctx the parse tree
189
- * @return the visitor result
190
- */
191
- T visitExpression(css3Parser.ExpressionContext ctx);
192
- /**
193
- * Visit a parse tree produced by {@link css3Parser#negation}.
194
- * @param ctx the parse tree
195
- * @return the visitor result
196
- */
197
- T visitNegation(css3Parser.NegationContext ctx);
198
- /**
199
- * Visit a parse tree produced by {@link css3Parser#negationArg}.
200
- * @param ctx the parse tree
201
- * @return the visitor result
202
- */
203
- T visitNegationArg(css3Parser.NegationArgContext ctx);
204
- /**
205
- * Visit a parse tree produced by the {@code goodOperator}
206
- * labeled alternative in {@link css3Parser#operator_}.
207
- * @param ctx the parse tree
208
- * @return the visitor result
209
- */
210
- T visitGoodOperator(css3Parser.GoodOperatorContext ctx);
211
- /**
212
- * Visit a parse tree produced by the {@code badOperator}
213
- * labeled alternative in {@link css3Parser#operator_}.
214
- * @param ctx the parse tree
215
- * @return the visitor result
216
- */
217
- T visitBadOperator(css3Parser.BadOperatorContext ctx);
218
- /**
219
- * Visit a parse tree produced by the {@code goodProperty}
220
- * labeled alternative in {@link css3Parser#property_}.
221
- * @param ctx the parse tree
222
- * @return the visitor result
223
- */
224
- T visitGoodProperty(css3Parser.GoodPropertyContext ctx);
225
- /**
226
- * Visit a parse tree produced by the {@code badProperty}
227
- * labeled alternative in {@link css3Parser#property_}.
228
- * @param ctx the parse tree
229
- * @return the visitor result
230
- */
231
- T visitBadProperty(css3Parser.BadPropertyContext ctx);
232
- /**
233
- * Visit a parse tree produced by the {@code knownRuleset}
234
- * labeled alternative in {@link css3Parser#ruleset}.
235
- * @param ctx the parse tree
236
- * @return the visitor result
237
- */
238
- T visitKnownRuleset(css3Parser.KnownRulesetContext ctx);
239
- /**
240
- * Visit a parse tree produced by the {@code unknownRuleset}
241
- * labeled alternative in {@link css3Parser#ruleset}.
242
- * @param ctx the parse tree
243
- * @return the visitor result
244
- */
245
- T visitUnknownRuleset(css3Parser.UnknownRulesetContext ctx);
246
- /**
247
- * Visit a parse tree produced by {@link css3Parser#declarationList}.
248
- * @param ctx the parse tree
249
- * @return the visitor result
250
- */
251
- T visitDeclarationList(css3Parser.DeclarationListContext ctx);
252
- /**
253
- * Visit a parse tree produced by the {@code knownDeclaration}
254
- * labeled alternative in {@link css3Parser#declaration}.
255
- * @param ctx the parse tree
256
- * @return the visitor result
257
- */
258
- T visitKnownDeclaration(css3Parser.KnownDeclarationContext ctx);
259
- /**
260
- * Visit a parse tree produced by the {@code unknownDeclaration}
261
- * labeled alternative in {@link css3Parser#declaration}.
262
- * @param ctx the parse tree
263
- * @return the visitor result
264
- */
265
- T visitUnknownDeclaration(css3Parser.UnknownDeclarationContext ctx);
266
- /**
267
- * Visit a parse tree produced by {@link css3Parser#prio}.
268
- * @param ctx the parse tree
269
- * @return the visitor result
270
- */
271
- T visitPrio(css3Parser.PrioContext ctx);
272
- /**
273
- * Visit a parse tree produced by {@link css3Parser#value}.
274
- * @param ctx the parse tree
275
- * @return the visitor result
276
- */
277
- T visitValue(css3Parser.ValueContext ctx);
278
- /**
279
- * Visit a parse tree produced by {@link css3Parser#expr}.
280
- * @param ctx the parse tree
281
- * @return the visitor result
282
- */
283
- T visitExpr(css3Parser.ExprContext ctx);
284
- /**
285
- * Visit a parse tree produced by the {@code knownTerm}
286
- * labeled alternative in {@link css3Parser#term}.
287
- * @param ctx the parse tree
288
- * @return the visitor result
289
- */
290
- T visitKnownTerm(css3Parser.KnownTermContext ctx);
291
- /**
292
- * Visit a parse tree produced by the {@code unknownTerm}
293
- * labeled alternative in {@link css3Parser#term}.
294
- * @param ctx the parse tree
295
- * @return the visitor result
296
- */
297
- T visitUnknownTerm(css3Parser.UnknownTermContext ctx);
298
- /**
299
- * Visit a parse tree produced by the {@code badTerm}
300
- * labeled alternative in {@link css3Parser#term}.
301
- * @param ctx the parse tree
302
- * @return the visitor result
303
- */
304
- T visitBadTerm(css3Parser.BadTermContext ctx);
305
- /**
306
- * Visit a parse tree produced by {@link css3Parser#function_}.
307
- * @param ctx the parse tree
308
- * @return the visitor result
309
- */
310
- T visitFunction_(css3Parser.Function_Context ctx);
311
- /**
312
- * Visit a parse tree produced by {@link css3Parser#dxImageTransform}.
313
- * @param ctx the parse tree
314
- * @return the visitor result
315
- */
316
- T visitDxImageTransform(css3Parser.DxImageTransformContext ctx);
317
- /**
318
- * Visit a parse tree produced by {@link css3Parser#hexcolor}.
319
- * @param ctx the parse tree
320
- * @return the visitor result
321
- */
322
- T visitHexcolor(css3Parser.HexcolorContext ctx);
323
- /**
324
- * Visit a parse tree produced by {@link css3Parser#number}.
325
- * @param ctx the parse tree
326
- * @return the visitor result
327
- */
328
- T visitNumber(css3Parser.NumberContext ctx);
329
- /**
330
- * Visit a parse tree produced by {@link css3Parser#percentage}.
331
- * @param ctx the parse tree
332
- * @return the visitor result
333
- */
334
- T visitPercentage(css3Parser.PercentageContext ctx);
335
- /**
336
- * Visit a parse tree produced by {@link css3Parser#dimension}.
337
- * @param ctx the parse tree
338
- * @return the visitor result
339
- */
340
- T visitDimension(css3Parser.DimensionContext ctx);
341
- /**
342
- * Visit a parse tree produced by {@link css3Parser#unknownDimension}.
343
- * @param ctx the parse tree
344
- * @return the visitor result
345
- */
346
- T visitUnknownDimension(css3Parser.UnknownDimensionContext ctx);
347
- /**
348
- * Visit a parse tree produced by {@link css3Parser#any_}.
349
- * @param ctx the parse tree
350
- * @return the visitor result
351
- */
352
- T visitAny_(css3Parser.Any_Context ctx);
353
- /**
354
- * Visit a parse tree produced by the {@code unknownAtRule}
355
- * labeled alternative in {@link css3Parser#atRule}.
356
- * @param ctx the parse tree
357
- * @return the visitor result
358
- */
359
- T visitUnknownAtRule(css3Parser.UnknownAtRuleContext ctx);
360
- /**
361
- * Visit a parse tree produced by {@link css3Parser#atKeyword}.
362
- * @param ctx the parse tree
363
- * @return the visitor result
364
- */
365
- T visitAtKeyword(css3Parser.AtKeywordContext ctx);
366
- /**
367
- * Visit a parse tree produced by {@link css3Parser#unused}.
368
- * @param ctx the parse tree
369
- * @return the visitor result
370
- */
371
- T visitUnused(css3Parser.UnusedContext ctx);
372
- /**
373
- * Visit a parse tree produced by {@link css3Parser#block}.
374
- * @param ctx the parse tree
375
- * @return the visitor result
376
- */
377
- T visitBlock(css3Parser.BlockContext ctx);
378
- /**
379
- * Visit a parse tree produced by {@link css3Parser#nestedStatement}.
380
- * @param ctx the parse tree
381
- * @return the visitor result
382
- */
383
- T visitNestedStatement(css3Parser.NestedStatementContext ctx);
384
- /**
385
- * Visit a parse tree produced by {@link css3Parser#groupRuleBody}.
386
- * @param ctx the parse tree
387
- * @return the visitor result
388
- */
389
- T visitGroupRuleBody(css3Parser.GroupRuleBodyContext ctx);
390
- /**
391
- * Visit a parse tree produced by {@link css3Parser#supportsRule}.
392
- * @param ctx the parse tree
393
- * @return the visitor result
394
- */
395
- T visitSupportsRule(css3Parser.SupportsRuleContext ctx);
396
- /**
397
- * Visit a parse tree produced by {@link css3Parser#supportsCondition}.
398
- * @param ctx the parse tree
399
- * @return the visitor result
400
- */
401
- T visitSupportsCondition(css3Parser.SupportsConditionContext ctx);
402
- /**
403
- * Visit a parse tree produced by {@link css3Parser#supportsConditionInParens}.
404
- * @param ctx the parse tree
405
- * @return the visitor result
406
- */
407
- T visitSupportsConditionInParens(css3Parser.SupportsConditionInParensContext ctx);
408
- /**
409
- * Visit a parse tree produced by {@link css3Parser#supportsNegation}.
410
- * @param ctx the parse tree
411
- * @return the visitor result
412
- */
413
- T visitSupportsNegation(css3Parser.SupportsNegationContext ctx);
414
- /**
415
- * Visit a parse tree produced by {@link css3Parser#supportsConjunction}.
416
- * @param ctx the parse tree
417
- * @return the visitor result
418
- */
419
- T visitSupportsConjunction(css3Parser.SupportsConjunctionContext ctx);
420
- /**
421
- * Visit a parse tree produced by {@link css3Parser#supportsDisjunction}.
422
- * @param ctx the parse tree
423
- * @return the visitor result
424
- */
425
- T visitSupportsDisjunction(css3Parser.SupportsDisjunctionContext ctx);
426
- /**
427
- * Visit a parse tree produced by {@link css3Parser#supportsDeclarationCondition}.
428
- * @param ctx the parse tree
429
- * @return the visitor result
430
- */
431
- T visitSupportsDeclarationCondition(css3Parser.SupportsDeclarationConditionContext ctx);
432
- /**
433
- * Visit a parse tree produced by {@link css3Parser#generalEnclosed}.
434
- * @param ctx the parse tree
435
- * @return the visitor result
436
- */
437
- T visitGeneralEnclosed(css3Parser.GeneralEnclosedContext ctx);
438
- /**
439
- * Visit a parse tree produced by {@link css3Parser#var_}.
440
- * @param ctx the parse tree
441
- * @return the visitor result
442
- */
443
- T visitVar_(css3Parser.Var_Context ctx);
444
- /**
445
- * Visit a parse tree produced by {@link css3Parser#calc}.
446
- * @param ctx the parse tree
447
- * @return the visitor result
448
- */
449
- T visitCalc(css3Parser.CalcContext ctx);
450
- /**
451
- * Visit a parse tree produced by {@link css3Parser#calcSum}.
452
- * @param ctx the parse tree
453
- * @return the visitor result
454
- */
455
- T visitCalcSum(css3Parser.CalcSumContext ctx);
456
- /**
457
- * Visit a parse tree produced by {@link css3Parser#calcProduct}.
458
- * @param ctx the parse tree
459
- * @return the visitor result
460
- */
461
- T visitCalcProduct(css3Parser.CalcProductContext ctx);
462
- /**
463
- * Visit a parse tree produced by {@link css3Parser#calcValue}.
464
- * @param ctx the parse tree
465
- * @return the visitor result
466
- */
467
- T visitCalcValue(css3Parser.CalcValueContext ctx);
468
- /**
469
- * Visit a parse tree produced by {@link css3Parser#fontFaceRule}.
470
- * @param ctx the parse tree
471
- * @return the visitor result
472
- */
473
- T visitFontFaceRule(css3Parser.FontFaceRuleContext ctx);
474
- /**
475
- * Visit a parse tree produced by the {@code knownFontFaceDeclaration}
476
- * labeled alternative in {@link css3Parser#fontFaceDeclaration}.
477
- * @param ctx the parse tree
478
- * @return the visitor result
479
- */
480
- T visitKnownFontFaceDeclaration(css3Parser.KnownFontFaceDeclarationContext ctx);
481
- /**
482
- * Visit a parse tree produced by the {@code unknownFontFaceDeclaration}
483
- * labeled alternative in {@link css3Parser#fontFaceDeclaration}.
484
- * @param ctx the parse tree
485
- * @return the visitor result
486
- */
487
- T visitUnknownFontFaceDeclaration(css3Parser.UnknownFontFaceDeclarationContext ctx);
488
- /**
489
- * Visit a parse tree produced by {@link css3Parser#keyframesRule}.
490
- * @param ctx the parse tree
491
- * @return the visitor result
492
- */
493
- T visitKeyframesRule(css3Parser.KeyframesRuleContext ctx);
494
- /**
495
- * Visit a parse tree produced by {@link css3Parser#keyframesBlocks}.
496
- * @param ctx the parse tree
497
- * @return the visitor result
498
- */
499
- T visitKeyframesBlocks(css3Parser.KeyframesBlocksContext ctx);
500
- /**
501
- * Visit a parse tree produced by {@link css3Parser#keyframeSelector}.
502
- * @param ctx the parse tree
503
- * @return the visitor result
504
- */
505
- T visitKeyframeSelector(css3Parser.KeyframeSelectorContext ctx);
506
- /**
507
- * Visit a parse tree produced by {@link css3Parser#viewport}.
508
- * @param ctx the parse tree
509
- * @return the visitor result
510
- */
511
- T visitViewport(css3Parser.ViewportContext ctx);
512
- /**
513
- * Visit a parse tree produced by {@link css3Parser#counterStyle}.
514
- * @param ctx the parse tree
515
- * @return the visitor result
516
- */
517
- T visitCounterStyle(css3Parser.CounterStyleContext ctx);
518
- /**
519
- * Visit a parse tree produced by {@link css3Parser#fontFeatureValuesRule}.
520
- * @param ctx the parse tree
521
- * @return the visitor result
522
- */
523
- T visitFontFeatureValuesRule(css3Parser.FontFeatureValuesRuleContext ctx);
524
- /**
525
- * Visit a parse tree produced by {@link css3Parser#fontFamilyNameList}.
526
- * @param ctx the parse tree
527
- * @return the visitor result
528
- */
529
- T visitFontFamilyNameList(css3Parser.FontFamilyNameListContext ctx);
530
- /**
531
- * Visit a parse tree produced by {@link css3Parser#fontFamilyName}.
532
- * @param ctx the parse tree
533
- * @return the visitor result
534
- */
535
- T visitFontFamilyName(css3Parser.FontFamilyNameContext ctx);
536
- /**
537
- * Visit a parse tree produced by {@link css3Parser#featureValueBlock}.
538
- * @param ctx the parse tree
539
- * @return the visitor result
540
- */
541
- T visitFeatureValueBlock(css3Parser.FeatureValueBlockContext ctx);
542
- /**
543
- * Visit a parse tree produced by {@link css3Parser#featureType}.
544
- * @param ctx the parse tree
545
- * @return the visitor result
546
- */
547
- T visitFeatureType(css3Parser.FeatureTypeContext ctx);
548
- /**
549
- * Visit a parse tree produced by {@link css3Parser#featureValueDefinition}.
550
- * @param ctx the parse tree
551
- * @return the visitor result
552
- */
553
- T visitFeatureValueDefinition(css3Parser.FeatureValueDefinitionContext ctx);
554
- /**
555
- * Visit a parse tree produced by {@link css3Parser#ident}.
556
- * @param ctx the parse tree
557
- * @return the visitor result
558
- */
559
- T visitIdent(css3Parser.IdentContext ctx);
560
- /**
561
- * Visit a parse tree produced by {@link css3Parser#ws}.
562
- * @param ctx the parse tree
563
- * @return the visitor result
564
- */
565
- T visitWs(css3Parser.WsContext ctx);
566
- }