blob: 5e2e484d80435340dfc5b8dc827d68f925965fa1 [file] [log] [blame]
rule testLazyRuleIdentification
transform t : Tree!Tree
to n : Graph!Node {}
@isLazy
@lazy
rule testLazyRuleIdentificationWhenLazyAnnotated
transform t : Tree!Tree
to n : Graph!Node {}
@abstract
rule testLazyRuleIdentificationWhenAbstractAndAnyType
transform t : Any
to n : Any {}
@isLazy
rule testLazyRuleIdentificationWhenAnyType
transform t : Any
to n : Any {}
rule testLazyRuleIdentificationExtendingAbstract
transform t : Tree!Tree
to n : Graph!Node
extends testLazyRuleIdentificationWhenAbstractAndAnyType {}