package org.simantics.scl.compiler.elaboration.expressions.lhstype; public class FunctionDefinitionLhs implements LhsType { public final String functionName; public FunctionDefinitionLhs(String functionName) { this.functionName = functionName; } }