Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Willink2015-04-29 14:14:23 +0000
committerEd Willink2015-04-29 14:14:47 +0000
commit3653aa496862f4fd05388688dc42bac196f3aa63 (patch)
treec0b0e57a557ba5fb212088050b61e74fdb5821df /plugins/org.eclipse.qvtd.xtext.qvtimperative/src/org/eclipse/qvtd/xtext/qvtimperative/QVTimperative.xtext
parentc2083752aa34654f8a327de8c60a74b14fa732fc (diff)
downloadorg.eclipse.qvtd-3653aa496862f4fd05388688dc42bac196f3aa63.tar.gz
org.eclipse.qvtd-3653aa496862f4fd05388688dc42bac196f3aa63.tar.xz
org.eclipse.qvtd-3653aa496862f4fd05388688dc42bac196f3aa63.zip
[465688] Support MappingCall::isInfinite for editing, CS2AS, AS2CS
Diffstat (limited to 'plugins/org.eclipse.qvtd.xtext.qvtimperative/src/org/eclipse/qvtd/xtext/qvtimperative/QVTimperative.xtext')
-rw-r--r--plugins/org.eclipse.qvtd.xtext.qvtimperative/src/org/eclipse/qvtd/xtext/qvtimperative/QVTimperative.xtext2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.qvtd.xtext.qvtimperative/src/org/eclipse/qvtd/xtext/qvtimperative/QVTimperative.xtext b/plugins/org.eclipse.qvtd.xtext.qvtimperative/src/org/eclipse/qvtd/xtext/qvtimperative/QVTimperative.xtext
index badc62a6b..c7c1ec834 100644
--- a/plugins/org.eclipse.qvtd.xtext.qvtimperative/src/org/eclipse/qvtd/xtext/qvtimperative/QVTimperative.xtext
+++ b/plugins/org.eclipse.qvtd.xtext.qvtimperative/src/org/eclipse/qvtd/xtext/qvtimperative/QVTimperative.xtext
@@ -33,7 +33,7 @@ DirectionCS returns qvtcorebasecs::DirectionCS : {qvtcorebasecs::DirectionCS} na
MappingCS: {MappingCS} isDefault?='default'? 'map' name=UnrestrictedName ('in' ownedInPathName=PathNameCS)?
'{' ownedDomains+=(SourceDomainCS | TargetDomainCS)* ('where' ownedMiddle=MiddleDomainCS)? ownedMappingSequence=MappingSequenceCS? '}';
-MappingCallCS: {MappingCallCS} 'call' referredMapping=[qvtimperative::Mapping|UnrestrictedName]
+MappingCallCS: {MappingCallCS} isInfinite?='infinite'? 'call' referredMapping=[qvtimperative::Mapping|UnrestrictedName]
'{' ownedBindings+=MappingCallBindingCS* '}';
MappingCallBindingCS: referredVariable=[pivot::Variable|UnrestrictedName] (':='|isPolled?='?=') ownedValue=ExpCS ';';

Back to the top