diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-06 20:00:31 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-06 20:00:31 -0600 |
commit | 8e660afb356c1f6d0b9cd115426cf21129e5d304 (patch) | |
tree | a8c885c83b138762ca51af640355048bc305b437 /st/MethodInstance.java | |
parent | b03859dce5991169b07d1d5040c8faf7ba82e5b5 (diff) |
Untested SymbolTable full implementation
Diffstat (limited to 'st/MethodInstance.java')
-rw-r--r-- | st/MethodInstance.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/st/MethodInstance.java b/st/MethodInstance.java index d6c22b6..25096d2 100644 --- a/st/MethodInstance.java +++ b/st/MethodInstance.java @@ -24,12 +24,4 @@ public class MethodInstance extends AbstractInstance { this.lvars.add(lvar); } - public AbstractInstance getScope() { - /** - * Returns the scope of the method, or - * `null' if unset. - */ - return this.scope; - } - } |