Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Willink2016-06-29 10:52:16 +0000
committerEd Willink2016-06-29 12:42:03 +0000
commite21fc34746c168992a80ea2b50f2acf1e9231afe (patch)
tree46ad9fcb3648d06f1237544da9ec605de816acb2
parentfca56ce0d3defef4d58b9a412a166892aa5e21e5 (diff)
downloadorg.eclipse.qvtd-e21fc34746c168992a80ea2b50f2acf1e9231afe.tar.gz
org.eclipse.qvtd-e21fc34746c168992a80ea2b50f2acf1e9231afe.tar.xz
org.eclipse.qvtd-e21fc34746c168992a80ea2b50f2acf1e9231afe.zip
[486722] Ensure Function calls migrate to QVTc
-rw-r--r--plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvtc/QVTr2QVTc.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvtc/QVTr2QVTc.java b/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvtc/QVTr2QVTc.java
index 4affe90aa..00b6e4b44 100644
--- a/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvtc/QVTr2QVTc.java
+++ b/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvtc/QVTr2QVTc.java
@@ -583,6 +583,7 @@ public class QVTr2QVTc extends AbstractQVTc2QVTc
Element cOperation = rOperation.accept(createVisitor);
if (cOperation instanceof Operation) {
cOperations.add((Operation) cOperation);
+ putGlobalTrace(cOperation, rOperation);
}
}
coreTransformation.getOwnedOperations().addAll(cOperations);

Back to the top