]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/codegen/ssa/binders/ValRefBinder.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / codegen / ssa / binders / ValRefBinder.java
1 package org.simantics.scl.compiler.internal.codegen.ssa.binders;
2
3 import org.simantics.scl.compiler.internal.codegen.references.Val;
4 import org.simantics.scl.compiler.internal.codegen.references.ValRef;
5 import org.simantics.scl.compiler.internal.codegen.ssa.SSAFunction;
6 import org.simantics.scl.compiler.types.Type;
7
8 public interface ValRefBinder {
9     SSAFunction getParentFunction();
10     void replaceByApply(ValRef valRef, Val function, Type[] typeParameters, Val[] parameters2);
11 }