blob: ddf1f69af4583530aca2a8c2feae16b13cc8ef1f [file] [log] [blame]
import DuplicatedNamesDetection;
modeltype ECORE "strict" uses ecore('http://www.eclipse.org/emf/2002/Ecore');
transformation QVToASDuplicatedNamesDetection(in qvto : ECORE, in imperativeocl : ECORE, in pivot : ECORE);
main() {
log("Stating QVTo AS class clash names");
new DuplicatedNamesDetection(qvto, imperativeocl).transform();
new DuplicatedNamesDetection(qvto, pivot).transform();
new DuplicatedNamesDetection(imperativeocl, pivot).transform();
log("Transformation ends");
}