blob: 4c223e121fc44bc15f6cfc35f3f91a240a5008af [file] [log] [blame]
-- @atlcompiler emftvm
-- @nsURI ECORE=http://www.eclipse.org/emf/2002/Ecore
module EntryEndPointRuleTest;
create OUT : ECORE from IN : ECORE;
uses EcoreCopy;
entrypoint rule before() {
to
t : ECORE!EPackage (
name <- 'before'
)
}
endpoint rule after() {
to
t : ECORE!EPackage (
name <- 'after'
)
}