ObjectType eingeführt. Es muss noch Unify angepasst werden

This commit is contained in:
JanUlrich 2015-03-10 12:38:18 +01:00
parent 324fb27b6d
commit 3d2dbc8709

View File

@ -0,0 +1,14 @@
package de.dhbwstuttgart.syntaxtree.type;
import de.dhbwstuttgart.syntaxtree.SyntaxTreeNode;
public abstract class ObjectType extends Type {
public ObjectType(String s, SyntaxTreeNode parent, int offset) {
super(s, parent, offset);
}
public ObjectType(SyntaxTreeNode parent, int offset) {
super(parent, offset);
}
public abstract Type clone();
}