]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/parsing/declarations/FundepAst.java
Migrated source code from Simantics SVN
[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;\r
2 \r
3 import org.simantics.scl.compiler.internal.parsing.Symbol;\r
4 \r
5 public class FundepAst extends Symbol {\r
6     public static final FundepAst[] EMPTY_ARRAY = new FundepAst[0];\r
7     public final String[] from;\r
8     public final String to;\r
9     \r
10     public FundepAst(String[] from, String to) {\r
11         this.from = from;\r
12         this.to = to;\r
13     }\r
14 }\r