diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-07 13:25:40 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-07 13:25:40 -0600 |
commit | c3d4ff012c568a50e3403caf040de704bc201101 (patch) | |
tree | def9f8871f740e10ff3eb91315fc7184595d1b55 /st | |
parent | 1ec847c7222b8adb9a70264c98a44dc9911d65d3 (diff) |
Update vaporize visitor for new ST, observe hard work pay off
Diffstat (limited to 'st')
-rw-r--r-- | st/AbstractInstance.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/st/AbstractInstance.java b/st/AbstractInstance.java index bddaccf..241991d 100644 --- a/st/AbstractInstance.java +++ b/st/AbstractInstance.java @@ -33,6 +33,7 @@ public abstract class AbstractInstance { * If the scope is a ClassInstance, add the classes' methods, * and the class itself. */ + // FIXME add third pass to properly add all scope information if (ins instanceof MethodInstance) this.scope.add(ins); else if (ins instanceof ClassInstance) { |