JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/SyntaxTreeNode.java

10 lines
177 B
Java
Raw Normal View History

2014-09-04 14:35:44 +00:00
package de.dhbwstuttgart.syntaxtree;
2014-02-11 01:47:39 +00:00
2016-09-13 15:32:22 +00:00
import java.util.List;
2014-09-08 13:12:47 +00:00
import de.dhbwstuttgart.core.IItemWithOffset;
2014-09-08 13:12:47 +00:00
public abstract class SyntaxTreeNode implements IItemWithOffset{
2014-02-12 01:12:12 +00:00
2014-02-11 01:47:39 +00:00
}