]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/codegen/ssa/binders/ClosureBinder.java
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / codegen / ssa / binders / ClosureBinder.java
1 package org.simantics.scl.compiler.internal.codegen.ssa.binders;\r
2 \r
3 import org.simantics.scl.compiler.internal.codegen.ssa.SSAClosure;\r
4 import org.simantics.scl.compiler.internal.codegen.ssa.SSAFunction;\r
5 \r
6 public interface ClosureBinder {\r
7     SSAClosure getFirstClosure();\r
8     void setFirstClosure(SSAClosure function);\r
9     SSAFunction getParentFunction();\r
10 }\r