sysmlpy 0.1.0__py3-none-any.whl

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 (143) hide show
  1. sysmlpy/__init__.py +226 -0
  2. sysmlpy/__main__.py +75 -0
  3. sysmlpy/antlr/README.md +146 -0
  4. sysmlpy/antlr/SysMLv2Lexer.interp +695 -0
  5. sysmlpy/antlr/SysMLv2Lexer.py +1123 -0
  6. sysmlpy/antlr/SysMLv2Lexer.tokens +444 -0
  7. sysmlpy/antlr/SysMLv2Parser.interp +960 -0
  8. sysmlpy/antlr/SysMLv2Parser.py +40750 -0
  9. sysmlpy/antlr/SysMLv2Parser.tokens +444 -0
  10. sysmlpy/antlr/SysMLv2ParserListener.py +4485 -0
  11. sysmlpy/antlr/SysMLv2ParserVisitor.py +2498 -0
  12. sysmlpy/antlr/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.interp +695 -0
  13. sysmlpy/antlr/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.py +1123 -0
  14. sysmlpy/antlr/src/sysmlpy/grammar/antlr4/SysMLv2Lexer.tokens +444 -0
  15. sysmlpy/antlr_parser.py +185 -0
  16. sysmlpy/antlr_visitor.py +10864 -0
  17. sysmlpy/definition.py +1115 -0
  18. sysmlpy/examples/attribute_values.py +161 -0
  19. sysmlpy/examples/part_attributes.py +139 -0
  20. sysmlpy/examples/tuples_sequences.py +231 -0
  21. sysmlpy/formatting.py +47 -0
  22. sysmlpy/grammar/antlr4/README.md +30 -0
  23. sysmlpy/grammar/antlr4/SysMLv2Lexer.g4 +931 -0
  24. sysmlpy/grammar/antlr4/SysMLv2Lexer.interp +695 -0
  25. sysmlpy/grammar/antlr4/SysMLv2Lexer.py +1123 -0
  26. sysmlpy/grammar/antlr4/SysMLv2Lexer.tokens +444 -0
  27. sysmlpy/grammar/antlr4/SysMLv2Parser.g4 +2432 -0
  28. sysmlpy/grammar/antlr4/SysMLv2Parser.interp +960 -0
  29. sysmlpy/grammar/antlr4/SysMLv2Parser.py +40750 -0
  30. sysmlpy/grammar/antlr4/SysMLv2Parser.tokens +444 -0
  31. sysmlpy/grammar/antlr4/SysMLv2ParserListener.py +4485 -0
  32. sysmlpy/grammar/antlr4/SysMLv2ParserVisitor.py +2498 -0
  33. sysmlpy/grammar/antlr4/desc.xml +7 -0
  34. sysmlpy/grammar/antlr4/examples/camera.sysml +14 -0
  35. sysmlpy/grammar/antlr4/examples/toaster-system.sysml +193 -0
  36. sysmlpy/grammar/antlr4/examples/vehicle-model.sysml +118 -0
  37. sysmlpy/grammar/antlr4/pom.xml +59 -0
  38. sysmlpy/grammar/classes.py +8610 -0
  39. sysmlpy/library/LICENSE +165 -0
  40. sysmlpy/library/README.md +52 -0
  41. sysmlpy/library/__init__.py +0 -0
  42. sysmlpy/library/domain/Analysis/AnalysisTooling.sysml +34 -0
  43. sysmlpy/library/domain/Analysis/SampledFunctions.sysml +119 -0
  44. sysmlpy/library/domain/Analysis/StateSpaceRepresentation.sysml +143 -0
  45. sysmlpy/library/domain/Analysis/TradeStudies.sysml +171 -0
  46. sysmlpy/library/domain/Cause and Effect/CausationConnections.sysml +83 -0
  47. sysmlpy/library/domain/Cause and Effect/CauseAndEffect.sysml +81 -0
  48. sysmlpy/library/domain/Geometry/ShapeItems.sysml +899 -0
  49. sysmlpy/library/domain/Geometry/SpatialItems.sysml +168 -0
  50. sysmlpy/library/domain/Metadata/ImageMetadata.sysml +78 -0
  51. sysmlpy/library/domain/Metadata/ModelingMetadata.sysml +143 -0
  52. sysmlpy/library/domain/Metadata/ParametersOfInterestMetadata.sysml +39 -0
  53. sysmlpy/library/domain/Metadata/RiskMetadata.sysml +100 -0
  54. sysmlpy/library/domain/Quantities and Units/ISQ.sysml +42 -0
  55. sysmlpy/library/domain/Quantities and Units/ISQAcoustics.sysml +439 -0
  56. sysmlpy/library/domain/Quantities and Units/ISQAtomicNuclear.sysml +2726 -0
  57. sysmlpy/library/domain/Quantities and Units/ISQBase.sysml +206 -0
  58. sysmlpy/library/domain/Quantities and Units/ISQCharacteristicNumbers.sysml +1991 -0
  59. sysmlpy/library/domain/Quantities and Units/ISQChemistryMolecular.sysml +1353 -0
  60. sysmlpy/library/domain/Quantities and Units/ISQCondensedMatter.sysml +1223 -0
  61. sysmlpy/library/domain/Quantities and Units/ISQElectromagnetism.sysml +2333 -0
  62. sysmlpy/library/domain/Quantities and Units/ISQInformation.sysml +958 -0
  63. sysmlpy/library/domain/Quantities and Units/ISQLight.sysml +1537 -0
  64. sysmlpy/library/domain/Quantities and Units/ISQMechanics.sysml +1564 -0
  65. sysmlpy/library/domain/Quantities and Units/ISQSpaceTime.sysml +1169 -0
  66. sysmlpy/library/domain/Quantities and Units/ISQThermodynamics.sysml +1256 -0
  67. sysmlpy/library/domain/Quantities and Units/MeasurementRefCalculations.sysml +30 -0
  68. sysmlpy/library/domain/Quantities and Units/MeasurementReferences.sysml +526 -0
  69. sysmlpy/library/domain/Quantities and Units/Quantities.sysml +107 -0
  70. sysmlpy/library/domain/Quantities and Units/QuantityCalculations.sysml +70 -0
  71. sysmlpy/library/domain/Quantities and Units/SI.sysml +378 -0
  72. sysmlpy/library/domain/Quantities and Units/SIPrefixes.sysml +48 -0
  73. sysmlpy/library/domain/Quantities and Units/TensorCalculations.sysml +50 -0
  74. sysmlpy/library/domain/Quantities and Units/Time.sysml +274 -0
  75. sysmlpy/library/domain/Quantities and Units/USCustomaryUnits.sysml +260 -0
  76. sysmlpy/library/domain/Quantities and Units/VectorCalculations.sysml +62 -0
  77. sysmlpy/library/domain/Requirement Derivation/DerivationConnections.sysml +63 -0
  78. sysmlpy/library/domain/Requirement Derivation/RequirementDerivation.sysml +39 -0
  79. sysmlpy/library/kernel/Base.kerml +95 -0
  80. sysmlpy/library/kernel/BaseFunctions.kerml +80 -0
  81. sysmlpy/library/kernel/BooleanFunctions.kerml +22 -0
  82. sysmlpy/library/kernel/Clocks.kerml +156 -0
  83. sysmlpy/library/kernel/CollectionFunctions.kerml +68 -0
  84. sysmlpy/library/kernel/Collections.kerml +147 -0
  85. sysmlpy/library/kernel/ComplexFunctions.kerml +47 -0
  86. sysmlpy/library/kernel/ControlFunctions.kerml +117 -0
  87. sysmlpy/library/kernel/ControlPerformances.kerml +135 -0
  88. sysmlpy/library/kernel/DataFunctions.kerml +43 -0
  89. sysmlpy/library/kernel/FeatureReferencingPerformances.kerml +190 -0
  90. sysmlpy/library/kernel/IntegerFunctions.kerml +43 -0
  91. sysmlpy/library/kernel/KerML.kerml +483 -0
  92. sysmlpy/library/kernel/Links.kerml +67 -0
  93. sysmlpy/library/kernel/Metaobjects.kerml +58 -0
  94. sysmlpy/library/kernel/NaturalFunctions.kerml +27 -0
  95. sysmlpy/library/kernel/NumericalFunctions.kerml +43 -0
  96. sysmlpy/library/kernel/Objects.kerml +212 -0
  97. sysmlpy/library/kernel/Observation.kerml +161 -0
  98. sysmlpy/library/kernel/OccurrenceFunctions.kerml +154 -0
  99. sysmlpy/library/kernel/Occurrences.kerml +992 -0
  100. sysmlpy/library/kernel/Performances.kerml +293 -0
  101. sysmlpy/library/kernel/RationalFunctions.kerml +49 -0
  102. sysmlpy/library/kernel/RealFunctions.kerml +56 -0
  103. sysmlpy/library/kernel/ScalarFunctions.kerml +33 -0
  104. sysmlpy/library/kernel/ScalarValues.kerml +23 -0
  105. sysmlpy/library/kernel/SequenceFunctions.kerml +111 -0
  106. sysmlpy/library/kernel/SpatialFrames.kerml +197 -0
  107. sysmlpy/library/kernel/StatePerformances.kerml +145 -0
  108. sysmlpy/library/kernel/StringFunctions.kerml +25 -0
  109. sysmlpy/library/kernel/Transfers.kerml +281 -0
  110. sysmlpy/library/kernel/TransitionPerformances.kerml +66 -0
  111. sysmlpy/library/kernel/TrigFunctions.kerml +35 -0
  112. sysmlpy/library/kernel/Triggers.kerml +188 -0
  113. sysmlpy/library/kernel/VectorFunctions.kerml +273 -0
  114. sysmlpy/library/kernel/VectorValues.kerml +64 -0
  115. sysmlpy/library/systems/Actions.sysml +552 -0
  116. sysmlpy/library/systems/Allocations.sysml +29 -0
  117. sysmlpy/library/systems/AnalysisCases.sysml +38 -0
  118. sysmlpy/library/systems/Attributes.sysml +25 -0
  119. sysmlpy/library/systems/Calculations.sysml +37 -0
  120. sysmlpy/library/systems/Cases.sysml +71 -0
  121. sysmlpy/library/systems/Connections.sysml +60 -0
  122. sysmlpy/library/systems/Constraints.sysml +44 -0
  123. sysmlpy/library/systems/Flows.sysml +126 -0
  124. sysmlpy/library/systems/Interfaces.sysml +89 -0
  125. sysmlpy/library/systems/Items.sysml +153 -0
  126. sysmlpy/library/systems/Metadata.sysml +32 -0
  127. sysmlpy/library/systems/Parts.sysml +81 -0
  128. sysmlpy/library/systems/Ports.sysml +54 -0
  129. sysmlpy/library/systems/Requirements.sysml +194 -0
  130. sysmlpy/library/systems/StandardViewDefinitions.sysml +123 -0
  131. sysmlpy/library/systems/States.sysml +103 -0
  132. sysmlpy/library/systems/SysML.sysml +539 -0
  133. sysmlpy/library/systems/UseCases.sysml +57 -0
  134. sysmlpy/library/systems/VerificationCases.sysml +103 -0
  135. sysmlpy/library/systems/Views.sysml +164 -0
  136. sysmlpy/navigate.py +272 -0
  137. sysmlpy/store.py +547 -0
  138. sysmlpy/usage.py +2978 -0
  139. sysmlpy-0.1.0.dist-info/METADATA +230 -0
  140. sysmlpy-0.1.0.dist-info/RECORD +143 -0
  141. sysmlpy-0.1.0.dist-info/WHEEL +4 -0
  142. sysmlpy-0.1.0.dist-info/entry_points.txt +3 -0
  143. sysmlpy-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,2498 @@
1
+ # Generated from SysMLv2Parser.g4 by ANTLR 4.13.0
2
+ from antlr4 import *
3
+ if "." in __name__:
4
+ from .SysMLv2Parser import SysMLv2Parser
5
+ else:
6
+ from SysMLv2Parser import SysMLv2Parser
7
+
8
+ # This class defines a complete generic visitor for a parse tree produced by SysMLv2Parser.
9
+
10
+ class SysMLv2ParserVisitor(ParseTreeVisitor):
11
+
12
+ # Visit a parse tree produced by SysMLv2Parser#ownedExpression.
13
+ def visitOwnedExpression(self, ctx:SysMLv2Parser.OwnedExpressionContext):
14
+ return self.visitChildren(ctx)
15
+
16
+
17
+ # Visit a parse tree produced by SysMLv2Parser#typeReference.
18
+ def visitTypeReference(self, ctx:SysMLv2Parser.TypeReferenceContext):
19
+ return self.visitChildren(ctx)
20
+
21
+
22
+ # Visit a parse tree produced by SysMLv2Parser#sequenceExpressionList.
23
+ def visitSequenceExpressionList(self, ctx:SysMLv2Parser.SequenceExpressionListContext):
24
+ return self.visitChildren(ctx)
25
+
26
+
27
+ # Visit a parse tree produced by SysMLv2Parser#baseExpression.
28
+ def visitBaseExpression(self, ctx:SysMLv2Parser.BaseExpressionContext):
29
+ return self.visitChildren(ctx)
30
+
31
+
32
+ # Visit a parse tree produced by SysMLv2Parser#nullExpression.
33
+ def visitNullExpression(self, ctx:SysMLv2Parser.NullExpressionContext):
34
+ return self.visitChildren(ctx)
35
+
36
+
37
+ # Visit a parse tree produced by SysMLv2Parser#featureReferenceExpression.
38
+ def visitFeatureReferenceExpression(self, ctx:SysMLv2Parser.FeatureReferenceExpressionContext):
39
+ return self.visitChildren(ctx)
40
+
41
+
42
+ # Visit a parse tree produced by SysMLv2Parser#metadataAccessExpression.
43
+ def visitMetadataAccessExpression(self, ctx:SysMLv2Parser.MetadataAccessExpressionContext):
44
+ return self.visitChildren(ctx)
45
+
46
+
47
+ # Visit a parse tree produced by SysMLv2Parser#invocationExpression.
48
+ def visitInvocationExpression(self, ctx:SysMLv2Parser.InvocationExpressionContext):
49
+ return self.visitChildren(ctx)
50
+
51
+
52
+ # Visit a parse tree produced by SysMLv2Parser#constructorExpression.
53
+ def visitConstructorExpression(self, ctx:SysMLv2Parser.ConstructorExpressionContext):
54
+ return self.visitChildren(ctx)
55
+
56
+
57
+ # Visit a parse tree produced by SysMLv2Parser#bodyExpression.
58
+ def visitBodyExpression(self, ctx:SysMLv2Parser.BodyExpressionContext):
59
+ return self.visitChildren(ctx)
60
+
61
+
62
+ # Visit a parse tree produced by SysMLv2Parser#argumentList.
63
+ def visitArgumentList(self, ctx:SysMLv2Parser.ArgumentListContext):
64
+ return self.visitChildren(ctx)
65
+
66
+
67
+ # Visit a parse tree produced by SysMLv2Parser#positionalArgumentList.
68
+ def visitPositionalArgumentList(self, ctx:SysMLv2Parser.PositionalArgumentListContext):
69
+ return self.visitChildren(ctx)
70
+
71
+
72
+ # Visit a parse tree produced by SysMLv2Parser#namedArgumentList.
73
+ def visitNamedArgumentList(self, ctx:SysMLv2Parser.NamedArgumentListContext):
74
+ return self.visitChildren(ctx)
75
+
76
+
77
+ # Visit a parse tree produced by SysMLv2Parser#namedArgument.
78
+ def visitNamedArgument(self, ctx:SysMLv2Parser.NamedArgumentContext):
79
+ return self.visitChildren(ctx)
80
+
81
+
82
+ # Visit a parse tree produced by SysMLv2Parser#literalExpression.
83
+ def visitLiteralExpression(self, ctx:SysMLv2Parser.LiteralExpressionContext):
84
+ return self.visitChildren(ctx)
85
+
86
+
87
+ # Visit a parse tree produced by SysMLv2Parser#literalBoolean.
88
+ def visitLiteralBoolean(self, ctx:SysMLv2Parser.LiteralBooleanContext):
89
+ return self.visitChildren(ctx)
90
+
91
+
92
+ # Visit a parse tree produced by SysMLv2Parser#literalString.
93
+ def visitLiteralString(self, ctx:SysMLv2Parser.LiteralStringContext):
94
+ return self.visitChildren(ctx)
95
+
96
+
97
+ # Visit a parse tree produced by SysMLv2Parser#literalInteger.
98
+ def visitLiteralInteger(self, ctx:SysMLv2Parser.LiteralIntegerContext):
99
+ return self.visitChildren(ctx)
100
+
101
+
102
+ # Visit a parse tree produced by SysMLv2Parser#literalReal.
103
+ def visitLiteralReal(self, ctx:SysMLv2Parser.LiteralRealContext):
104
+ return self.visitChildren(ctx)
105
+
106
+
107
+ # Visit a parse tree produced by SysMLv2Parser#literalInfinity.
108
+ def visitLiteralInfinity(self, ctx:SysMLv2Parser.LiteralInfinityContext):
109
+ return self.visitChildren(ctx)
110
+
111
+
112
+ # Visit a parse tree produced by SysMLv2Parser#argumentMember.
113
+ def visitArgumentMember(self, ctx:SysMLv2Parser.ArgumentMemberContext):
114
+ return self.visitChildren(ctx)
115
+
116
+
117
+ # Visit a parse tree produced by SysMLv2Parser#argumentExpressionMember.
118
+ def visitArgumentExpressionMember(self, ctx:SysMLv2Parser.ArgumentExpressionMemberContext):
119
+ return self.visitChildren(ctx)
120
+
121
+
122
+ # Visit a parse tree produced by SysMLv2Parser#name.
123
+ def visitName(self, ctx:SysMLv2Parser.NameContext):
124
+ return self.visitChildren(ctx)
125
+
126
+
127
+ # Visit a parse tree produced by SysMLv2Parser#unreservedKeyword.
128
+ def visitUnreservedKeyword(self, ctx:SysMLv2Parser.UnreservedKeywordContext):
129
+ return self.visitChildren(ctx)
130
+
131
+
132
+ # Visit a parse tree produced by SysMLv2Parser#identification.
133
+ def visitIdentification(self, ctx:SysMLv2Parser.IdentificationContext):
134
+ return self.visitChildren(ctx)
135
+
136
+
137
+ # Visit a parse tree produced by SysMLv2Parser#relationshipBody.
138
+ def visitRelationshipBody(self, ctx:SysMLv2Parser.RelationshipBodyContext):
139
+ return self.visitChildren(ctx)
140
+
141
+
142
+ # Visit a parse tree produced by SysMLv2Parser#relationshipOwnedElement.
143
+ def visitRelationshipOwnedElement(self, ctx:SysMLv2Parser.RelationshipOwnedElementContext):
144
+ return self.visitChildren(ctx)
145
+
146
+
147
+ # Visit a parse tree produced by SysMLv2Parser#ownedRelatedElement.
148
+ def visitOwnedRelatedElement(self, ctx:SysMLv2Parser.OwnedRelatedElementContext):
149
+ return self.visitChildren(ctx)
150
+
151
+
152
+ # Visit a parse tree produced by SysMLv2Parser#dependency.
153
+ def visitDependency(self, ctx:SysMLv2Parser.DependencyContext):
154
+ return self.visitChildren(ctx)
155
+
156
+
157
+ # Visit a parse tree produced by SysMLv2Parser#annotation.
158
+ def visitAnnotation(self, ctx:SysMLv2Parser.AnnotationContext):
159
+ return self.visitChildren(ctx)
160
+
161
+
162
+ # Visit a parse tree produced by SysMLv2Parser#ownedAnnotation.
163
+ def visitOwnedAnnotation(self, ctx:SysMLv2Parser.OwnedAnnotationContext):
164
+ return self.visitChildren(ctx)
165
+
166
+
167
+ # Visit a parse tree produced by SysMLv2Parser#annotatingElement.
168
+ def visitAnnotatingElement(self, ctx:SysMLv2Parser.AnnotatingElementContext):
169
+ return self.visitChildren(ctx)
170
+
171
+
172
+ # Visit a parse tree produced by SysMLv2Parser#comment.
173
+ def visitComment(self, ctx:SysMLv2Parser.CommentContext):
174
+ return self.visitChildren(ctx)
175
+
176
+
177
+ # Visit a parse tree produced by SysMLv2Parser#documentation.
178
+ def visitDocumentation(self, ctx:SysMLv2Parser.DocumentationContext):
179
+ return self.visitChildren(ctx)
180
+
181
+
182
+ # Visit a parse tree produced by SysMLv2Parser#textualRepresentation.
183
+ def visitTextualRepresentation(self, ctx:SysMLv2Parser.TextualRepresentationContext):
184
+ return self.visitChildren(ctx)
185
+
186
+
187
+ # Visit a parse tree produced by SysMLv2Parser#rootNamespace.
188
+ def visitRootNamespace(self, ctx:SysMLv2Parser.RootNamespaceContext):
189
+ return self.visitChildren(ctx)
190
+
191
+
192
+ # Visit a parse tree produced by SysMLv2Parser#namespace.
193
+ def visitNamespace(self, ctx:SysMLv2Parser.NamespaceContext):
194
+ return self.visitChildren(ctx)
195
+
196
+
197
+ # Visit a parse tree produced by SysMLv2Parser#namespaceDeclaration.
198
+ def visitNamespaceDeclaration(self, ctx:SysMLv2Parser.NamespaceDeclarationContext):
199
+ return self.visitChildren(ctx)
200
+
201
+
202
+ # Visit a parse tree produced by SysMLv2Parser#namespaceBody.
203
+ def visitNamespaceBody(self, ctx:SysMLv2Parser.NamespaceBodyContext):
204
+ return self.visitChildren(ctx)
205
+
206
+
207
+ # Visit a parse tree produced by SysMLv2Parser#namespaceBodyElement.
208
+ def visitNamespaceBodyElement(self, ctx:SysMLv2Parser.NamespaceBodyElementContext):
209
+ return self.visitChildren(ctx)
210
+
211
+
212
+ # Visit a parse tree produced by SysMLv2Parser#memberPrefix.
213
+ def visitMemberPrefix(self, ctx:SysMLv2Parser.MemberPrefixContext):
214
+ return self.visitChildren(ctx)
215
+
216
+
217
+ # Visit a parse tree produced by SysMLv2Parser#visibilityIndicator.
218
+ def visitVisibilityIndicator(self, ctx:SysMLv2Parser.VisibilityIndicatorContext):
219
+ return self.visitChildren(ctx)
220
+
221
+
222
+ # Visit a parse tree produced by SysMLv2Parser#namespaceMember.
223
+ def visitNamespaceMember(self, ctx:SysMLv2Parser.NamespaceMemberContext):
224
+ return self.visitChildren(ctx)
225
+
226
+
227
+ # Visit a parse tree produced by SysMLv2Parser#nonFeatureMember.
228
+ def visitNonFeatureMember(self, ctx:SysMLv2Parser.NonFeatureMemberContext):
229
+ return self.visitChildren(ctx)
230
+
231
+
232
+ # Visit a parse tree produced by SysMLv2Parser#namespaceFeatureMember.
233
+ def visitNamespaceFeatureMember(self, ctx:SysMLv2Parser.NamespaceFeatureMemberContext):
234
+ return self.visitChildren(ctx)
235
+
236
+
237
+ # Visit a parse tree produced by SysMLv2Parser#aliasMember.
238
+ def visitAliasMember(self, ctx:SysMLv2Parser.AliasMemberContext):
239
+ return self.visitChildren(ctx)
240
+
241
+
242
+ # Visit a parse tree produced by SysMLv2Parser#qualifiedName.
243
+ def visitQualifiedName(self, ctx:SysMLv2Parser.QualifiedNameContext):
244
+ return self.visitChildren(ctx)
245
+
246
+
247
+ # Visit a parse tree produced by SysMLv2Parser#importRule.
248
+ def visitImportRule(self, ctx:SysMLv2Parser.ImportRuleContext):
249
+ return self.visitChildren(ctx)
250
+
251
+
252
+ # Visit a parse tree produced by SysMLv2Parser#importDeclaration.
253
+ def visitImportDeclaration(self, ctx:SysMLv2Parser.ImportDeclarationContext):
254
+ return self.visitChildren(ctx)
255
+
256
+
257
+ # Visit a parse tree produced by SysMLv2Parser#membershipImport.
258
+ def visitMembershipImport(self, ctx:SysMLv2Parser.MembershipImportContext):
259
+ return self.visitChildren(ctx)
260
+
261
+
262
+ # Visit a parse tree produced by SysMLv2Parser#namespaceImport.
263
+ def visitNamespaceImport(self, ctx:SysMLv2Parser.NamespaceImportContext):
264
+ return self.visitChildren(ctx)
265
+
266
+
267
+ # Visit a parse tree produced by SysMLv2Parser#filterPackage.
268
+ def visitFilterPackage(self, ctx:SysMLv2Parser.FilterPackageContext):
269
+ return self.visitChildren(ctx)
270
+
271
+
272
+ # Visit a parse tree produced by SysMLv2Parser#filterPackageMember.
273
+ def visitFilterPackageMember(self, ctx:SysMLv2Parser.FilterPackageMemberContext):
274
+ return self.visitChildren(ctx)
275
+
276
+
277
+ # Visit a parse tree produced by SysMLv2Parser#memberElement.
278
+ def visitMemberElement(self, ctx:SysMLv2Parser.MemberElementContext):
279
+ return self.visitChildren(ctx)
280
+
281
+
282
+ # Visit a parse tree produced by SysMLv2Parser#nonFeatureElement.
283
+ def visitNonFeatureElement(self, ctx:SysMLv2Parser.NonFeatureElementContext):
284
+ return self.visitChildren(ctx)
285
+
286
+
287
+ # Visit a parse tree produced by SysMLv2Parser#featureElement.
288
+ def visitFeatureElement(self, ctx:SysMLv2Parser.FeatureElementContext):
289
+ return self.visitChildren(ctx)
290
+
291
+
292
+ # Visit a parse tree produced by SysMLv2Parser#type.
293
+ def visitType(self, ctx:SysMLv2Parser.TypeContext):
294
+ return self.visitChildren(ctx)
295
+
296
+
297
+ # Visit a parse tree produced by SysMLv2Parser#typePrefix.
298
+ def visitTypePrefix(self, ctx:SysMLv2Parser.TypePrefixContext):
299
+ return self.visitChildren(ctx)
300
+
301
+
302
+ # Visit a parse tree produced by SysMLv2Parser#typeDeclaration.
303
+ def visitTypeDeclaration(self, ctx:SysMLv2Parser.TypeDeclarationContext):
304
+ return self.visitChildren(ctx)
305
+
306
+
307
+ # Visit a parse tree produced by SysMLv2Parser#specializationPart.
308
+ def visitSpecializationPart(self, ctx:SysMLv2Parser.SpecializationPartContext):
309
+ return self.visitChildren(ctx)
310
+
311
+
312
+ # Visit a parse tree produced by SysMLv2Parser#conjugationPart.
313
+ def visitConjugationPart(self, ctx:SysMLv2Parser.ConjugationPartContext):
314
+ return self.visitChildren(ctx)
315
+
316
+
317
+ # Visit a parse tree produced by SysMLv2Parser#typeRelationshipPart.
318
+ def visitTypeRelationshipPart(self, ctx:SysMLv2Parser.TypeRelationshipPartContext):
319
+ return self.visitChildren(ctx)
320
+
321
+
322
+ # Visit a parse tree produced by SysMLv2Parser#disjoiningPart.
323
+ def visitDisjoiningPart(self, ctx:SysMLv2Parser.DisjoiningPartContext):
324
+ return self.visitChildren(ctx)
325
+
326
+
327
+ # Visit a parse tree produced by SysMLv2Parser#unioningPart.
328
+ def visitUnioningPart(self, ctx:SysMLv2Parser.UnioningPartContext):
329
+ return self.visitChildren(ctx)
330
+
331
+
332
+ # Visit a parse tree produced by SysMLv2Parser#intersectingPart.
333
+ def visitIntersectingPart(self, ctx:SysMLv2Parser.IntersectingPartContext):
334
+ return self.visitChildren(ctx)
335
+
336
+
337
+ # Visit a parse tree produced by SysMLv2Parser#differencingPart.
338
+ def visitDifferencingPart(self, ctx:SysMLv2Parser.DifferencingPartContext):
339
+ return self.visitChildren(ctx)
340
+
341
+
342
+ # Visit a parse tree produced by SysMLv2Parser#typeBody.
343
+ def visitTypeBody(self, ctx:SysMLv2Parser.TypeBodyContext):
344
+ return self.visitChildren(ctx)
345
+
346
+
347
+ # Visit a parse tree produced by SysMLv2Parser#typeBodyElement.
348
+ def visitTypeBodyElement(self, ctx:SysMLv2Parser.TypeBodyElementContext):
349
+ return self.visitChildren(ctx)
350
+
351
+
352
+ # Visit a parse tree produced by SysMLv2Parser#specialization.
353
+ def visitSpecialization(self, ctx:SysMLv2Parser.SpecializationContext):
354
+ return self.visitChildren(ctx)
355
+
356
+
357
+ # Visit a parse tree produced by SysMLv2Parser#ownedSpecialization.
358
+ def visitOwnedSpecialization(self, ctx:SysMLv2Parser.OwnedSpecializationContext):
359
+ return self.visitChildren(ctx)
360
+
361
+
362
+ # Visit a parse tree produced by SysMLv2Parser#specificType.
363
+ def visitSpecificType(self, ctx:SysMLv2Parser.SpecificTypeContext):
364
+ return self.visitChildren(ctx)
365
+
366
+
367
+ # Visit a parse tree produced by SysMLv2Parser#generalType.
368
+ def visitGeneralType(self, ctx:SysMLv2Parser.GeneralTypeContext):
369
+ return self.visitChildren(ctx)
370
+
371
+
372
+ # Visit a parse tree produced by SysMLv2Parser#conjugation.
373
+ def visitConjugation(self, ctx:SysMLv2Parser.ConjugationContext):
374
+ return self.visitChildren(ctx)
375
+
376
+
377
+ # Visit a parse tree produced by SysMLv2Parser#ownedConjugation.
378
+ def visitOwnedConjugation(self, ctx:SysMLv2Parser.OwnedConjugationContext):
379
+ return self.visitChildren(ctx)
380
+
381
+
382
+ # Visit a parse tree produced by SysMLv2Parser#disjoining.
383
+ def visitDisjoining(self, ctx:SysMLv2Parser.DisjoiningContext):
384
+ return self.visitChildren(ctx)
385
+
386
+
387
+ # Visit a parse tree produced by SysMLv2Parser#ownedDisjoining.
388
+ def visitOwnedDisjoining(self, ctx:SysMLv2Parser.OwnedDisjoiningContext):
389
+ return self.visitChildren(ctx)
390
+
391
+
392
+ # Visit a parse tree produced by SysMLv2Parser#unioning.
393
+ def visitUnioning(self, ctx:SysMLv2Parser.UnioningContext):
394
+ return self.visitChildren(ctx)
395
+
396
+
397
+ # Visit a parse tree produced by SysMLv2Parser#intersecting.
398
+ def visitIntersecting(self, ctx:SysMLv2Parser.IntersectingContext):
399
+ return self.visitChildren(ctx)
400
+
401
+
402
+ # Visit a parse tree produced by SysMLv2Parser#differencing.
403
+ def visitDifferencing(self, ctx:SysMLv2Parser.DifferencingContext):
404
+ return self.visitChildren(ctx)
405
+
406
+
407
+ # Visit a parse tree produced by SysMLv2Parser#featureMember.
408
+ def visitFeatureMember(self, ctx:SysMLv2Parser.FeatureMemberContext):
409
+ return self.visitChildren(ctx)
410
+
411
+
412
+ # Visit a parse tree produced by SysMLv2Parser#typeFeatureMember.
413
+ def visitTypeFeatureMember(self, ctx:SysMLv2Parser.TypeFeatureMemberContext):
414
+ return self.visitChildren(ctx)
415
+
416
+
417
+ # Visit a parse tree produced by SysMLv2Parser#ownedFeatureMember.
418
+ def visitOwnedFeatureMember(self, ctx:SysMLv2Parser.OwnedFeatureMemberContext):
419
+ return self.visitChildren(ctx)
420
+
421
+
422
+ # Visit a parse tree produced by SysMLv2Parser#classifier.
423
+ def visitClassifier(self, ctx:SysMLv2Parser.ClassifierContext):
424
+ return self.visitChildren(ctx)
425
+
426
+
427
+ # Visit a parse tree produced by SysMLv2Parser#classifierDeclaration.
428
+ def visitClassifierDeclaration(self, ctx:SysMLv2Parser.ClassifierDeclarationContext):
429
+ return self.visitChildren(ctx)
430
+
431
+
432
+ # Visit a parse tree produced by SysMLv2Parser#superclassingPart.
433
+ def visitSuperclassingPart(self, ctx:SysMLv2Parser.SuperclassingPartContext):
434
+ return self.visitChildren(ctx)
435
+
436
+
437
+ # Visit a parse tree produced by SysMLv2Parser#subclassification.
438
+ def visitSubclassification(self, ctx:SysMLv2Parser.SubclassificationContext):
439
+ return self.visitChildren(ctx)
440
+
441
+
442
+ # Visit a parse tree produced by SysMLv2Parser#ownedSubclassification.
443
+ def visitOwnedSubclassification(self, ctx:SysMLv2Parser.OwnedSubclassificationContext):
444
+ return self.visitChildren(ctx)
445
+
446
+
447
+ # Visit a parse tree produced by SysMLv2Parser#feature.
448
+ def visitFeature(self, ctx:SysMLv2Parser.FeatureContext):
449
+ return self.visitChildren(ctx)
450
+
451
+
452
+ # Visit a parse tree produced by SysMLv2Parser#endFeaturePrefix.
453
+ def visitEndFeaturePrefix(self, ctx:SysMLv2Parser.EndFeaturePrefixContext):
454
+ return self.visitChildren(ctx)
455
+
456
+
457
+ # Visit a parse tree produced by SysMLv2Parser#basicFeaturePrefix.
458
+ def visitBasicFeaturePrefix(self, ctx:SysMLv2Parser.BasicFeaturePrefixContext):
459
+ return self.visitChildren(ctx)
460
+
461
+
462
+ # Visit a parse tree produced by SysMLv2Parser#featurePrefix.
463
+ def visitFeaturePrefix(self, ctx:SysMLv2Parser.FeaturePrefixContext):
464
+ return self.visitChildren(ctx)
465
+
466
+
467
+ # Visit a parse tree produced by SysMLv2Parser#ownedCrossFeatureMember.
468
+ def visitOwnedCrossFeatureMember(self, ctx:SysMLv2Parser.OwnedCrossFeatureMemberContext):
469
+ return self.visitChildren(ctx)
470
+
471
+
472
+ # Visit a parse tree produced by SysMLv2Parser#ownedCrossFeature.
473
+ def visitOwnedCrossFeature(self, ctx:SysMLv2Parser.OwnedCrossFeatureContext):
474
+ return self.visitChildren(ctx)
475
+
476
+
477
+ # Visit a parse tree produced by SysMLv2Parser#featureDirection.
478
+ def visitFeatureDirection(self, ctx:SysMLv2Parser.FeatureDirectionContext):
479
+ return self.visitChildren(ctx)
480
+
481
+
482
+ # Visit a parse tree produced by SysMLv2Parser#featureDeclaration.
483
+ def visitFeatureDeclaration(self, ctx:SysMLv2Parser.FeatureDeclarationContext):
484
+ return self.visitChildren(ctx)
485
+
486
+
487
+ # Visit a parse tree produced by SysMLv2Parser#featureIdentification.
488
+ def visitFeatureIdentification(self, ctx:SysMLv2Parser.FeatureIdentificationContext):
489
+ return self.visitChildren(ctx)
490
+
491
+
492
+ # Visit a parse tree produced by SysMLv2Parser#featureRelationshipPart.
493
+ def visitFeatureRelationshipPart(self, ctx:SysMLv2Parser.FeatureRelationshipPartContext):
494
+ return self.visitChildren(ctx)
495
+
496
+
497
+ # Visit a parse tree produced by SysMLv2Parser#chainingPart.
498
+ def visitChainingPart(self, ctx:SysMLv2Parser.ChainingPartContext):
499
+ return self.visitChildren(ctx)
500
+
501
+
502
+ # Visit a parse tree produced by SysMLv2Parser#invertingPart.
503
+ def visitInvertingPart(self, ctx:SysMLv2Parser.InvertingPartContext):
504
+ return self.visitChildren(ctx)
505
+
506
+
507
+ # Visit a parse tree produced by SysMLv2Parser#typeFeaturingPart.
508
+ def visitTypeFeaturingPart(self, ctx:SysMLv2Parser.TypeFeaturingPartContext):
509
+ return self.visitChildren(ctx)
510
+
511
+
512
+ # Visit a parse tree produced by SysMLv2Parser#featureSpecializationPart.
513
+ def visitFeatureSpecializationPart(self, ctx:SysMLv2Parser.FeatureSpecializationPartContext):
514
+ return self.visitChildren(ctx)
515
+
516
+
517
+ # Visit a parse tree produced by SysMLv2Parser#multiplicityPart.
518
+ def visitMultiplicityPart(self, ctx:SysMLv2Parser.MultiplicityPartContext):
519
+ return self.visitChildren(ctx)
520
+
521
+
522
+ # Visit a parse tree produced by SysMLv2Parser#featureSpecialization.
523
+ def visitFeatureSpecialization(self, ctx:SysMLv2Parser.FeatureSpecializationContext):
524
+ return self.visitChildren(ctx)
525
+
526
+
527
+ # Visit a parse tree produced by SysMLv2Parser#typings.
528
+ def visitTypings(self, ctx:SysMLv2Parser.TypingsContext):
529
+ return self.visitChildren(ctx)
530
+
531
+
532
+ # Visit a parse tree produced by SysMLv2Parser#typedBy.
533
+ def visitTypedBy(self, ctx:SysMLv2Parser.TypedByContext):
534
+ return self.visitChildren(ctx)
535
+
536
+
537
+ # Visit a parse tree produced by SysMLv2Parser#subsettings.
538
+ def visitSubsettings(self, ctx:SysMLv2Parser.SubsettingsContext):
539
+ return self.visitChildren(ctx)
540
+
541
+
542
+ # Visit a parse tree produced by SysMLv2Parser#subsets.
543
+ def visitSubsets(self, ctx:SysMLv2Parser.SubsetsContext):
544
+ return self.visitChildren(ctx)
545
+
546
+
547
+ # Visit a parse tree produced by SysMLv2Parser#references.
548
+ def visitReferences(self, ctx:SysMLv2Parser.ReferencesContext):
549
+ return self.visitChildren(ctx)
550
+
551
+
552
+ # Visit a parse tree produced by SysMLv2Parser#crosses.
553
+ def visitCrosses(self, ctx:SysMLv2Parser.CrossesContext):
554
+ return self.visitChildren(ctx)
555
+
556
+
557
+ # Visit a parse tree produced by SysMLv2Parser#redefinitions.
558
+ def visitRedefinitions(self, ctx:SysMLv2Parser.RedefinitionsContext):
559
+ return self.visitChildren(ctx)
560
+
561
+
562
+ # Visit a parse tree produced by SysMLv2Parser#redefines.
563
+ def visitRedefines(self, ctx:SysMLv2Parser.RedefinesContext):
564
+ return self.visitChildren(ctx)
565
+
566
+
567
+ # Visit a parse tree produced by SysMLv2Parser#featureTyping.
568
+ def visitFeatureTyping(self, ctx:SysMLv2Parser.FeatureTypingContext):
569
+ return self.visitChildren(ctx)
570
+
571
+
572
+ # Visit a parse tree produced by SysMLv2Parser#ownedFeatureTyping.
573
+ def visitOwnedFeatureTyping(self, ctx:SysMLv2Parser.OwnedFeatureTypingContext):
574
+ return self.visitChildren(ctx)
575
+
576
+
577
+ # Visit a parse tree produced by SysMLv2Parser#subsetting.
578
+ def visitSubsetting(self, ctx:SysMLv2Parser.SubsettingContext):
579
+ return self.visitChildren(ctx)
580
+
581
+
582
+ # Visit a parse tree produced by SysMLv2Parser#ownedSubsetting.
583
+ def visitOwnedSubsetting(self, ctx:SysMLv2Parser.OwnedSubsettingContext):
584
+ return self.visitChildren(ctx)
585
+
586
+
587
+ # Visit a parse tree produced by SysMLv2Parser#ownedReferenceSubsetting.
588
+ def visitOwnedReferenceSubsetting(self, ctx:SysMLv2Parser.OwnedReferenceSubsettingContext):
589
+ return self.visitChildren(ctx)
590
+
591
+
592
+ # Visit a parse tree produced by SysMLv2Parser#ownedCrossSubsetting.
593
+ def visitOwnedCrossSubsetting(self, ctx:SysMLv2Parser.OwnedCrossSubsettingContext):
594
+ return self.visitChildren(ctx)
595
+
596
+
597
+ # Visit a parse tree produced by SysMLv2Parser#redefinition.
598
+ def visitRedefinition(self, ctx:SysMLv2Parser.RedefinitionContext):
599
+ return self.visitChildren(ctx)
600
+
601
+
602
+ # Visit a parse tree produced by SysMLv2Parser#ownedRedefinition.
603
+ def visitOwnedRedefinition(self, ctx:SysMLv2Parser.OwnedRedefinitionContext):
604
+ return self.visitChildren(ctx)
605
+
606
+
607
+ # Visit a parse tree produced by SysMLv2Parser#ownedFeatureChain.
608
+ def visitOwnedFeatureChain(self, ctx:SysMLv2Parser.OwnedFeatureChainContext):
609
+ return self.visitChildren(ctx)
610
+
611
+
612
+ # Visit a parse tree produced by SysMLv2Parser#featureChain.
613
+ def visitFeatureChain(self, ctx:SysMLv2Parser.FeatureChainContext):
614
+ return self.visitChildren(ctx)
615
+
616
+
617
+ # Visit a parse tree produced by SysMLv2Parser#ownedFeatureChaining.
618
+ def visitOwnedFeatureChaining(self, ctx:SysMLv2Parser.OwnedFeatureChainingContext):
619
+ return self.visitChildren(ctx)
620
+
621
+
622
+ # Visit a parse tree produced by SysMLv2Parser#featureInverting.
623
+ def visitFeatureInverting(self, ctx:SysMLv2Parser.FeatureInvertingContext):
624
+ return self.visitChildren(ctx)
625
+
626
+
627
+ # Visit a parse tree produced by SysMLv2Parser#ownedFeatureInverting.
628
+ def visitOwnedFeatureInverting(self, ctx:SysMLv2Parser.OwnedFeatureInvertingContext):
629
+ return self.visitChildren(ctx)
630
+
631
+
632
+ # Visit a parse tree produced by SysMLv2Parser#typeFeaturing.
633
+ def visitTypeFeaturing(self, ctx:SysMLv2Parser.TypeFeaturingContext):
634
+ return self.visitChildren(ctx)
635
+
636
+
637
+ # Visit a parse tree produced by SysMLv2Parser#ownedTypeFeaturing.
638
+ def visitOwnedTypeFeaturing(self, ctx:SysMLv2Parser.OwnedTypeFeaturingContext):
639
+ return self.visitChildren(ctx)
640
+
641
+
642
+ # Visit a parse tree produced by SysMLv2Parser#dataType.
643
+ def visitDataType(self, ctx:SysMLv2Parser.DataTypeContext):
644
+ return self.visitChildren(ctx)
645
+
646
+
647
+ # Visit a parse tree produced by SysMLv2Parser#class.
648
+ def visitClass(self, ctx:SysMLv2Parser.ClassContext):
649
+ return self.visitChildren(ctx)
650
+
651
+
652
+ # Visit a parse tree produced by SysMLv2Parser#structure.
653
+ def visitStructure(self, ctx:SysMLv2Parser.StructureContext):
654
+ return self.visitChildren(ctx)
655
+
656
+
657
+ # Visit a parse tree produced by SysMLv2Parser#association.
658
+ def visitAssociation(self, ctx:SysMLv2Parser.AssociationContext):
659
+ return self.visitChildren(ctx)
660
+
661
+
662
+ # Visit a parse tree produced by SysMLv2Parser#associationStructure.
663
+ def visitAssociationStructure(self, ctx:SysMLv2Parser.AssociationStructureContext):
664
+ return self.visitChildren(ctx)
665
+
666
+
667
+ # Visit a parse tree produced by SysMLv2Parser#connector.
668
+ def visitConnector(self, ctx:SysMLv2Parser.ConnectorContext):
669
+ return self.visitChildren(ctx)
670
+
671
+
672
+ # Visit a parse tree produced by SysMLv2Parser#connectorDeclaration.
673
+ def visitConnectorDeclaration(self, ctx:SysMLv2Parser.ConnectorDeclarationContext):
674
+ return self.visitChildren(ctx)
675
+
676
+
677
+ # Visit a parse tree produced by SysMLv2Parser#binaryConnectorDeclaration.
678
+ def visitBinaryConnectorDeclaration(self, ctx:SysMLv2Parser.BinaryConnectorDeclarationContext):
679
+ return self.visitChildren(ctx)
680
+
681
+
682
+ # Visit a parse tree produced by SysMLv2Parser#naryConnectorDeclaration.
683
+ def visitNaryConnectorDeclaration(self, ctx:SysMLv2Parser.NaryConnectorDeclarationContext):
684
+ return self.visitChildren(ctx)
685
+
686
+
687
+ # Visit a parse tree produced by SysMLv2Parser#connectorEndMember.
688
+ def visitConnectorEndMember(self, ctx:SysMLv2Parser.ConnectorEndMemberContext):
689
+ return self.visitChildren(ctx)
690
+
691
+
692
+ # Visit a parse tree produced by SysMLv2Parser#connectorEnd.
693
+ def visitConnectorEnd(self, ctx:SysMLv2Parser.ConnectorEndContext):
694
+ return self.visitChildren(ctx)
695
+
696
+
697
+ # Visit a parse tree produced by SysMLv2Parser#ownedCrossMultiplicityMember.
698
+ def visitOwnedCrossMultiplicityMember(self, ctx:SysMLv2Parser.OwnedCrossMultiplicityMemberContext):
699
+ return self.visitChildren(ctx)
700
+
701
+
702
+ # Visit a parse tree produced by SysMLv2Parser#ownedCrossMultiplicity.
703
+ def visitOwnedCrossMultiplicity(self, ctx:SysMLv2Parser.OwnedCrossMultiplicityContext):
704
+ return self.visitChildren(ctx)
705
+
706
+
707
+ # Visit a parse tree produced by SysMLv2Parser#bindingConnector.
708
+ def visitBindingConnector(self, ctx:SysMLv2Parser.BindingConnectorContext):
709
+ return self.visitChildren(ctx)
710
+
711
+
712
+ # Visit a parse tree produced by SysMLv2Parser#bindingConnectorDeclaration.
713
+ def visitBindingConnectorDeclaration(self, ctx:SysMLv2Parser.BindingConnectorDeclarationContext):
714
+ return self.visitChildren(ctx)
715
+
716
+
717
+ # Visit a parse tree produced by SysMLv2Parser#succession.
718
+ def visitSuccession(self, ctx:SysMLv2Parser.SuccessionContext):
719
+ return self.visitChildren(ctx)
720
+
721
+
722
+ # Visit a parse tree produced by SysMLv2Parser#successionDeclaration.
723
+ def visitSuccessionDeclaration(self, ctx:SysMLv2Parser.SuccessionDeclarationContext):
724
+ return self.visitChildren(ctx)
725
+
726
+
727
+ # Visit a parse tree produced by SysMLv2Parser#behavior.
728
+ def visitBehavior(self, ctx:SysMLv2Parser.BehaviorContext):
729
+ return self.visitChildren(ctx)
730
+
731
+
732
+ # Visit a parse tree produced by SysMLv2Parser#step.
733
+ def visitStep(self, ctx:SysMLv2Parser.StepContext):
734
+ return self.visitChildren(ctx)
735
+
736
+
737
+ # Visit a parse tree produced by SysMLv2Parser#function.
738
+ def visitFunction(self, ctx:SysMLv2Parser.FunctionContext):
739
+ return self.visitChildren(ctx)
740
+
741
+
742
+ # Visit a parse tree produced by SysMLv2Parser#functionBody.
743
+ def visitFunctionBody(self, ctx:SysMLv2Parser.FunctionBodyContext):
744
+ return self.visitChildren(ctx)
745
+
746
+
747
+ # Visit a parse tree produced by SysMLv2Parser#functionBodyPart.
748
+ def visitFunctionBodyPart(self, ctx:SysMLv2Parser.FunctionBodyPartContext):
749
+ return self.visitChildren(ctx)
750
+
751
+
752
+ # Visit a parse tree produced by SysMLv2Parser#returnFeatureMember.
753
+ def visitReturnFeatureMember(self, ctx:SysMLv2Parser.ReturnFeatureMemberContext):
754
+ return self.visitChildren(ctx)
755
+
756
+
757
+ # Visit a parse tree produced by SysMLv2Parser#resultExpressionMember.
758
+ def visitResultExpressionMember(self, ctx:SysMLv2Parser.ResultExpressionMemberContext):
759
+ return self.visitChildren(ctx)
760
+
761
+
762
+ # Visit a parse tree produced by SysMLv2Parser#expression.
763
+ def visitExpression(self, ctx:SysMLv2Parser.ExpressionContext):
764
+ return self.visitChildren(ctx)
765
+
766
+
767
+ # Visit a parse tree produced by SysMLv2Parser#predicate.
768
+ def visitPredicate(self, ctx:SysMLv2Parser.PredicateContext):
769
+ return self.visitChildren(ctx)
770
+
771
+
772
+ # Visit a parse tree produced by SysMLv2Parser#booleanExpression.
773
+ def visitBooleanExpression(self, ctx:SysMLv2Parser.BooleanExpressionContext):
774
+ return self.visitChildren(ctx)
775
+
776
+
777
+ # Visit a parse tree produced by SysMLv2Parser#invariant.
778
+ def visitInvariant(self, ctx:SysMLv2Parser.InvariantContext):
779
+ return self.visitChildren(ctx)
780
+
781
+
782
+ # Visit a parse tree produced by SysMLv2Parser#ownedExpressionMember.
783
+ def visitOwnedExpressionMember(self, ctx:SysMLv2Parser.OwnedExpressionMemberContext):
784
+ return self.visitChildren(ctx)
785
+
786
+
787
+ # Visit a parse tree produced by SysMLv2Parser#metadataReference.
788
+ def visitMetadataReference(self, ctx:SysMLv2Parser.MetadataReferenceContext):
789
+ return self.visitChildren(ctx)
790
+
791
+
792
+ # Visit a parse tree produced by SysMLv2Parser#typeReferenceMember.
793
+ def visitTypeReferenceMember(self, ctx:SysMLv2Parser.TypeReferenceMemberContext):
794
+ return self.visitChildren(ctx)
795
+
796
+
797
+ # Visit a parse tree produced by SysMLv2Parser#typeResultMember.
798
+ def visitTypeResultMember(self, ctx:SysMLv2Parser.TypeResultMemberContext):
799
+ return self.visitChildren(ctx)
800
+
801
+
802
+ # Visit a parse tree produced by SysMLv2Parser#referenceTyping.
803
+ def visitReferenceTyping(self, ctx:SysMLv2Parser.ReferenceTypingContext):
804
+ return self.visitChildren(ctx)
805
+
806
+
807
+ # Visit a parse tree produced by SysMLv2Parser#emptyResultMember.
808
+ def visitEmptyResultMember(self, ctx:SysMLv2Parser.EmptyResultMemberContext):
809
+ return self.visitChildren(ctx)
810
+
811
+
812
+ # Visit a parse tree produced by SysMLv2Parser#sequenceOperatorExpression.
813
+ def visitSequenceOperatorExpression(self, ctx:SysMLv2Parser.SequenceOperatorExpressionContext):
814
+ return self.visitChildren(ctx)
815
+
816
+
817
+ # Visit a parse tree produced by SysMLv2Parser#sequenceExpressionListMember.
818
+ def visitSequenceExpressionListMember(self, ctx:SysMLv2Parser.SequenceExpressionListMemberContext):
819
+ return self.visitChildren(ctx)
820
+
821
+
822
+ # Visit a parse tree produced by SysMLv2Parser#bodyArgumentMember.
823
+ def visitBodyArgumentMember(self, ctx:SysMLv2Parser.BodyArgumentMemberContext):
824
+ return self.visitChildren(ctx)
825
+
826
+
827
+ # Visit a parse tree produced by SysMLv2Parser#bodyArgument.
828
+ def visitBodyArgument(self, ctx:SysMLv2Parser.BodyArgumentContext):
829
+ return self.visitChildren(ctx)
830
+
831
+
832
+ # Visit a parse tree produced by SysMLv2Parser#bodyArgumentValue.
833
+ def visitBodyArgumentValue(self, ctx:SysMLv2Parser.BodyArgumentValueContext):
834
+ return self.visitChildren(ctx)
835
+
836
+
837
+ # Visit a parse tree produced by SysMLv2Parser#functionReferenceArgumentMember.
838
+ def visitFunctionReferenceArgumentMember(self, ctx:SysMLv2Parser.FunctionReferenceArgumentMemberContext):
839
+ return self.visitChildren(ctx)
840
+
841
+
842
+ # Visit a parse tree produced by SysMLv2Parser#functionReferenceArgument.
843
+ def visitFunctionReferenceArgument(self, ctx:SysMLv2Parser.FunctionReferenceArgumentContext):
844
+ return self.visitChildren(ctx)
845
+
846
+
847
+ # Visit a parse tree produced by SysMLv2Parser#functionReferenceArgumentValue.
848
+ def visitFunctionReferenceArgumentValue(self, ctx:SysMLv2Parser.FunctionReferenceArgumentValueContext):
849
+ return self.visitChildren(ctx)
850
+
851
+
852
+ # Visit a parse tree produced by SysMLv2Parser#functionReferenceExpression.
853
+ def visitFunctionReferenceExpression(self, ctx:SysMLv2Parser.FunctionReferenceExpressionContext):
854
+ return self.visitChildren(ctx)
855
+
856
+
857
+ # Visit a parse tree produced by SysMLv2Parser#functionReferenceMember.
858
+ def visitFunctionReferenceMember(self, ctx:SysMLv2Parser.FunctionReferenceMemberContext):
859
+ return self.visitChildren(ctx)
860
+
861
+
862
+ # Visit a parse tree produced by SysMLv2Parser#functionReference.
863
+ def visitFunctionReference(self, ctx:SysMLv2Parser.FunctionReferenceContext):
864
+ return self.visitChildren(ctx)
865
+
866
+
867
+ # Visit a parse tree produced by SysMLv2Parser#featureChainMember.
868
+ def visitFeatureChainMember(self, ctx:SysMLv2Parser.FeatureChainMemberContext):
869
+ return self.visitChildren(ctx)
870
+
871
+
872
+ # Visit a parse tree produced by SysMLv2Parser#ownedFeatureChainMember.
873
+ def visitOwnedFeatureChainMember(self, ctx:SysMLv2Parser.OwnedFeatureChainMemberContext):
874
+ return self.visitChildren(ctx)
875
+
876
+
877
+ # Visit a parse tree produced by SysMLv2Parser#featureReferenceMember.
878
+ def visitFeatureReferenceMember(self, ctx:SysMLv2Parser.FeatureReferenceMemberContext):
879
+ return self.visitChildren(ctx)
880
+
881
+
882
+ # Visit a parse tree produced by SysMLv2Parser#featureReference.
883
+ def visitFeatureReference(self, ctx:SysMLv2Parser.FeatureReferenceContext):
884
+ return self.visitChildren(ctx)
885
+
886
+
887
+ # Visit a parse tree produced by SysMLv2Parser#elementReferenceMember.
888
+ def visitElementReferenceMember(self, ctx:SysMLv2Parser.ElementReferenceMemberContext):
889
+ return self.visitChildren(ctx)
890
+
891
+
892
+ # Visit a parse tree produced by SysMLv2Parser#constructorResultMember.
893
+ def visitConstructorResultMember(self, ctx:SysMLv2Parser.ConstructorResultMemberContext):
894
+ return self.visitChildren(ctx)
895
+
896
+
897
+ # Visit a parse tree produced by SysMLv2Parser#constructorResult.
898
+ def visitConstructorResult(self, ctx:SysMLv2Parser.ConstructorResultContext):
899
+ return self.visitChildren(ctx)
900
+
901
+
902
+ # Visit a parse tree produced by SysMLv2Parser#instantiatedTypeMember.
903
+ def visitInstantiatedTypeMember(self, ctx:SysMLv2Parser.InstantiatedTypeMemberContext):
904
+ return self.visitChildren(ctx)
905
+
906
+
907
+ # Visit a parse tree produced by SysMLv2Parser#instantiatedTypeReference.
908
+ def visitInstantiatedTypeReference(self, ctx:SysMLv2Parser.InstantiatedTypeReferenceContext):
909
+ return self.visitChildren(ctx)
910
+
911
+
912
+ # Visit a parse tree produced by SysMLv2Parser#namedArgumentMember.
913
+ def visitNamedArgumentMember(self, ctx:SysMLv2Parser.NamedArgumentMemberContext):
914
+ return self.visitChildren(ctx)
915
+
916
+
917
+ # Visit a parse tree produced by SysMLv2Parser#parameterRedefinition.
918
+ def visitParameterRedefinition(self, ctx:SysMLv2Parser.ParameterRedefinitionContext):
919
+ return self.visitChildren(ctx)
920
+
921
+
922
+ # Visit a parse tree produced by SysMLv2Parser#expressionBodyMember.
923
+ def visitExpressionBodyMember(self, ctx:SysMLv2Parser.ExpressionBodyMemberContext):
924
+ return self.visitChildren(ctx)
925
+
926
+
927
+ # Visit a parse tree produced by SysMLv2Parser#expressionBody.
928
+ def visitExpressionBody(self, ctx:SysMLv2Parser.ExpressionBodyContext):
929
+ return self.visitChildren(ctx)
930
+
931
+
932
+ # Visit a parse tree produced by SysMLv2Parser#booleanValue.
933
+ def visitBooleanValue(self, ctx:SysMLv2Parser.BooleanValueContext):
934
+ return self.visitChildren(ctx)
935
+
936
+
937
+ # Visit a parse tree produced by SysMLv2Parser#realValue.
938
+ def visitRealValue(self, ctx:SysMLv2Parser.RealValueContext):
939
+ return self.visitChildren(ctx)
940
+
941
+
942
+ # Visit a parse tree produced by SysMLv2Parser#interaction.
943
+ def visitInteraction(self, ctx:SysMLv2Parser.InteractionContext):
944
+ return self.visitChildren(ctx)
945
+
946
+
947
+ # Visit a parse tree produced by SysMLv2Parser#flow.
948
+ def visitFlow(self, ctx:SysMLv2Parser.FlowContext):
949
+ return self.visitChildren(ctx)
950
+
951
+
952
+ # Visit a parse tree produced by SysMLv2Parser#successionFlow.
953
+ def visitSuccessionFlow(self, ctx:SysMLv2Parser.SuccessionFlowContext):
954
+ return self.visitChildren(ctx)
955
+
956
+
957
+ # Visit a parse tree produced by SysMLv2Parser#flowDeclaration.
958
+ def visitFlowDeclaration(self, ctx:SysMLv2Parser.FlowDeclarationContext):
959
+ return self.visitChildren(ctx)
960
+
961
+
962
+ # Visit a parse tree produced by SysMLv2Parser#payloadFeatureMember.
963
+ def visitPayloadFeatureMember(self, ctx:SysMLv2Parser.PayloadFeatureMemberContext):
964
+ return self.visitChildren(ctx)
965
+
966
+
967
+ # Visit a parse tree produced by SysMLv2Parser#payloadFeature.
968
+ def visitPayloadFeature(self, ctx:SysMLv2Parser.PayloadFeatureContext):
969
+ return self.visitChildren(ctx)
970
+
971
+
972
+ # Visit a parse tree produced by SysMLv2Parser#payloadFeatureSpecializationPart.
973
+ def visitPayloadFeatureSpecializationPart(self, ctx:SysMLv2Parser.PayloadFeatureSpecializationPartContext):
974
+ return self.visitChildren(ctx)
975
+
976
+
977
+ # Visit a parse tree produced by SysMLv2Parser#flowEndMember.
978
+ def visitFlowEndMember(self, ctx:SysMLv2Parser.FlowEndMemberContext):
979
+ return self.visitChildren(ctx)
980
+
981
+
982
+ # Visit a parse tree produced by SysMLv2Parser#flowEnd.
983
+ def visitFlowEnd(self, ctx:SysMLv2Parser.FlowEndContext):
984
+ return self.visitChildren(ctx)
985
+
986
+
987
+ # Visit a parse tree produced by SysMLv2Parser#flowFeatureMember.
988
+ def visitFlowFeatureMember(self, ctx:SysMLv2Parser.FlowFeatureMemberContext):
989
+ return self.visitChildren(ctx)
990
+
991
+
992
+ # Visit a parse tree produced by SysMLv2Parser#flowFeature.
993
+ def visitFlowFeature(self, ctx:SysMLv2Parser.FlowFeatureContext):
994
+ return self.visitChildren(ctx)
995
+
996
+
997
+ # Visit a parse tree produced by SysMLv2Parser#flowFeatureRedefinition.
998
+ def visitFlowFeatureRedefinition(self, ctx:SysMLv2Parser.FlowFeatureRedefinitionContext):
999
+ return self.visitChildren(ctx)
1000
+
1001
+
1002
+ # Visit a parse tree produced by SysMLv2Parser#valuePart.
1003
+ def visitValuePart(self, ctx:SysMLv2Parser.ValuePartContext):
1004
+ return self.visitChildren(ctx)
1005
+
1006
+
1007
+ # Visit a parse tree produced by SysMLv2Parser#featureValue.
1008
+ def visitFeatureValue(self, ctx:SysMLv2Parser.FeatureValueContext):
1009
+ return self.visitChildren(ctx)
1010
+
1011
+
1012
+ # Visit a parse tree produced by SysMLv2Parser#multiplicity.
1013
+ def visitMultiplicity(self, ctx:SysMLv2Parser.MultiplicityContext):
1014
+ return self.visitChildren(ctx)
1015
+
1016
+
1017
+ # Visit a parse tree produced by SysMLv2Parser#multiplicitySubset.
1018
+ def visitMultiplicitySubset(self, ctx:SysMLv2Parser.MultiplicitySubsetContext):
1019
+ return self.visitChildren(ctx)
1020
+
1021
+
1022
+ # Visit a parse tree produced by SysMLv2Parser#multiplicityRange.
1023
+ def visitMultiplicityRange(self, ctx:SysMLv2Parser.MultiplicityRangeContext):
1024
+ return self.visitChildren(ctx)
1025
+
1026
+
1027
+ # Visit a parse tree produced by SysMLv2Parser#ownedMultiplicity.
1028
+ def visitOwnedMultiplicity(self, ctx:SysMLv2Parser.OwnedMultiplicityContext):
1029
+ return self.visitChildren(ctx)
1030
+
1031
+
1032
+ # Visit a parse tree produced by SysMLv2Parser#ownedMultiplicityRange.
1033
+ def visitOwnedMultiplicityRange(self, ctx:SysMLv2Parser.OwnedMultiplicityRangeContext):
1034
+ return self.visitChildren(ctx)
1035
+
1036
+
1037
+ # Visit a parse tree produced by SysMLv2Parser#multiplicityBounds.
1038
+ def visitMultiplicityBounds(self, ctx:SysMLv2Parser.MultiplicityBoundsContext):
1039
+ return self.visitChildren(ctx)
1040
+
1041
+
1042
+ # Visit a parse tree produced by SysMLv2Parser#multiplicityExpressionMember.
1043
+ def visitMultiplicityExpressionMember(self, ctx:SysMLv2Parser.MultiplicityExpressionMemberContext):
1044
+ return self.visitChildren(ctx)
1045
+
1046
+
1047
+ # Visit a parse tree produced by SysMLv2Parser#metaclass.
1048
+ def visitMetaclass(self, ctx:SysMLv2Parser.MetaclassContext):
1049
+ return self.visitChildren(ctx)
1050
+
1051
+
1052
+ # Visit a parse tree produced by SysMLv2Parser#prefixMetadataAnnotation.
1053
+ def visitPrefixMetadataAnnotation(self, ctx:SysMLv2Parser.PrefixMetadataAnnotationContext):
1054
+ return self.visitChildren(ctx)
1055
+
1056
+
1057
+ # Visit a parse tree produced by SysMLv2Parser#prefixMetadataMember.
1058
+ def visitPrefixMetadataMember(self, ctx:SysMLv2Parser.PrefixMetadataMemberContext):
1059
+ return self.visitChildren(ctx)
1060
+
1061
+
1062
+ # Visit a parse tree produced by SysMLv2Parser#prefixMetadataFeature.
1063
+ def visitPrefixMetadataFeature(self, ctx:SysMLv2Parser.PrefixMetadataFeatureContext):
1064
+ return self.visitChildren(ctx)
1065
+
1066
+
1067
+ # Visit a parse tree produced by SysMLv2Parser#metadataFeature.
1068
+ def visitMetadataFeature(self, ctx:SysMLv2Parser.MetadataFeatureContext):
1069
+ return self.visitChildren(ctx)
1070
+
1071
+
1072
+ # Visit a parse tree produced by SysMLv2Parser#metadataFeatureDeclaration.
1073
+ def visitMetadataFeatureDeclaration(self, ctx:SysMLv2Parser.MetadataFeatureDeclarationContext):
1074
+ return self.visitChildren(ctx)
1075
+
1076
+
1077
+ # Visit a parse tree produced by SysMLv2Parser#metadataBody.
1078
+ def visitMetadataBody(self, ctx:SysMLv2Parser.MetadataBodyContext):
1079
+ return self.visitChildren(ctx)
1080
+
1081
+
1082
+ # Visit a parse tree produced by SysMLv2Parser#metadataBodyElement.
1083
+ def visitMetadataBodyElement(self, ctx:SysMLv2Parser.MetadataBodyElementContext):
1084
+ return self.visitChildren(ctx)
1085
+
1086
+
1087
+ # Visit a parse tree produced by SysMLv2Parser#metadataBodyFeatureMember.
1088
+ def visitMetadataBodyFeatureMember(self, ctx:SysMLv2Parser.MetadataBodyFeatureMemberContext):
1089
+ return self.visitChildren(ctx)
1090
+
1091
+
1092
+ # Visit a parse tree produced by SysMLv2Parser#metadataBodyFeature.
1093
+ def visitMetadataBodyFeature(self, ctx:SysMLv2Parser.MetadataBodyFeatureContext):
1094
+ return self.visitChildren(ctx)
1095
+
1096
+
1097
+ # Visit a parse tree produced by SysMLv2Parser#package.
1098
+ def visitPackage(self, ctx:SysMLv2Parser.PackageContext):
1099
+ return self.visitChildren(ctx)
1100
+
1101
+
1102
+ # Visit a parse tree produced by SysMLv2Parser#libraryPackage.
1103
+ def visitLibraryPackage(self, ctx:SysMLv2Parser.LibraryPackageContext):
1104
+ return self.visitChildren(ctx)
1105
+
1106
+
1107
+ # Visit a parse tree produced by SysMLv2Parser#packageDeclaration.
1108
+ def visitPackageDeclaration(self, ctx:SysMLv2Parser.PackageDeclarationContext):
1109
+ return self.visitChildren(ctx)
1110
+
1111
+
1112
+ # Visit a parse tree produced by SysMLv2Parser#packageBody.
1113
+ def visitPackageBody(self, ctx:SysMLv2Parser.PackageBodyContext):
1114
+ return self.visitChildren(ctx)
1115
+
1116
+
1117
+ # Visit a parse tree produced by SysMLv2Parser#elementFilterMember.
1118
+ def visitElementFilterMember(self, ctx:SysMLv2Parser.ElementFilterMemberContext):
1119
+ return self.visitChildren(ctx)
1120
+
1121
+
1122
+ # Visit a parse tree produced by SysMLv2Parser#dependencyDeclaration.
1123
+ def visitDependencyDeclaration(self, ctx:SysMLv2Parser.DependencyDeclarationContext):
1124
+ return self.visitChildren(ctx)
1125
+
1126
+
1127
+ # Visit a parse tree produced by SysMLv2Parser#annotatingMember.
1128
+ def visitAnnotatingMember(self, ctx:SysMLv2Parser.AnnotatingMemberContext):
1129
+ return self.visitChildren(ctx)
1130
+
1131
+
1132
+ # Visit a parse tree produced by SysMLv2Parser#packageBodyElement.
1133
+ def visitPackageBodyElement(self, ctx:SysMLv2Parser.PackageBodyElementContext):
1134
+ return self.visitChildren(ctx)
1135
+
1136
+
1137
+ # Visit a parse tree produced by SysMLv2Parser#packageMember.
1138
+ def visitPackageMember(self, ctx:SysMLv2Parser.PackageMemberContext):
1139
+ return self.visitChildren(ctx)
1140
+
1141
+
1142
+ # Visit a parse tree produced by SysMLv2Parser#definitionElement.
1143
+ def visitDefinitionElement(self, ctx:SysMLv2Parser.DefinitionElementContext):
1144
+ return self.visitChildren(ctx)
1145
+
1146
+
1147
+ # Visit a parse tree produced by SysMLv2Parser#usageElement.
1148
+ def visitUsageElement(self, ctx:SysMLv2Parser.UsageElementContext):
1149
+ return self.visitChildren(ctx)
1150
+
1151
+
1152
+ # Visit a parse tree produced by SysMLv2Parser#basicDefinitionPrefix.
1153
+ def visitBasicDefinitionPrefix(self, ctx:SysMLv2Parser.BasicDefinitionPrefixContext):
1154
+ return self.visitChildren(ctx)
1155
+
1156
+
1157
+ # Visit a parse tree produced by SysMLv2Parser#definitionExtensionKeyword.
1158
+ def visitDefinitionExtensionKeyword(self, ctx:SysMLv2Parser.DefinitionExtensionKeywordContext):
1159
+ return self.visitChildren(ctx)
1160
+
1161
+
1162
+ # Visit a parse tree produced by SysMLv2Parser#definitionPrefix.
1163
+ def visitDefinitionPrefix(self, ctx:SysMLv2Parser.DefinitionPrefixContext):
1164
+ return self.visitChildren(ctx)
1165
+
1166
+
1167
+ # Visit a parse tree produced by SysMLv2Parser#definition.
1168
+ def visitDefinition(self, ctx:SysMLv2Parser.DefinitionContext):
1169
+ return self.visitChildren(ctx)
1170
+
1171
+
1172
+ # Visit a parse tree produced by SysMLv2Parser#definitionDeclaration.
1173
+ def visitDefinitionDeclaration(self, ctx:SysMLv2Parser.DefinitionDeclarationContext):
1174
+ return self.visitChildren(ctx)
1175
+
1176
+
1177
+ # Visit a parse tree produced by SysMLv2Parser#definitionBody.
1178
+ def visitDefinitionBody(self, ctx:SysMLv2Parser.DefinitionBodyContext):
1179
+ return self.visitChildren(ctx)
1180
+
1181
+
1182
+ # Visit a parse tree produced by SysMLv2Parser#definitionBodyItem.
1183
+ def visitDefinitionBodyItem(self, ctx:SysMLv2Parser.DefinitionBodyItemContext):
1184
+ return self.visitChildren(ctx)
1185
+
1186
+
1187
+ # Visit a parse tree produced by SysMLv2Parser#definitionBodyItemContent.
1188
+ def visitDefinitionBodyItemContent(self, ctx:SysMLv2Parser.DefinitionBodyItemContentContext):
1189
+ return self.visitChildren(ctx)
1190
+
1191
+
1192
+ # Visit a parse tree produced by SysMLv2Parser#definitionMember.
1193
+ def visitDefinitionMember(self, ctx:SysMLv2Parser.DefinitionMemberContext):
1194
+ return self.visitChildren(ctx)
1195
+
1196
+
1197
+ # Visit a parse tree produced by SysMLv2Parser#variantUsageMember.
1198
+ def visitVariantUsageMember(self, ctx:SysMLv2Parser.VariantUsageMemberContext):
1199
+ return self.visitChildren(ctx)
1200
+
1201
+
1202
+ # Visit a parse tree produced by SysMLv2Parser#nonOccurrenceUsageMember.
1203
+ def visitNonOccurrenceUsageMember(self, ctx:SysMLv2Parser.NonOccurrenceUsageMemberContext):
1204
+ return self.visitChildren(ctx)
1205
+
1206
+
1207
+ # Visit a parse tree produced by SysMLv2Parser#occurrenceUsageMember.
1208
+ def visitOccurrenceUsageMember(self, ctx:SysMLv2Parser.OccurrenceUsageMemberContext):
1209
+ return self.visitChildren(ctx)
1210
+
1211
+
1212
+ # Visit a parse tree produced by SysMLv2Parser#structureUsageMember.
1213
+ def visitStructureUsageMember(self, ctx:SysMLv2Parser.StructureUsageMemberContext):
1214
+ return self.visitChildren(ctx)
1215
+
1216
+
1217
+ # Visit a parse tree produced by SysMLv2Parser#behaviorUsageMember.
1218
+ def visitBehaviorUsageMember(self, ctx:SysMLv2Parser.BehaviorUsageMemberContext):
1219
+ return self.visitChildren(ctx)
1220
+
1221
+
1222
+ # Visit a parse tree produced by SysMLv2Parser#refPrefix.
1223
+ def visitRefPrefix(self, ctx:SysMLv2Parser.RefPrefixContext):
1224
+ return self.visitChildren(ctx)
1225
+
1226
+
1227
+ # Visit a parse tree produced by SysMLv2Parser#basicUsagePrefix.
1228
+ def visitBasicUsagePrefix(self, ctx:SysMLv2Parser.BasicUsagePrefixContext):
1229
+ return self.visitChildren(ctx)
1230
+
1231
+
1232
+ # Visit a parse tree produced by SysMLv2Parser#endUsagePrefix.
1233
+ def visitEndUsagePrefix(self, ctx:SysMLv2Parser.EndUsagePrefixContext):
1234
+ return self.visitChildren(ctx)
1235
+
1236
+
1237
+ # Visit a parse tree produced by SysMLv2Parser#usageExtensionKeyword.
1238
+ def visitUsageExtensionKeyword(self, ctx:SysMLv2Parser.UsageExtensionKeywordContext):
1239
+ return self.visitChildren(ctx)
1240
+
1241
+
1242
+ # Visit a parse tree produced by SysMLv2Parser#unextendedUsagePrefix.
1243
+ def visitUnextendedUsagePrefix(self, ctx:SysMLv2Parser.UnextendedUsagePrefixContext):
1244
+ return self.visitChildren(ctx)
1245
+
1246
+
1247
+ # Visit a parse tree produced by SysMLv2Parser#usagePrefix.
1248
+ def visitUsagePrefix(self, ctx:SysMLv2Parser.UsagePrefixContext):
1249
+ return self.visitChildren(ctx)
1250
+
1251
+
1252
+ # Visit a parse tree produced by SysMLv2Parser#usage.
1253
+ def visitUsage(self, ctx:SysMLv2Parser.UsageContext):
1254
+ return self.visitChildren(ctx)
1255
+
1256
+
1257
+ # Visit a parse tree produced by SysMLv2Parser#usageDeclaration.
1258
+ def visitUsageDeclaration(self, ctx:SysMLv2Parser.UsageDeclarationContext):
1259
+ return self.visitChildren(ctx)
1260
+
1261
+
1262
+ # Visit a parse tree produced by SysMLv2Parser#usageCompletion.
1263
+ def visitUsageCompletion(self, ctx:SysMLv2Parser.UsageCompletionContext):
1264
+ return self.visitChildren(ctx)
1265
+
1266
+
1267
+ # Visit a parse tree produced by SysMLv2Parser#usageBody.
1268
+ def visitUsageBody(self, ctx:SysMLv2Parser.UsageBodyContext):
1269
+ return self.visitChildren(ctx)
1270
+
1271
+
1272
+ # Visit a parse tree produced by SysMLv2Parser#defaultReferenceUsage.
1273
+ def visitDefaultReferenceUsage(self, ctx:SysMLv2Parser.DefaultReferenceUsageContext):
1274
+ return self.visitChildren(ctx)
1275
+
1276
+
1277
+ # Visit a parse tree produced by SysMLv2Parser#referenceUsage.
1278
+ def visitReferenceUsage(self, ctx:SysMLv2Parser.ReferenceUsageContext):
1279
+ return self.visitChildren(ctx)
1280
+
1281
+
1282
+ # Visit a parse tree produced by SysMLv2Parser#endFeatureUsage.
1283
+ def visitEndFeatureUsage(self, ctx:SysMLv2Parser.EndFeatureUsageContext):
1284
+ return self.visitChildren(ctx)
1285
+
1286
+
1287
+ # Visit a parse tree produced by SysMLv2Parser#variantReference.
1288
+ def visitVariantReference(self, ctx:SysMLv2Parser.VariantReferenceContext):
1289
+ return self.visitChildren(ctx)
1290
+
1291
+
1292
+ # Visit a parse tree produced by SysMLv2Parser#nonOccurrenceUsageElement.
1293
+ def visitNonOccurrenceUsageElement(self, ctx:SysMLv2Parser.NonOccurrenceUsageElementContext):
1294
+ return self.visitChildren(ctx)
1295
+
1296
+
1297
+ # Visit a parse tree produced by SysMLv2Parser#endOccurrenceUsageElement.
1298
+ def visitEndOccurrenceUsageElement(self, ctx:SysMLv2Parser.EndOccurrenceUsageElementContext):
1299
+ return self.visitChildren(ctx)
1300
+
1301
+
1302
+ # Visit a parse tree produced by SysMLv2Parser#occurrenceUsageElement.
1303
+ def visitOccurrenceUsageElement(self, ctx:SysMLv2Parser.OccurrenceUsageElementContext):
1304
+ return self.visitChildren(ctx)
1305
+
1306
+
1307
+ # Visit a parse tree produced by SysMLv2Parser#structureUsageElement.
1308
+ def visitStructureUsageElement(self, ctx:SysMLv2Parser.StructureUsageElementContext):
1309
+ return self.visitChildren(ctx)
1310
+
1311
+
1312
+ # Visit a parse tree produced by SysMLv2Parser#behaviorUsageElement.
1313
+ def visitBehaviorUsageElement(self, ctx:SysMLv2Parser.BehaviorUsageElementContext):
1314
+ return self.visitChildren(ctx)
1315
+
1316
+
1317
+ # Visit a parse tree produced by SysMLv2Parser#variantUsageElement.
1318
+ def visitVariantUsageElement(self, ctx:SysMLv2Parser.VariantUsageElementContext):
1319
+ return self.visitChildren(ctx)
1320
+
1321
+
1322
+ # Visit a parse tree produced by SysMLv2Parser#subclassificationPart.
1323
+ def visitSubclassificationPart(self, ctx:SysMLv2Parser.SubclassificationPartContext):
1324
+ return self.visitChildren(ctx)
1325
+
1326
+
1327
+ # Visit a parse tree produced by SysMLv2Parser#attributeDefinition.
1328
+ def visitAttributeDefinition(self, ctx:SysMLv2Parser.AttributeDefinitionContext):
1329
+ return self.visitChildren(ctx)
1330
+
1331
+
1332
+ # Visit a parse tree produced by SysMLv2Parser#attributeUsage.
1333
+ def visitAttributeUsage(self, ctx:SysMLv2Parser.AttributeUsageContext):
1334
+ return self.visitChildren(ctx)
1335
+
1336
+
1337
+ # Visit a parse tree produced by SysMLv2Parser#enumerationDefinition.
1338
+ def visitEnumerationDefinition(self, ctx:SysMLv2Parser.EnumerationDefinitionContext):
1339
+ return self.visitChildren(ctx)
1340
+
1341
+
1342
+ # Visit a parse tree produced by SysMLv2Parser#enumerationBody.
1343
+ def visitEnumerationBody(self, ctx:SysMLv2Parser.EnumerationBodyContext):
1344
+ return self.visitChildren(ctx)
1345
+
1346
+
1347
+ # Visit a parse tree produced by SysMLv2Parser#enumerationUsageMember.
1348
+ def visitEnumerationUsageMember(self, ctx:SysMLv2Parser.EnumerationUsageMemberContext):
1349
+ return self.visitChildren(ctx)
1350
+
1351
+
1352
+ # Visit a parse tree produced by SysMLv2Parser#enumeratedValue.
1353
+ def visitEnumeratedValue(self, ctx:SysMLv2Parser.EnumeratedValueContext):
1354
+ return self.visitChildren(ctx)
1355
+
1356
+
1357
+ # Visit a parse tree produced by SysMLv2Parser#enumerationUsage.
1358
+ def visitEnumerationUsage(self, ctx:SysMLv2Parser.EnumerationUsageContext):
1359
+ return self.visitChildren(ctx)
1360
+
1361
+
1362
+ # Visit a parse tree produced by SysMLv2Parser#occurrenceDefinitionPrefix.
1363
+ def visitOccurrenceDefinitionPrefix(self, ctx:SysMLv2Parser.OccurrenceDefinitionPrefixContext):
1364
+ return self.visitChildren(ctx)
1365
+
1366
+
1367
+ # Visit a parse tree produced by SysMLv2Parser#occurrenceDefinition.
1368
+ def visitOccurrenceDefinition(self, ctx:SysMLv2Parser.OccurrenceDefinitionContext):
1369
+ return self.visitChildren(ctx)
1370
+
1371
+
1372
+ # Visit a parse tree produced by SysMLv2Parser#individualDefinition.
1373
+ def visitIndividualDefinition(self, ctx:SysMLv2Parser.IndividualDefinitionContext):
1374
+ return self.visitChildren(ctx)
1375
+
1376
+
1377
+ # Visit a parse tree produced by SysMLv2Parser#emptyMultiplicityMember.
1378
+ def visitEmptyMultiplicityMember(self, ctx:SysMLv2Parser.EmptyMultiplicityMemberContext):
1379
+ return self.visitChildren(ctx)
1380
+
1381
+
1382
+ # Visit a parse tree produced by SysMLv2Parser#occurrenceUsagePrefix.
1383
+ def visitOccurrenceUsagePrefix(self, ctx:SysMLv2Parser.OccurrenceUsagePrefixContext):
1384
+ return self.visitChildren(ctx)
1385
+
1386
+
1387
+ # Visit a parse tree produced by SysMLv2Parser#occurrenceUsage.
1388
+ def visitOccurrenceUsage(self, ctx:SysMLv2Parser.OccurrenceUsageContext):
1389
+ return self.visitChildren(ctx)
1390
+
1391
+
1392
+ # Visit a parse tree produced by SysMLv2Parser#individualUsage.
1393
+ def visitIndividualUsage(self, ctx:SysMLv2Parser.IndividualUsageContext):
1394
+ return self.visitChildren(ctx)
1395
+
1396
+
1397
+ # Visit a parse tree produced by SysMLv2Parser#portionUsage.
1398
+ def visitPortionUsage(self, ctx:SysMLv2Parser.PortionUsageContext):
1399
+ return self.visitChildren(ctx)
1400
+
1401
+
1402
+ # Visit a parse tree produced by SysMLv2Parser#portionKind.
1403
+ def visitPortionKind(self, ctx:SysMLv2Parser.PortionKindContext):
1404
+ return self.visitChildren(ctx)
1405
+
1406
+
1407
+ # Visit a parse tree produced by SysMLv2Parser#eventOccurrenceUsage.
1408
+ def visitEventOccurrenceUsage(self, ctx:SysMLv2Parser.EventOccurrenceUsageContext):
1409
+ return self.visitChildren(ctx)
1410
+
1411
+
1412
+ # Visit a parse tree produced by SysMLv2Parser#sourceSuccessionMember.
1413
+ def visitSourceSuccessionMember(self, ctx:SysMLv2Parser.SourceSuccessionMemberContext):
1414
+ return self.visitChildren(ctx)
1415
+
1416
+
1417
+ # Visit a parse tree produced by SysMLv2Parser#sourceSuccession.
1418
+ def visitSourceSuccession(self, ctx:SysMLv2Parser.SourceSuccessionContext):
1419
+ return self.visitChildren(ctx)
1420
+
1421
+
1422
+ # Visit a parse tree produced by SysMLv2Parser#sourceEndMember.
1423
+ def visitSourceEndMember(self, ctx:SysMLv2Parser.SourceEndMemberContext):
1424
+ return self.visitChildren(ctx)
1425
+
1426
+
1427
+ # Visit a parse tree produced by SysMLv2Parser#sourceEnd.
1428
+ def visitSourceEnd(self, ctx:SysMLv2Parser.SourceEndContext):
1429
+ return self.visitChildren(ctx)
1430
+
1431
+
1432
+ # Visit a parse tree produced by SysMLv2Parser#itemDefinition.
1433
+ def visitItemDefinition(self, ctx:SysMLv2Parser.ItemDefinitionContext):
1434
+ return self.visitChildren(ctx)
1435
+
1436
+
1437
+ # Visit a parse tree produced by SysMLv2Parser#itemUsage.
1438
+ def visitItemUsage(self, ctx:SysMLv2Parser.ItemUsageContext):
1439
+ return self.visitChildren(ctx)
1440
+
1441
+
1442
+ # Visit a parse tree produced by SysMLv2Parser#partDefinition.
1443
+ def visitPartDefinition(self, ctx:SysMLv2Parser.PartDefinitionContext):
1444
+ return self.visitChildren(ctx)
1445
+
1446
+
1447
+ # Visit a parse tree produced by SysMLv2Parser#partUsage.
1448
+ def visitPartUsage(self, ctx:SysMLv2Parser.PartUsageContext):
1449
+ return self.visitChildren(ctx)
1450
+
1451
+
1452
+ # Visit a parse tree produced by SysMLv2Parser#portDefinition.
1453
+ def visitPortDefinition(self, ctx:SysMLv2Parser.PortDefinitionContext):
1454
+ return self.visitChildren(ctx)
1455
+
1456
+
1457
+ # Visit a parse tree produced by SysMLv2Parser#conjugatedPortDefinitionMember.
1458
+ def visitConjugatedPortDefinitionMember(self, ctx:SysMLv2Parser.ConjugatedPortDefinitionMemberContext):
1459
+ return self.visitChildren(ctx)
1460
+
1461
+
1462
+ # Visit a parse tree produced by SysMLv2Parser#conjugatedPortDefinition.
1463
+ def visitConjugatedPortDefinition(self, ctx:SysMLv2Parser.ConjugatedPortDefinitionContext):
1464
+ return self.visitChildren(ctx)
1465
+
1466
+
1467
+ # Visit a parse tree produced by SysMLv2Parser#portUsage.
1468
+ def visitPortUsage(self, ctx:SysMLv2Parser.PortUsageContext):
1469
+ return self.visitChildren(ctx)
1470
+
1471
+
1472
+ # Visit a parse tree produced by SysMLv2Parser#conjugatedPortTyping.
1473
+ def visitConjugatedPortTyping(self, ctx:SysMLv2Parser.ConjugatedPortTypingContext):
1474
+ return self.visitChildren(ctx)
1475
+
1476
+
1477
+ # Visit a parse tree produced by SysMLv2Parser#connectionDefinition.
1478
+ def visitConnectionDefinition(self, ctx:SysMLv2Parser.ConnectionDefinitionContext):
1479
+ return self.visitChildren(ctx)
1480
+
1481
+
1482
+ # Visit a parse tree produced by SysMLv2Parser#connectionUsage.
1483
+ def visitConnectionUsage(self, ctx:SysMLv2Parser.ConnectionUsageContext):
1484
+ return self.visitChildren(ctx)
1485
+
1486
+
1487
+ # Visit a parse tree produced by SysMLv2Parser#connectorPart.
1488
+ def visitConnectorPart(self, ctx:SysMLv2Parser.ConnectorPartContext):
1489
+ return self.visitChildren(ctx)
1490
+
1491
+
1492
+ # Visit a parse tree produced by SysMLv2Parser#binaryConnectorPart.
1493
+ def visitBinaryConnectorPart(self, ctx:SysMLv2Parser.BinaryConnectorPartContext):
1494
+ return self.visitChildren(ctx)
1495
+
1496
+
1497
+ # Visit a parse tree produced by SysMLv2Parser#naryConnectorPart.
1498
+ def visitNaryConnectorPart(self, ctx:SysMLv2Parser.NaryConnectorPartContext):
1499
+ return self.visitChildren(ctx)
1500
+
1501
+
1502
+ # Visit a parse tree produced by SysMLv2Parser#bindingConnectorAsUsage.
1503
+ def visitBindingConnectorAsUsage(self, ctx:SysMLv2Parser.BindingConnectorAsUsageContext):
1504
+ return self.visitChildren(ctx)
1505
+
1506
+
1507
+ # Visit a parse tree produced by SysMLv2Parser#successionAsUsage.
1508
+ def visitSuccessionAsUsage(self, ctx:SysMLv2Parser.SuccessionAsUsageContext):
1509
+ return self.visitChildren(ctx)
1510
+
1511
+
1512
+ # Visit a parse tree produced by SysMLv2Parser#interfaceDefinition.
1513
+ def visitInterfaceDefinition(self, ctx:SysMLv2Parser.InterfaceDefinitionContext):
1514
+ return self.visitChildren(ctx)
1515
+
1516
+
1517
+ # Visit a parse tree produced by SysMLv2Parser#interfaceBody.
1518
+ def visitInterfaceBody(self, ctx:SysMLv2Parser.InterfaceBodyContext):
1519
+ return self.visitChildren(ctx)
1520
+
1521
+
1522
+ # Visit a parse tree produced by SysMLv2Parser#interfaceBodyItem.
1523
+ def visitInterfaceBodyItem(self, ctx:SysMLv2Parser.InterfaceBodyItemContext):
1524
+ return self.visitChildren(ctx)
1525
+
1526
+
1527
+ # Visit a parse tree produced by SysMLv2Parser#interfaceNonOccurrenceUsageMember.
1528
+ def visitInterfaceNonOccurrenceUsageMember(self, ctx:SysMLv2Parser.InterfaceNonOccurrenceUsageMemberContext):
1529
+ return self.visitChildren(ctx)
1530
+
1531
+
1532
+ # Visit a parse tree produced by SysMLv2Parser#interfaceNonOccurrenceUsageElement.
1533
+ def visitInterfaceNonOccurrenceUsageElement(self, ctx:SysMLv2Parser.InterfaceNonOccurrenceUsageElementContext):
1534
+ return self.visitChildren(ctx)
1535
+
1536
+
1537
+ # Visit a parse tree produced by SysMLv2Parser#interfaceOccurrenceUsageMember.
1538
+ def visitInterfaceOccurrenceUsageMember(self, ctx:SysMLv2Parser.InterfaceOccurrenceUsageMemberContext):
1539
+ return self.visitChildren(ctx)
1540
+
1541
+
1542
+ # Visit a parse tree produced by SysMLv2Parser#interfaceOccurrenceUsageElement.
1543
+ def visitInterfaceOccurrenceUsageElement(self, ctx:SysMLv2Parser.InterfaceOccurrenceUsageElementContext):
1544
+ return self.visitChildren(ctx)
1545
+
1546
+
1547
+ # Visit a parse tree produced by SysMLv2Parser#defaultInterfaceEnd.
1548
+ def visitDefaultInterfaceEnd(self, ctx:SysMLv2Parser.DefaultInterfaceEndContext):
1549
+ return self.visitChildren(ctx)
1550
+
1551
+
1552
+ # Visit a parse tree produced by SysMLv2Parser#interfaceUsage.
1553
+ def visitInterfaceUsage(self, ctx:SysMLv2Parser.InterfaceUsageContext):
1554
+ return self.visitChildren(ctx)
1555
+
1556
+
1557
+ # Visit a parse tree produced by SysMLv2Parser#interfaceUsageDeclaration.
1558
+ def visitInterfaceUsageDeclaration(self, ctx:SysMLv2Parser.InterfaceUsageDeclarationContext):
1559
+ return self.visitChildren(ctx)
1560
+
1561
+
1562
+ # Visit a parse tree produced by SysMLv2Parser#interfacePart.
1563
+ def visitInterfacePart(self, ctx:SysMLv2Parser.InterfacePartContext):
1564
+ return self.visitChildren(ctx)
1565
+
1566
+
1567
+ # Visit a parse tree produced by SysMLv2Parser#binaryInterfacePart.
1568
+ def visitBinaryInterfacePart(self, ctx:SysMLv2Parser.BinaryInterfacePartContext):
1569
+ return self.visitChildren(ctx)
1570
+
1571
+
1572
+ # Visit a parse tree produced by SysMLv2Parser#naryInterfacePart.
1573
+ def visitNaryInterfacePart(self, ctx:SysMLv2Parser.NaryInterfacePartContext):
1574
+ return self.visitChildren(ctx)
1575
+
1576
+
1577
+ # Visit a parse tree produced by SysMLv2Parser#interfaceEndMember.
1578
+ def visitInterfaceEndMember(self, ctx:SysMLv2Parser.InterfaceEndMemberContext):
1579
+ return self.visitChildren(ctx)
1580
+
1581
+
1582
+ # Visit a parse tree produced by SysMLv2Parser#interfaceEnd.
1583
+ def visitInterfaceEnd(self, ctx:SysMLv2Parser.InterfaceEndContext):
1584
+ return self.visitChildren(ctx)
1585
+
1586
+
1587
+ # Visit a parse tree produced by SysMLv2Parser#allocationDefinition.
1588
+ def visitAllocationDefinition(self, ctx:SysMLv2Parser.AllocationDefinitionContext):
1589
+ return self.visitChildren(ctx)
1590
+
1591
+
1592
+ # Visit a parse tree produced by SysMLv2Parser#allocationUsage.
1593
+ def visitAllocationUsage(self, ctx:SysMLv2Parser.AllocationUsageContext):
1594
+ return self.visitChildren(ctx)
1595
+
1596
+
1597
+ # Visit a parse tree produced by SysMLv2Parser#allocationUsageDeclaration.
1598
+ def visitAllocationUsageDeclaration(self, ctx:SysMLv2Parser.AllocationUsageDeclarationContext):
1599
+ return self.visitChildren(ctx)
1600
+
1601
+
1602
+ # Visit a parse tree produced by SysMLv2Parser#flowDefinition.
1603
+ def visitFlowDefinition(self, ctx:SysMLv2Parser.FlowDefinitionContext):
1604
+ return self.visitChildren(ctx)
1605
+
1606
+
1607
+ # Visit a parse tree produced by SysMLv2Parser#message.
1608
+ def visitMessage(self, ctx:SysMLv2Parser.MessageContext):
1609
+ return self.visitChildren(ctx)
1610
+
1611
+
1612
+ # Visit a parse tree produced by SysMLv2Parser#messageDeclaration.
1613
+ def visitMessageDeclaration(self, ctx:SysMLv2Parser.MessageDeclarationContext):
1614
+ return self.visitChildren(ctx)
1615
+
1616
+
1617
+ # Visit a parse tree produced by SysMLv2Parser#messageEventMember.
1618
+ def visitMessageEventMember(self, ctx:SysMLv2Parser.MessageEventMemberContext):
1619
+ return self.visitChildren(ctx)
1620
+
1621
+
1622
+ # Visit a parse tree produced by SysMLv2Parser#messageEvent.
1623
+ def visitMessageEvent(self, ctx:SysMLv2Parser.MessageEventContext):
1624
+ return self.visitChildren(ctx)
1625
+
1626
+
1627
+ # Visit a parse tree produced by SysMLv2Parser#flowUsage.
1628
+ def visitFlowUsage(self, ctx:SysMLv2Parser.FlowUsageContext):
1629
+ return self.visitChildren(ctx)
1630
+
1631
+
1632
+ # Visit a parse tree produced by SysMLv2Parser#successionFlowUsage.
1633
+ def visitSuccessionFlowUsage(self, ctx:SysMLv2Parser.SuccessionFlowUsageContext):
1634
+ return self.visitChildren(ctx)
1635
+
1636
+
1637
+ # Visit a parse tree produced by SysMLv2Parser#flowPayloadFeatureMember.
1638
+ def visitFlowPayloadFeatureMember(self, ctx:SysMLv2Parser.FlowPayloadFeatureMemberContext):
1639
+ return self.visitChildren(ctx)
1640
+
1641
+
1642
+ # Visit a parse tree produced by SysMLv2Parser#flowPayloadFeature.
1643
+ def visitFlowPayloadFeature(self, ctx:SysMLv2Parser.FlowPayloadFeatureContext):
1644
+ return self.visitChildren(ctx)
1645
+
1646
+
1647
+ # Visit a parse tree produced by SysMLv2Parser#flowEndSubsetting.
1648
+ def visitFlowEndSubsetting(self, ctx:SysMLv2Parser.FlowEndSubsettingContext):
1649
+ return self.visitChildren(ctx)
1650
+
1651
+
1652
+ # Visit a parse tree produced by SysMLv2Parser#featureChainPrefix.
1653
+ def visitFeatureChainPrefix(self, ctx:SysMLv2Parser.FeatureChainPrefixContext):
1654
+ return self.visitChildren(ctx)
1655
+
1656
+
1657
+ # Visit a parse tree produced by SysMLv2Parser#actionDefinition.
1658
+ def visitActionDefinition(self, ctx:SysMLv2Parser.ActionDefinitionContext):
1659
+ return self.visitChildren(ctx)
1660
+
1661
+
1662
+ # Visit a parse tree produced by SysMLv2Parser#actionBody.
1663
+ def visitActionBody(self, ctx:SysMLv2Parser.ActionBodyContext):
1664
+ return self.visitChildren(ctx)
1665
+
1666
+
1667
+ # Visit a parse tree produced by SysMLv2Parser#actionBodyItem.
1668
+ def visitActionBodyItem(self, ctx:SysMLv2Parser.ActionBodyItemContext):
1669
+ return self.visitChildren(ctx)
1670
+
1671
+
1672
+ # Visit a parse tree produced by SysMLv2Parser#nonBehaviorBodyItem.
1673
+ def visitNonBehaviorBodyItem(self, ctx:SysMLv2Parser.NonBehaviorBodyItemContext):
1674
+ return self.visitChildren(ctx)
1675
+
1676
+
1677
+ # Visit a parse tree produced by SysMLv2Parser#actionBehaviorMember.
1678
+ def visitActionBehaviorMember(self, ctx:SysMLv2Parser.ActionBehaviorMemberContext):
1679
+ return self.visitChildren(ctx)
1680
+
1681
+
1682
+ # Visit a parse tree produced by SysMLv2Parser#initialNodeMember.
1683
+ def visitInitialNodeMember(self, ctx:SysMLv2Parser.InitialNodeMemberContext):
1684
+ return self.visitChildren(ctx)
1685
+
1686
+
1687
+ # Visit a parse tree produced by SysMLv2Parser#actionNodeMember.
1688
+ def visitActionNodeMember(self, ctx:SysMLv2Parser.ActionNodeMemberContext):
1689
+ return self.visitChildren(ctx)
1690
+
1691
+
1692
+ # Visit a parse tree produced by SysMLv2Parser#actionTargetSuccessionMember.
1693
+ def visitActionTargetSuccessionMember(self, ctx:SysMLv2Parser.ActionTargetSuccessionMemberContext):
1694
+ return self.visitChildren(ctx)
1695
+
1696
+
1697
+ # Visit a parse tree produced by SysMLv2Parser#guardedSuccessionMember.
1698
+ def visitGuardedSuccessionMember(self, ctx:SysMLv2Parser.GuardedSuccessionMemberContext):
1699
+ return self.visitChildren(ctx)
1700
+
1701
+
1702
+ # Visit a parse tree produced by SysMLv2Parser#actionUsage.
1703
+ def visitActionUsage(self, ctx:SysMLv2Parser.ActionUsageContext):
1704
+ return self.visitChildren(ctx)
1705
+
1706
+
1707
+ # Visit a parse tree produced by SysMLv2Parser#actionUsageDeclaration.
1708
+ def visitActionUsageDeclaration(self, ctx:SysMLv2Parser.ActionUsageDeclarationContext):
1709
+ return self.visitChildren(ctx)
1710
+
1711
+
1712
+ # Visit a parse tree produced by SysMLv2Parser#performActionUsage.
1713
+ def visitPerformActionUsage(self, ctx:SysMLv2Parser.PerformActionUsageContext):
1714
+ return self.visitChildren(ctx)
1715
+
1716
+
1717
+ # Visit a parse tree produced by SysMLv2Parser#performActionUsageDeclaration.
1718
+ def visitPerformActionUsageDeclaration(self, ctx:SysMLv2Parser.PerformActionUsageDeclarationContext):
1719
+ return self.visitChildren(ctx)
1720
+
1721
+
1722
+ # Visit a parse tree produced by SysMLv2Parser#actionNode.
1723
+ def visitActionNode(self, ctx:SysMLv2Parser.ActionNodeContext):
1724
+ return self.visitChildren(ctx)
1725
+
1726
+
1727
+ # Visit a parse tree produced by SysMLv2Parser#actionNodeUsageDeclaration.
1728
+ def visitActionNodeUsageDeclaration(self, ctx:SysMLv2Parser.ActionNodeUsageDeclarationContext):
1729
+ return self.visitChildren(ctx)
1730
+
1731
+
1732
+ # Visit a parse tree produced by SysMLv2Parser#actionNodePrefix.
1733
+ def visitActionNodePrefix(self, ctx:SysMLv2Parser.ActionNodePrefixContext):
1734
+ return self.visitChildren(ctx)
1735
+
1736
+
1737
+ # Visit a parse tree produced by SysMLv2Parser#controlNode.
1738
+ def visitControlNode(self, ctx:SysMLv2Parser.ControlNodeContext):
1739
+ return self.visitChildren(ctx)
1740
+
1741
+
1742
+ # Visit a parse tree produced by SysMLv2Parser#controlNodePrefix.
1743
+ def visitControlNodePrefix(self, ctx:SysMLv2Parser.ControlNodePrefixContext):
1744
+ return self.visitChildren(ctx)
1745
+
1746
+
1747
+ # Visit a parse tree produced by SysMLv2Parser#mergeNode.
1748
+ def visitMergeNode(self, ctx:SysMLv2Parser.MergeNodeContext):
1749
+ return self.visitChildren(ctx)
1750
+
1751
+
1752
+ # Visit a parse tree produced by SysMLv2Parser#decisionNode.
1753
+ def visitDecisionNode(self, ctx:SysMLv2Parser.DecisionNodeContext):
1754
+ return self.visitChildren(ctx)
1755
+
1756
+
1757
+ # Visit a parse tree produced by SysMLv2Parser#joinNode.
1758
+ def visitJoinNode(self, ctx:SysMLv2Parser.JoinNodeContext):
1759
+ return self.visitChildren(ctx)
1760
+
1761
+
1762
+ # Visit a parse tree produced by SysMLv2Parser#forkNode.
1763
+ def visitForkNode(self, ctx:SysMLv2Parser.ForkNodeContext):
1764
+ return self.visitChildren(ctx)
1765
+
1766
+
1767
+ # Visit a parse tree produced by SysMLv2Parser#acceptNode.
1768
+ def visitAcceptNode(self, ctx:SysMLv2Parser.AcceptNodeContext):
1769
+ return self.visitChildren(ctx)
1770
+
1771
+
1772
+ # Visit a parse tree produced by SysMLv2Parser#acceptNodeDeclaration.
1773
+ def visitAcceptNodeDeclaration(self, ctx:SysMLv2Parser.AcceptNodeDeclarationContext):
1774
+ return self.visitChildren(ctx)
1775
+
1776
+
1777
+ # Visit a parse tree produced by SysMLv2Parser#acceptParameterPart.
1778
+ def visitAcceptParameterPart(self, ctx:SysMLv2Parser.AcceptParameterPartContext):
1779
+ return self.visitChildren(ctx)
1780
+
1781
+
1782
+ # Visit a parse tree produced by SysMLv2Parser#payloadParameterMember.
1783
+ def visitPayloadParameterMember(self, ctx:SysMLv2Parser.PayloadParameterMemberContext):
1784
+ return self.visitChildren(ctx)
1785
+
1786
+
1787
+ # Visit a parse tree produced by SysMLv2Parser#payloadParameter.
1788
+ def visitPayloadParameter(self, ctx:SysMLv2Parser.PayloadParameterContext):
1789
+ return self.visitChildren(ctx)
1790
+
1791
+
1792
+ # Visit a parse tree produced by SysMLv2Parser#triggerValuePart.
1793
+ def visitTriggerValuePart(self, ctx:SysMLv2Parser.TriggerValuePartContext):
1794
+ return self.visitChildren(ctx)
1795
+
1796
+
1797
+ # Visit a parse tree produced by SysMLv2Parser#triggerFeatureValue.
1798
+ def visitTriggerFeatureValue(self, ctx:SysMLv2Parser.TriggerFeatureValueContext):
1799
+ return self.visitChildren(ctx)
1800
+
1801
+
1802
+ # Visit a parse tree produced by SysMLv2Parser#triggerExpression.
1803
+ def visitTriggerExpression(self, ctx:SysMLv2Parser.TriggerExpressionContext):
1804
+ return self.visitChildren(ctx)
1805
+
1806
+
1807
+ # Visit a parse tree produced by SysMLv2Parser#sendNode.
1808
+ def visitSendNode(self, ctx:SysMLv2Parser.SendNodeContext):
1809
+ return self.visitChildren(ctx)
1810
+
1811
+
1812
+ # Visit a parse tree produced by SysMLv2Parser#sendNodeDeclaration.
1813
+ def visitSendNodeDeclaration(self, ctx:SysMLv2Parser.SendNodeDeclarationContext):
1814
+ return self.visitChildren(ctx)
1815
+
1816
+
1817
+ # Visit a parse tree produced by SysMLv2Parser#senderReceiverPart.
1818
+ def visitSenderReceiverPart(self, ctx:SysMLv2Parser.SenderReceiverPartContext):
1819
+ return self.visitChildren(ctx)
1820
+
1821
+
1822
+ # Visit a parse tree produced by SysMLv2Parser#nodeParameterMember.
1823
+ def visitNodeParameterMember(self, ctx:SysMLv2Parser.NodeParameterMemberContext):
1824
+ return self.visitChildren(ctx)
1825
+
1826
+
1827
+ # Visit a parse tree produced by SysMLv2Parser#nodeParameter.
1828
+ def visitNodeParameter(self, ctx:SysMLv2Parser.NodeParameterContext):
1829
+ return self.visitChildren(ctx)
1830
+
1831
+
1832
+ # Visit a parse tree produced by SysMLv2Parser#featureBinding.
1833
+ def visitFeatureBinding(self, ctx:SysMLv2Parser.FeatureBindingContext):
1834
+ return self.visitChildren(ctx)
1835
+
1836
+
1837
+ # Visit a parse tree produced by SysMLv2Parser#emptyParameterMember.
1838
+ def visitEmptyParameterMember(self, ctx:SysMLv2Parser.EmptyParameterMemberContext):
1839
+ return self.visitChildren(ctx)
1840
+
1841
+
1842
+ # Visit a parse tree produced by SysMLv2Parser#assignmentNode.
1843
+ def visitAssignmentNode(self, ctx:SysMLv2Parser.AssignmentNodeContext):
1844
+ return self.visitChildren(ctx)
1845
+
1846
+
1847
+ # Visit a parse tree produced by SysMLv2Parser#assignmentNodeDeclaration.
1848
+ def visitAssignmentNodeDeclaration(self, ctx:SysMLv2Parser.AssignmentNodeDeclarationContext):
1849
+ return self.visitChildren(ctx)
1850
+
1851
+
1852
+ # Visit a parse tree produced by SysMLv2Parser#assignmentTargetMember.
1853
+ def visitAssignmentTargetMember(self, ctx:SysMLv2Parser.AssignmentTargetMemberContext):
1854
+ return self.visitChildren(ctx)
1855
+
1856
+
1857
+ # Visit a parse tree produced by SysMLv2Parser#assignmentTargetParameter.
1858
+ def visitAssignmentTargetParameter(self, ctx:SysMLv2Parser.AssignmentTargetParameterContext):
1859
+ return self.visitChildren(ctx)
1860
+
1861
+
1862
+ # Visit a parse tree produced by SysMLv2Parser#assignmentTargetBinding.
1863
+ def visitAssignmentTargetBinding(self, ctx:SysMLv2Parser.AssignmentTargetBindingContext):
1864
+ return self.visitChildren(ctx)
1865
+
1866
+
1867
+ # Visit a parse tree produced by SysMLv2Parser#terminateNode.
1868
+ def visitTerminateNode(self, ctx:SysMLv2Parser.TerminateNodeContext):
1869
+ return self.visitChildren(ctx)
1870
+
1871
+
1872
+ # Visit a parse tree produced by SysMLv2Parser#ifNode.
1873
+ def visitIfNode(self, ctx:SysMLv2Parser.IfNodeContext):
1874
+ return self.visitChildren(ctx)
1875
+
1876
+
1877
+ # Visit a parse tree produced by SysMLv2Parser#expressionParameterMember.
1878
+ def visitExpressionParameterMember(self, ctx:SysMLv2Parser.ExpressionParameterMemberContext):
1879
+ return self.visitChildren(ctx)
1880
+
1881
+
1882
+ # Visit a parse tree produced by SysMLv2Parser#actionBodyParameterMember.
1883
+ def visitActionBodyParameterMember(self, ctx:SysMLv2Parser.ActionBodyParameterMemberContext):
1884
+ return self.visitChildren(ctx)
1885
+
1886
+
1887
+ # Visit a parse tree produced by SysMLv2Parser#actionBodyParameter.
1888
+ def visitActionBodyParameter(self, ctx:SysMLv2Parser.ActionBodyParameterContext):
1889
+ return self.visitChildren(ctx)
1890
+
1891
+
1892
+ # Visit a parse tree produced by SysMLv2Parser#ifNodeParameterMember.
1893
+ def visitIfNodeParameterMember(self, ctx:SysMLv2Parser.IfNodeParameterMemberContext):
1894
+ return self.visitChildren(ctx)
1895
+
1896
+
1897
+ # Visit a parse tree produced by SysMLv2Parser#whileLoopNode.
1898
+ def visitWhileLoopNode(self, ctx:SysMLv2Parser.WhileLoopNodeContext):
1899
+ return self.visitChildren(ctx)
1900
+
1901
+
1902
+ # Visit a parse tree produced by SysMLv2Parser#forLoopNode.
1903
+ def visitForLoopNode(self, ctx:SysMLv2Parser.ForLoopNodeContext):
1904
+ return self.visitChildren(ctx)
1905
+
1906
+
1907
+ # Visit a parse tree produced by SysMLv2Parser#forVariableDeclarationMember.
1908
+ def visitForVariableDeclarationMember(self, ctx:SysMLv2Parser.ForVariableDeclarationMemberContext):
1909
+ return self.visitChildren(ctx)
1910
+
1911
+
1912
+ # Visit a parse tree produced by SysMLv2Parser#forVariableDeclaration.
1913
+ def visitForVariableDeclaration(self, ctx:SysMLv2Parser.ForVariableDeclarationContext):
1914
+ return self.visitChildren(ctx)
1915
+
1916
+
1917
+ # Visit a parse tree produced by SysMLv2Parser#actionTargetSuccession.
1918
+ def visitActionTargetSuccession(self, ctx:SysMLv2Parser.ActionTargetSuccessionContext):
1919
+ return self.visitChildren(ctx)
1920
+
1921
+
1922
+ # Visit a parse tree produced by SysMLv2Parser#targetSuccession.
1923
+ def visitTargetSuccession(self, ctx:SysMLv2Parser.TargetSuccessionContext):
1924
+ return self.visitChildren(ctx)
1925
+
1926
+
1927
+ # Visit a parse tree produced by SysMLv2Parser#guardedTargetSuccession.
1928
+ def visitGuardedTargetSuccession(self, ctx:SysMLv2Parser.GuardedTargetSuccessionContext):
1929
+ return self.visitChildren(ctx)
1930
+
1931
+
1932
+ # Visit a parse tree produced by SysMLv2Parser#defaultTargetSuccession.
1933
+ def visitDefaultTargetSuccession(self, ctx:SysMLv2Parser.DefaultTargetSuccessionContext):
1934
+ return self.visitChildren(ctx)
1935
+
1936
+
1937
+ # Visit a parse tree produced by SysMLv2Parser#guardedSuccession.
1938
+ def visitGuardedSuccession(self, ctx:SysMLv2Parser.GuardedSuccessionContext):
1939
+ return self.visitChildren(ctx)
1940
+
1941
+
1942
+ # Visit a parse tree produced by SysMLv2Parser#stateDefinition.
1943
+ def visitStateDefinition(self, ctx:SysMLv2Parser.StateDefinitionContext):
1944
+ return self.visitChildren(ctx)
1945
+
1946
+
1947
+ # Visit a parse tree produced by SysMLv2Parser#stateDefBody.
1948
+ def visitStateDefBody(self, ctx:SysMLv2Parser.StateDefBodyContext):
1949
+ return self.visitChildren(ctx)
1950
+
1951
+
1952
+ # Visit a parse tree produced by SysMLv2Parser#stateBodyItem.
1953
+ def visitStateBodyItem(self, ctx:SysMLv2Parser.StateBodyItemContext):
1954
+ return self.visitChildren(ctx)
1955
+
1956
+
1957
+ # Visit a parse tree produced by SysMLv2Parser#entryActionMember.
1958
+ def visitEntryActionMember(self, ctx:SysMLv2Parser.EntryActionMemberContext):
1959
+ return self.visitChildren(ctx)
1960
+
1961
+
1962
+ # Visit a parse tree produced by SysMLv2Parser#doActionMember.
1963
+ def visitDoActionMember(self, ctx:SysMLv2Parser.DoActionMemberContext):
1964
+ return self.visitChildren(ctx)
1965
+
1966
+
1967
+ # Visit a parse tree produced by SysMLv2Parser#exitActionMember.
1968
+ def visitExitActionMember(self, ctx:SysMLv2Parser.ExitActionMemberContext):
1969
+ return self.visitChildren(ctx)
1970
+
1971
+
1972
+ # Visit a parse tree produced by SysMLv2Parser#entryTransitionMember.
1973
+ def visitEntryTransitionMember(self, ctx:SysMLv2Parser.EntryTransitionMemberContext):
1974
+ return self.visitChildren(ctx)
1975
+
1976
+
1977
+ # Visit a parse tree produced by SysMLv2Parser#stateActionUsage.
1978
+ def visitStateActionUsage(self, ctx:SysMLv2Parser.StateActionUsageContext):
1979
+ return self.visitChildren(ctx)
1980
+
1981
+
1982
+ # Visit a parse tree produced by SysMLv2Parser#statePerformActionUsage.
1983
+ def visitStatePerformActionUsage(self, ctx:SysMLv2Parser.StatePerformActionUsageContext):
1984
+ return self.visitChildren(ctx)
1985
+
1986
+
1987
+ # Visit a parse tree produced by SysMLv2Parser#stateAcceptActionUsage.
1988
+ def visitStateAcceptActionUsage(self, ctx:SysMLv2Parser.StateAcceptActionUsageContext):
1989
+ return self.visitChildren(ctx)
1990
+
1991
+
1992
+ # Visit a parse tree produced by SysMLv2Parser#stateSendActionUsage.
1993
+ def visitStateSendActionUsage(self, ctx:SysMLv2Parser.StateSendActionUsageContext):
1994
+ return self.visitChildren(ctx)
1995
+
1996
+
1997
+ # Visit a parse tree produced by SysMLv2Parser#stateAssignmentActionUsage.
1998
+ def visitStateAssignmentActionUsage(self, ctx:SysMLv2Parser.StateAssignmentActionUsageContext):
1999
+ return self.visitChildren(ctx)
2000
+
2001
+
2002
+ # Visit a parse tree produced by SysMLv2Parser#transitionUsageMember.
2003
+ def visitTransitionUsageMember(self, ctx:SysMLv2Parser.TransitionUsageMemberContext):
2004
+ return self.visitChildren(ctx)
2005
+
2006
+
2007
+ # Visit a parse tree produced by SysMLv2Parser#targetTransitionUsageMember.
2008
+ def visitTargetTransitionUsageMember(self, ctx:SysMLv2Parser.TargetTransitionUsageMemberContext):
2009
+ return self.visitChildren(ctx)
2010
+
2011
+
2012
+ # Visit a parse tree produced by SysMLv2Parser#stateUsage.
2013
+ def visitStateUsage(self, ctx:SysMLv2Parser.StateUsageContext):
2014
+ return self.visitChildren(ctx)
2015
+
2016
+
2017
+ # Visit a parse tree produced by SysMLv2Parser#stateUsageBody.
2018
+ def visitStateUsageBody(self, ctx:SysMLv2Parser.StateUsageBodyContext):
2019
+ return self.visitChildren(ctx)
2020
+
2021
+
2022
+ # Visit a parse tree produced by SysMLv2Parser#exhibitStateUsage.
2023
+ def visitExhibitStateUsage(self, ctx:SysMLv2Parser.ExhibitStateUsageContext):
2024
+ return self.visitChildren(ctx)
2025
+
2026
+
2027
+ # Visit a parse tree produced by SysMLv2Parser#transitionUsage.
2028
+ def visitTransitionUsage(self, ctx:SysMLv2Parser.TransitionUsageContext):
2029
+ return self.visitChildren(ctx)
2030
+
2031
+
2032
+ # Visit a parse tree produced by SysMLv2Parser#targetTransitionUsage.
2033
+ def visitTargetTransitionUsage(self, ctx:SysMLv2Parser.TargetTransitionUsageContext):
2034
+ return self.visitChildren(ctx)
2035
+
2036
+
2037
+ # Visit a parse tree produced by SysMLv2Parser#triggerActionMember.
2038
+ def visitTriggerActionMember(self, ctx:SysMLv2Parser.TriggerActionMemberContext):
2039
+ return self.visitChildren(ctx)
2040
+
2041
+
2042
+ # Visit a parse tree produced by SysMLv2Parser#triggerAction.
2043
+ def visitTriggerAction(self, ctx:SysMLv2Parser.TriggerActionContext):
2044
+ return self.visitChildren(ctx)
2045
+
2046
+
2047
+ # Visit a parse tree produced by SysMLv2Parser#guardExpressionMember.
2048
+ def visitGuardExpressionMember(self, ctx:SysMLv2Parser.GuardExpressionMemberContext):
2049
+ return self.visitChildren(ctx)
2050
+
2051
+
2052
+ # Visit a parse tree produced by SysMLv2Parser#effectBehaviorMember.
2053
+ def visitEffectBehaviorMember(self, ctx:SysMLv2Parser.EffectBehaviorMemberContext):
2054
+ return self.visitChildren(ctx)
2055
+
2056
+
2057
+ # Visit a parse tree produced by SysMLv2Parser#effectBehaviorUsage.
2058
+ def visitEffectBehaviorUsage(self, ctx:SysMLv2Parser.EffectBehaviorUsageContext):
2059
+ return self.visitChildren(ctx)
2060
+
2061
+
2062
+ # Visit a parse tree produced by SysMLv2Parser#transitionPerformActionUsage.
2063
+ def visitTransitionPerformActionUsage(self, ctx:SysMLv2Parser.TransitionPerformActionUsageContext):
2064
+ return self.visitChildren(ctx)
2065
+
2066
+
2067
+ # Visit a parse tree produced by SysMLv2Parser#transitionAcceptActionUsage.
2068
+ def visitTransitionAcceptActionUsage(self, ctx:SysMLv2Parser.TransitionAcceptActionUsageContext):
2069
+ return self.visitChildren(ctx)
2070
+
2071
+
2072
+ # Visit a parse tree produced by SysMLv2Parser#transitionSendActionUsage.
2073
+ def visitTransitionSendActionUsage(self, ctx:SysMLv2Parser.TransitionSendActionUsageContext):
2074
+ return self.visitChildren(ctx)
2075
+
2076
+
2077
+ # Visit a parse tree produced by SysMLv2Parser#transitionAssignmentActionUsage.
2078
+ def visitTransitionAssignmentActionUsage(self, ctx:SysMLv2Parser.TransitionAssignmentActionUsageContext):
2079
+ return self.visitChildren(ctx)
2080
+
2081
+
2082
+ # Visit a parse tree produced by SysMLv2Parser#transitionSuccessionMember.
2083
+ def visitTransitionSuccessionMember(self, ctx:SysMLv2Parser.TransitionSuccessionMemberContext):
2084
+ return self.visitChildren(ctx)
2085
+
2086
+
2087
+ # Visit a parse tree produced by SysMLv2Parser#transitionSuccession.
2088
+ def visitTransitionSuccession(self, ctx:SysMLv2Parser.TransitionSuccessionContext):
2089
+ return self.visitChildren(ctx)
2090
+
2091
+
2092
+ # Visit a parse tree produced by SysMLv2Parser#emptyEndMember.
2093
+ def visitEmptyEndMember(self, ctx:SysMLv2Parser.EmptyEndMemberContext):
2094
+ return self.visitChildren(ctx)
2095
+
2096
+
2097
+ # Visit a parse tree produced by SysMLv2Parser#calculationDefinition.
2098
+ def visitCalculationDefinition(self, ctx:SysMLv2Parser.CalculationDefinitionContext):
2099
+ return self.visitChildren(ctx)
2100
+
2101
+
2102
+ # Visit a parse tree produced by SysMLv2Parser#calculationUsage.
2103
+ def visitCalculationUsage(self, ctx:SysMLv2Parser.CalculationUsageContext):
2104
+ return self.visitChildren(ctx)
2105
+
2106
+
2107
+ # Visit a parse tree produced by SysMLv2Parser#calculationBody.
2108
+ def visitCalculationBody(self, ctx:SysMLv2Parser.CalculationBodyContext):
2109
+ return self.visitChildren(ctx)
2110
+
2111
+
2112
+ # Visit a parse tree produced by SysMLv2Parser#calculationBodyPart.
2113
+ def visitCalculationBodyPart(self, ctx:SysMLv2Parser.CalculationBodyPartContext):
2114
+ return self.visitChildren(ctx)
2115
+
2116
+
2117
+ # Visit a parse tree produced by SysMLv2Parser#calculationBodyItem.
2118
+ def visitCalculationBodyItem(self, ctx:SysMLv2Parser.CalculationBodyItemContext):
2119
+ return self.visitChildren(ctx)
2120
+
2121
+
2122
+ # Visit a parse tree produced by SysMLv2Parser#returnParameterMember.
2123
+ def visitReturnParameterMember(self, ctx:SysMLv2Parser.ReturnParameterMemberContext):
2124
+ return self.visitChildren(ctx)
2125
+
2126
+
2127
+ # Visit a parse tree produced by SysMLv2Parser#constraintDefinition.
2128
+ def visitConstraintDefinition(self, ctx:SysMLv2Parser.ConstraintDefinitionContext):
2129
+ return self.visitChildren(ctx)
2130
+
2131
+
2132
+ # Visit a parse tree produced by SysMLv2Parser#constraintUsage.
2133
+ def visitConstraintUsage(self, ctx:SysMLv2Parser.ConstraintUsageContext):
2134
+ return self.visitChildren(ctx)
2135
+
2136
+
2137
+ # Visit a parse tree produced by SysMLv2Parser#assertConstraintUsage.
2138
+ def visitAssertConstraintUsage(self, ctx:SysMLv2Parser.AssertConstraintUsageContext):
2139
+ return self.visitChildren(ctx)
2140
+
2141
+
2142
+ # Visit a parse tree produced by SysMLv2Parser#constraintUsageDeclaration.
2143
+ def visitConstraintUsageDeclaration(self, ctx:SysMLv2Parser.ConstraintUsageDeclarationContext):
2144
+ return self.visitChildren(ctx)
2145
+
2146
+
2147
+ # Visit a parse tree produced by SysMLv2Parser#requirementDefinition.
2148
+ def visitRequirementDefinition(self, ctx:SysMLv2Parser.RequirementDefinitionContext):
2149
+ return self.visitChildren(ctx)
2150
+
2151
+
2152
+ # Visit a parse tree produced by SysMLv2Parser#requirementBody.
2153
+ def visitRequirementBody(self, ctx:SysMLv2Parser.RequirementBodyContext):
2154
+ return self.visitChildren(ctx)
2155
+
2156
+
2157
+ # Visit a parse tree produced by SysMLv2Parser#requirementBodyItem.
2158
+ def visitRequirementBodyItem(self, ctx:SysMLv2Parser.RequirementBodyItemContext):
2159
+ return self.visitChildren(ctx)
2160
+
2161
+
2162
+ # Visit a parse tree produced by SysMLv2Parser#subjectMember.
2163
+ def visitSubjectMember(self, ctx:SysMLv2Parser.SubjectMemberContext):
2164
+ return self.visitChildren(ctx)
2165
+
2166
+
2167
+ # Visit a parse tree produced by SysMLv2Parser#subjectUsage.
2168
+ def visitSubjectUsage(self, ctx:SysMLv2Parser.SubjectUsageContext):
2169
+ return self.visitChildren(ctx)
2170
+
2171
+
2172
+ # Visit a parse tree produced by SysMLv2Parser#requirementConstraintMember.
2173
+ def visitRequirementConstraintMember(self, ctx:SysMLv2Parser.RequirementConstraintMemberContext):
2174
+ return self.visitChildren(ctx)
2175
+
2176
+
2177
+ # Visit a parse tree produced by SysMLv2Parser#requirementKind.
2178
+ def visitRequirementKind(self, ctx:SysMLv2Parser.RequirementKindContext):
2179
+ return self.visitChildren(ctx)
2180
+
2181
+
2182
+ # Visit a parse tree produced by SysMLv2Parser#requirementConstraintUsage.
2183
+ def visitRequirementConstraintUsage(self, ctx:SysMLv2Parser.RequirementConstraintUsageContext):
2184
+ return self.visitChildren(ctx)
2185
+
2186
+
2187
+ # Visit a parse tree produced by SysMLv2Parser#framedConcernMember.
2188
+ def visitFramedConcernMember(self, ctx:SysMLv2Parser.FramedConcernMemberContext):
2189
+ return self.visitChildren(ctx)
2190
+
2191
+
2192
+ # Visit a parse tree produced by SysMLv2Parser#framedConcernUsage.
2193
+ def visitFramedConcernUsage(self, ctx:SysMLv2Parser.FramedConcernUsageContext):
2194
+ return self.visitChildren(ctx)
2195
+
2196
+
2197
+ # Visit a parse tree produced by SysMLv2Parser#actorMember.
2198
+ def visitActorMember(self, ctx:SysMLv2Parser.ActorMemberContext):
2199
+ return self.visitChildren(ctx)
2200
+
2201
+
2202
+ # Visit a parse tree produced by SysMLv2Parser#actorUsage.
2203
+ def visitActorUsage(self, ctx:SysMLv2Parser.ActorUsageContext):
2204
+ return self.visitChildren(ctx)
2205
+
2206
+
2207
+ # Visit a parse tree produced by SysMLv2Parser#stakeholderMember.
2208
+ def visitStakeholderMember(self, ctx:SysMLv2Parser.StakeholderMemberContext):
2209
+ return self.visitChildren(ctx)
2210
+
2211
+
2212
+ # Visit a parse tree produced by SysMLv2Parser#stakeholderUsage.
2213
+ def visitStakeholderUsage(self, ctx:SysMLv2Parser.StakeholderUsageContext):
2214
+ return self.visitChildren(ctx)
2215
+
2216
+
2217
+ # Visit a parse tree produced by SysMLv2Parser#requirementUsage.
2218
+ def visitRequirementUsage(self, ctx:SysMLv2Parser.RequirementUsageContext):
2219
+ return self.visitChildren(ctx)
2220
+
2221
+
2222
+ # Visit a parse tree produced by SysMLv2Parser#satisfyRequirementUsage.
2223
+ def visitSatisfyRequirementUsage(self, ctx:SysMLv2Parser.SatisfyRequirementUsageContext):
2224
+ return self.visitChildren(ctx)
2225
+
2226
+
2227
+ # Visit a parse tree produced by SysMLv2Parser#satisfactionSubjectMember.
2228
+ def visitSatisfactionSubjectMember(self, ctx:SysMLv2Parser.SatisfactionSubjectMemberContext):
2229
+ return self.visitChildren(ctx)
2230
+
2231
+
2232
+ # Visit a parse tree produced by SysMLv2Parser#satisfactionParameter.
2233
+ def visitSatisfactionParameter(self, ctx:SysMLv2Parser.SatisfactionParameterContext):
2234
+ return self.visitChildren(ctx)
2235
+
2236
+
2237
+ # Visit a parse tree produced by SysMLv2Parser#satisfactionFeatureValue.
2238
+ def visitSatisfactionFeatureValue(self, ctx:SysMLv2Parser.SatisfactionFeatureValueContext):
2239
+ return self.visitChildren(ctx)
2240
+
2241
+
2242
+ # Visit a parse tree produced by SysMLv2Parser#satisfactionReferenceExpression.
2243
+ def visitSatisfactionReferenceExpression(self, ctx:SysMLv2Parser.SatisfactionReferenceExpressionContext):
2244
+ return self.visitChildren(ctx)
2245
+
2246
+
2247
+ # Visit a parse tree produced by SysMLv2Parser#concernDefinition.
2248
+ def visitConcernDefinition(self, ctx:SysMLv2Parser.ConcernDefinitionContext):
2249
+ return self.visitChildren(ctx)
2250
+
2251
+
2252
+ # Visit a parse tree produced by SysMLv2Parser#concernUsage.
2253
+ def visitConcernUsage(self, ctx:SysMLv2Parser.ConcernUsageContext):
2254
+ return self.visitChildren(ctx)
2255
+
2256
+
2257
+ # Visit a parse tree produced by SysMLv2Parser#caseDefinition.
2258
+ def visitCaseDefinition(self, ctx:SysMLv2Parser.CaseDefinitionContext):
2259
+ return self.visitChildren(ctx)
2260
+
2261
+
2262
+ # Visit a parse tree produced by SysMLv2Parser#caseUsage.
2263
+ def visitCaseUsage(self, ctx:SysMLv2Parser.CaseUsageContext):
2264
+ return self.visitChildren(ctx)
2265
+
2266
+
2267
+ # Visit a parse tree produced by SysMLv2Parser#caseBody.
2268
+ def visitCaseBody(self, ctx:SysMLv2Parser.CaseBodyContext):
2269
+ return self.visitChildren(ctx)
2270
+
2271
+
2272
+ # Visit a parse tree produced by SysMLv2Parser#caseBodyItem.
2273
+ def visitCaseBodyItem(self, ctx:SysMLv2Parser.CaseBodyItemContext):
2274
+ return self.visitChildren(ctx)
2275
+
2276
+
2277
+ # Visit a parse tree produced by SysMLv2Parser#objectiveMember.
2278
+ def visitObjectiveMember(self, ctx:SysMLv2Parser.ObjectiveMemberContext):
2279
+ return self.visitChildren(ctx)
2280
+
2281
+
2282
+ # Visit a parse tree produced by SysMLv2Parser#objectiveRequirementUsage.
2283
+ def visitObjectiveRequirementUsage(self, ctx:SysMLv2Parser.ObjectiveRequirementUsageContext):
2284
+ return self.visitChildren(ctx)
2285
+
2286
+
2287
+ # Visit a parse tree produced by SysMLv2Parser#analysisCaseDefinition.
2288
+ def visitAnalysisCaseDefinition(self, ctx:SysMLv2Parser.AnalysisCaseDefinitionContext):
2289
+ return self.visitChildren(ctx)
2290
+
2291
+
2292
+ # Visit a parse tree produced by SysMLv2Parser#analysisCaseUsage.
2293
+ def visitAnalysisCaseUsage(self, ctx:SysMLv2Parser.AnalysisCaseUsageContext):
2294
+ return self.visitChildren(ctx)
2295
+
2296
+
2297
+ # Visit a parse tree produced by SysMLv2Parser#verificationCaseDefinition.
2298
+ def visitVerificationCaseDefinition(self, ctx:SysMLv2Parser.VerificationCaseDefinitionContext):
2299
+ return self.visitChildren(ctx)
2300
+
2301
+
2302
+ # Visit a parse tree produced by SysMLv2Parser#verificationCaseUsage.
2303
+ def visitVerificationCaseUsage(self, ctx:SysMLv2Parser.VerificationCaseUsageContext):
2304
+ return self.visitChildren(ctx)
2305
+
2306
+
2307
+ # Visit a parse tree produced by SysMLv2Parser#requirementVerificationMember.
2308
+ def visitRequirementVerificationMember(self, ctx:SysMLv2Parser.RequirementVerificationMemberContext):
2309
+ return self.visitChildren(ctx)
2310
+
2311
+
2312
+ # Visit a parse tree produced by SysMLv2Parser#requirementVerificationUsage.
2313
+ def visitRequirementVerificationUsage(self, ctx:SysMLv2Parser.RequirementVerificationUsageContext):
2314
+ return self.visitChildren(ctx)
2315
+
2316
+
2317
+ # Visit a parse tree produced by SysMLv2Parser#useCaseDefinition.
2318
+ def visitUseCaseDefinition(self, ctx:SysMLv2Parser.UseCaseDefinitionContext):
2319
+ return self.visitChildren(ctx)
2320
+
2321
+
2322
+ # Visit a parse tree produced by SysMLv2Parser#useCaseUsage.
2323
+ def visitUseCaseUsage(self, ctx:SysMLv2Parser.UseCaseUsageContext):
2324
+ return self.visitChildren(ctx)
2325
+
2326
+
2327
+ # Visit a parse tree produced by SysMLv2Parser#includeUseCaseUsage.
2328
+ def visitIncludeUseCaseUsage(self, ctx:SysMLv2Parser.IncludeUseCaseUsageContext):
2329
+ return self.visitChildren(ctx)
2330
+
2331
+
2332
+ # Visit a parse tree produced by SysMLv2Parser#viewDefinition.
2333
+ def visitViewDefinition(self, ctx:SysMLv2Parser.ViewDefinitionContext):
2334
+ return self.visitChildren(ctx)
2335
+
2336
+
2337
+ # Visit a parse tree produced by SysMLv2Parser#viewDefinitionBody.
2338
+ def visitViewDefinitionBody(self, ctx:SysMLv2Parser.ViewDefinitionBodyContext):
2339
+ return self.visitChildren(ctx)
2340
+
2341
+
2342
+ # Visit a parse tree produced by SysMLv2Parser#viewDefinitionBodyItem.
2343
+ def visitViewDefinitionBodyItem(self, ctx:SysMLv2Parser.ViewDefinitionBodyItemContext):
2344
+ return self.visitChildren(ctx)
2345
+
2346
+
2347
+ # Visit a parse tree produced by SysMLv2Parser#viewRenderingMember.
2348
+ def visitViewRenderingMember(self, ctx:SysMLv2Parser.ViewRenderingMemberContext):
2349
+ return self.visitChildren(ctx)
2350
+
2351
+
2352
+ # Visit a parse tree produced by SysMLv2Parser#viewRenderingUsage.
2353
+ def visitViewRenderingUsage(self, ctx:SysMLv2Parser.ViewRenderingUsageContext):
2354
+ return self.visitChildren(ctx)
2355
+
2356
+
2357
+ # Visit a parse tree produced by SysMLv2Parser#viewUsage.
2358
+ def visitViewUsage(self, ctx:SysMLv2Parser.ViewUsageContext):
2359
+ return self.visitChildren(ctx)
2360
+
2361
+
2362
+ # Visit a parse tree produced by SysMLv2Parser#viewBody.
2363
+ def visitViewBody(self, ctx:SysMLv2Parser.ViewBodyContext):
2364
+ return self.visitChildren(ctx)
2365
+
2366
+
2367
+ # Visit a parse tree produced by SysMLv2Parser#viewBodyItem.
2368
+ def visitViewBodyItem(self, ctx:SysMLv2Parser.ViewBodyItemContext):
2369
+ return self.visitChildren(ctx)
2370
+
2371
+
2372
+ # Visit a parse tree produced by SysMLv2Parser#expose.
2373
+ def visitExpose(self, ctx:SysMLv2Parser.ExposeContext):
2374
+ return self.visitChildren(ctx)
2375
+
2376
+
2377
+ # Visit a parse tree produced by SysMLv2Parser#membershipExpose.
2378
+ def visitMembershipExpose(self, ctx:SysMLv2Parser.MembershipExposeContext):
2379
+ return self.visitChildren(ctx)
2380
+
2381
+
2382
+ # Visit a parse tree produced by SysMLv2Parser#namespaceExpose.
2383
+ def visitNamespaceExpose(self, ctx:SysMLv2Parser.NamespaceExposeContext):
2384
+ return self.visitChildren(ctx)
2385
+
2386
+
2387
+ # Visit a parse tree produced by SysMLv2Parser#viewpointDefinition.
2388
+ def visitViewpointDefinition(self, ctx:SysMLv2Parser.ViewpointDefinitionContext):
2389
+ return self.visitChildren(ctx)
2390
+
2391
+
2392
+ # Visit a parse tree produced by SysMLv2Parser#viewpointUsage.
2393
+ def visitViewpointUsage(self, ctx:SysMLv2Parser.ViewpointUsageContext):
2394
+ return self.visitChildren(ctx)
2395
+
2396
+
2397
+ # Visit a parse tree produced by SysMLv2Parser#renderingDefinition.
2398
+ def visitRenderingDefinition(self, ctx:SysMLv2Parser.RenderingDefinitionContext):
2399
+ return self.visitChildren(ctx)
2400
+
2401
+
2402
+ # Visit a parse tree produced by SysMLv2Parser#renderingUsage.
2403
+ def visitRenderingUsage(self, ctx:SysMLv2Parser.RenderingUsageContext):
2404
+ return self.visitChildren(ctx)
2405
+
2406
+
2407
+ # Visit a parse tree produced by SysMLv2Parser#metadataDefinition.
2408
+ def visitMetadataDefinition(self, ctx:SysMLv2Parser.MetadataDefinitionContext):
2409
+ return self.visitChildren(ctx)
2410
+
2411
+
2412
+ # Visit a parse tree produced by SysMLv2Parser#prefixMetadataUsage.
2413
+ def visitPrefixMetadataUsage(self, ctx:SysMLv2Parser.PrefixMetadataUsageContext):
2414
+ return self.visitChildren(ctx)
2415
+
2416
+
2417
+ # Visit a parse tree produced by SysMLv2Parser#metadataUsage.
2418
+ def visitMetadataUsage(self, ctx:SysMLv2Parser.MetadataUsageContext):
2419
+ return self.visitChildren(ctx)
2420
+
2421
+
2422
+ # Visit a parse tree produced by SysMLv2Parser#metadataUsageDeclaration.
2423
+ def visitMetadataUsageDeclaration(self, ctx:SysMLv2Parser.MetadataUsageDeclarationContext):
2424
+ return self.visitChildren(ctx)
2425
+
2426
+
2427
+ # Visit a parse tree produced by SysMLv2Parser#metadataBodyUsageMember.
2428
+ def visitMetadataBodyUsageMember(self, ctx:SysMLv2Parser.MetadataBodyUsageMemberContext):
2429
+ return self.visitChildren(ctx)
2430
+
2431
+
2432
+ # Visit a parse tree produced by SysMLv2Parser#metadataBodyUsage.
2433
+ def visitMetadataBodyUsage(self, ctx:SysMLv2Parser.MetadataBodyUsageContext):
2434
+ return self.visitChildren(ctx)
2435
+
2436
+
2437
+ # Visit a parse tree produced by SysMLv2Parser#extendedDefinition.
2438
+ def visitExtendedDefinition(self, ctx:SysMLv2Parser.ExtendedDefinitionContext):
2439
+ return self.visitChildren(ctx)
2440
+
2441
+
2442
+ # Visit a parse tree produced by SysMLv2Parser#extendedUsage.
2443
+ def visitExtendedUsage(self, ctx:SysMLv2Parser.ExtendedUsageContext):
2444
+ return self.visitChildren(ctx)
2445
+
2446
+
2447
+ # Visit a parse tree produced by SysMLv2Parser#filterPackageImportDeclaration.
2448
+ def visitFilterPackageImportDeclaration(self, ctx:SysMLv2Parser.FilterPackageImportDeclarationContext):
2449
+ return self.visitChildren(ctx)
2450
+
2451
+
2452
+ # Visit a parse tree produced by SysMLv2Parser#namespaceImportDirect.
2453
+ def visitNamespaceImportDirect(self, ctx:SysMLv2Parser.NamespaceImportDirectContext):
2454
+ return self.visitChildren(ctx)
2455
+
2456
+
2457
+ # Visit a parse tree produced by SysMLv2Parser#calculationUsageDeclaration.
2458
+ def visitCalculationUsageDeclaration(self, ctx:SysMLv2Parser.CalculationUsageDeclarationContext):
2459
+ return self.visitChildren(ctx)
2460
+
2461
+
2462
+ # Visit a parse tree produced by SysMLv2Parser#emptyActionUsage_.
2463
+ def visitEmptyActionUsage_(self, ctx:SysMLv2Parser.EmptyActionUsage_Context):
2464
+ return self.visitChildren(ctx)
2465
+
2466
+
2467
+ # Visit a parse tree produced by SysMLv2Parser#emptyFeature_.
2468
+ def visitEmptyFeature_(self, ctx:SysMLv2Parser.EmptyFeature_Context):
2469
+ return self.visitChildren(ctx)
2470
+
2471
+
2472
+ # Visit a parse tree produced by SysMLv2Parser#emptyMultiplicity_.
2473
+ def visitEmptyMultiplicity_(self, ctx:SysMLv2Parser.EmptyMultiplicity_Context):
2474
+ return self.visitChildren(ctx)
2475
+
2476
+
2477
+ # Visit a parse tree produced by SysMLv2Parser#emptyUsage_.
2478
+ def visitEmptyUsage_(self, ctx:SysMLv2Parser.EmptyUsage_Context):
2479
+ return self.visitChildren(ctx)
2480
+
2481
+
2482
+ # Visit a parse tree produced by SysMLv2Parser#filterPackageImport.
2483
+ def visitFilterPackageImport(self, ctx:SysMLv2Parser.FilterPackageImportContext):
2484
+ return self.visitChildren(ctx)
2485
+
2486
+
2487
+ # Visit a parse tree produced by SysMLv2Parser#nonFeatureChainPrimaryExpression.
2488
+ def visitNonFeatureChainPrimaryExpression(self, ctx:SysMLv2Parser.NonFeatureChainPrimaryExpressionContext):
2489
+ return self.visitChildren(ctx)
2490
+
2491
+
2492
+ # Visit a parse tree produced by SysMLv2Parser#portConjugation.
2493
+ def visitPortConjugation(self, ctx:SysMLv2Parser.PortConjugationContext):
2494
+ return self.visitChildren(ctx)
2495
+
2496
+
2497
+
2498
+ del SysMLv2Parser