blob: cda35572ff523be647f3b34aeb9885738e3e777d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- @atlcompiler emftvm
-- @nsURI EMFTVM=http://www.eclipse.org/m2m/atl/2011/EMFTVM
-- Tests ATL compilation strategy
query TestQuery = EMFTVM!Operation.allInstances()->select(r|r.test() or r.testProp).debug('TestQuery');
uses TestLib;
uses NativeTest;
helper context EMFTVM!Operation def : test() : Boolean =
(super.test() and not self.static).debug('TestQuery::Operation.test() (random = ' +
thisModule.random().toString() + ')');
|