2003/06/16 06:24:31
[org.ibex.core.git] / src / org / xwt / js / Context.java
index ee00fc8..8533f34 100644 (file)
@@ -42,7 +42,6 @@ public class Context {
        return ret;
     }
 
-    public static class TryMarker { public int location; public TryMarker(int location) { this.location = location; } }
     public static class CallMarker { public CallMarker() { } }
     public static class LoopMarker {
        public int location;
@@ -52,5 +51,13 @@ public class Context {
            this.label = label;
        }
     }
+    public static class TryMarker {
+       public int location;
+       public JS.Scope scope;
+       public TryMarker(int location, JS.Scope scope) {
+           this.location = location;
+           this.scope = scope;
+       }
+    }
 
 }