]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/TransformationOrder.scl
List the unsatisfied dependencies in CanvasContext
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / TransformationOrder.scl
1 import "StandardLibrary"
2
3 rule A where
4     @to
5     Execute (print "A")
6
7 rule B where
8     @to
9     Execute (print "B")
10     
11 rule C where
12     @to
13     Execute (print "C")
14     
15 main = transformation OneShotForward where
16 --
17 ()