Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Willink2016-05-05 13:12:37 +0000
committerEd Willink2016-05-05 13:32:34 +0000
commit18470e83da5e627aa3ffeb90043a806c14d8e397 (patch)
tree9c916e39fa63b86ea551ac17d63788f55bba1e48
parente4dcca2d2b4bbdf9c211c1b679e9790920743101 (diff)
downloadorg.eclipse.qvtd-18470e83da5e627aa3ffeb90043a806c14d8e397.tar.gz
org.eclipse.qvtd-18470e83da5e627aa3ffeb90043a806c14d8e397.tar.xz
org.eclipse.qvtd-18470e83da5e627aa3ffeb90043a806c14d8e397.zip
[486722] Add multiplicity to QVTr type declaration grammar
-rw-r--r--plugins/org.eclipse.qvtd.xtext.qvtrelation/src/org/eclipse/qvtd/xtext/qvtrelation/QVTrelation.xtext6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.qvtd.xtext.qvtrelation/src/org/eclipse/qvtd/xtext/qvtrelation/QVTrelation.xtext b/plugins/org.eclipse.qvtd.xtext.qvtrelation/src/org/eclipse/qvtd/xtext/qvtrelation/QVTrelation.xtext
index 8f4d936a9..56edd8a4a 100644
--- a/plugins/org.eclipse.qvtd.xtext.qvtrelation/src/org/eclipse/qvtd/xtext/qvtrelation/QVTrelation.xtext
+++ b/plugins/org.eclipse.qvtd.xtext.qvtrelation/src/org/eclipse/qvtd/xtext/qvtrelation/QVTrelation.xtext
@@ -118,9 +118,9 @@ ExpCSOrTemplateCS returns essentialocl::ExpCS: ExpCS | TemplateCS;
TypedTypeRefCS returns base::TypedTypeRefCS: ownedPathName=PathNameCS;
TypedRefCS returns base::TypedRefCS:
- PrimitiveTypeCS
-| CollectionTypeCS
-| TypedTypeRefCS
+ (PrimitiveTypeCS ownedMultiplicity=MultiplicityCS?)
+| (CollectionTypeCS ownedMultiplicity=MultiplicityCS?)
+| (TypedTypeRefCS ownedMultiplicity=MultiplicityCS?)
;
//ExpCS returns essentialocl::ExpCS:

Back to the top