]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/expressions/lhstype/FunctionDefinitionLhs.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / expressions / lhstype / FunctionDefinitionLhs.java
1 package org.simantics.scl.compiler.elaboration.expressions.lhstype;
2
3 public class FunctionDefinitionLhs implements LhsType {
4     public final String functionName;
5
6     public FunctionDefinitionLhs(String functionName) {    
7         this.functionName = functionName;
8     }
9     
10 }