]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/parsing/declarations/FundepAst.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / parsing / declarations / FundepAst.java
1 package org.simantics.scl.compiler.internal.parsing.declarations;
2
3 import org.simantics.scl.compiler.internal.parsing.Symbol;
4
5 public class FundepAst extends Symbol {
6     public static final FundepAst[] EMPTY_ARRAY = new FundepAst[0];
7     public final String[] from;
8     public final String to;
9     
10     public FundepAst(String[] from, String to) {
11         this.from = from;
12         this.to = to;
13     }
14 }