forked from JavaTX/JavaCompilerCore
ObjectType eingeführt. Es muss noch Unify angepasst werden
This commit is contained in:
parent
324fb27b6d
commit
3d2dbc8709
14
src/de/dhbwstuttgart/syntaxtree/type/ObjectType.java
Normal file
14
src/de/dhbwstuttgart/syntaxtree/type/ObjectType.java
Normal 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();
|
||||
}
|
Loading…
Reference in New Issue
Block a user