package org.simantics.scl.compiler.internal.codegen.ssa.binders; import org.simantics.scl.compiler.internal.codegen.references.Val; import org.simantics.scl.compiler.internal.codegen.references.ValRef; import org.simantics.scl.compiler.internal.codegen.ssa.SSAFunction; import org.simantics.scl.compiler.types.Type; public interface ValRefBinder { SSAFunction getParentFunction(); void replaceByApply(ValRef valRef, Val function, Type[] typeParameters, Val[] parameters2); }