Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/ASTFactory.java')
-rw-r--r--extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/ASTFactory.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/ASTFactory.java b/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/ASTFactory.java
index 92c7abbe8b2..52d8a64459d 100644
--- a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/ASTFactory.java
+++ b/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/ASTFactory.java
@@ -1043,14 +1043,14 @@ public class ASTFactory {
synthesized.namedExpression = new ArrayList<NamedExpression>() ;
NamedExpression n ;
// Hypothesis: All LinkOperationTupleElement have both a "objectOrRole" and an "object"
- for (LinkOperationTupleElement t : tuple.getLinkOperationTupleElement()) {
- n = new NamedExpression() ;
- n.name = t.getObjectOrRole() ;
- if (t.getRoleIndex() != null)
- n.index = this.synthesizeExpression(t.getRoleIndex()) ;
- n.expression = this.synthesizeNameExpression(t.getObject()) ;
- synthesized.namedExpression.add(n) ;
- }
+// for (LinkOperationTupleElement t : tuple.getLinkOperationTupleElement()) {
+// n = new NamedExpression() ;
+// n.name = t.getObjectOrRole() ;
+// if (t.getRoleIndex() != null)
+// n.index = this.synthesizeExpression(t.getRoleIndex()) ;
+// n.expression = this.synthesizeNameExpression(t.getObject()) ;
+// synthesized.namedExpression.add(n) ;
+// }
return synthesized ;
}
@@ -1070,8 +1070,8 @@ public class ASTFactory {
/* 1. Synthesizes property target:QualifiedName */
synthesized.constructor = this.synthesizeQualifiedName(parsed.getConstructor()) ;
- /* 2. Synthesizes property tuple:Tuple */
- synthesized.tuple = this.synthesizeTuple(parsed.getTuple(), synthesized) ;
+// /* 2. Synthesizes property tuple:Tuple */
+// synthesized.tuple = this.synthesizeTuple(parsed.getTuple(), synthesized) ;
if (parsed.getSuffix() != null)
return this.synthesizeExpression(synthesized, parsed.getSuffix()) ;

Back to the top