blob: 4a1038ff358173fa23c884b4e3413179ee3709af [file] [log] [blame]
transformation contextlesscall;
modeltype ECORE uses 'http://www.eclipse.org/emf/2002/Ecore';
mapping main(in model: ecore::EPackage): ecore::EPackage {
init {
result := model.copyPackage();
}
}
mapping createPackage() : ecore::EPackage {
name := 'OK';
}
mapping ecore::EPackage::copyPackage() : ecore::EPackage {
init {
result := createPackage();
}
}