]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Transformation6.scl
Added info on backup location to documentation backup.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / Transformation6.scl
1 import "StandardLibrary"
2
3 mapping relation Foo String String
4     
5 rule DoIt where
6     @when
7     Foo ?a ?b
8     
9     @to
10     Foo ?b "c"
11
12 main = transformation OneShotForward where
13     Foo "a" "b"
14 --
15 10:9-10:11: Cannot resolve the variable ?b using the source patterns.