]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/expressions/lhstype/PatternMatchingLhs.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / expressions / lhstype / PatternMatchingLhs.java
1 package org.simantics.scl.compiler.elaboration.expressions.lhstype;
2
3 import java.util.ArrayList;
4
5 public class PatternMatchingLhs implements LhsType {
6     public ArrayList<String> variableNames = new ArrayList<String>();
7 }