diff options
Diffstat (limited to 'st/TypeInstance.java')
-rw-r--r-- | st/TypeInstance.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/st/TypeInstance.java b/st/TypeInstance.java index e00c1f9..b4031d9 100644 --- a/st/TypeInstance.java +++ b/st/TypeInstance.java @@ -6,7 +6,6 @@ public class TypeInstance extends AbstractInstance { public TypeInstance(String name, TypeEnum type) { super(name, type); - this.scope = null; } public boolean sameType(TypeInstance other) { @@ -28,12 +27,4 @@ public class TypeInstance extends AbstractInstance { return type != TypeEnum.ERROR; } - public AbstractInstance getScope() { - /** - * Returns the scope of the variable, or - * `null' if unset. - */ - return this.scope; - } - } |