Revision: 3799
          http://vexi.svn.sourceforge.net/vexi/?rev=3799&view=rev
Author:   jeffbuhrt
Date:     2010-02-10 22:26:25 +0000 (Wed, 10 Feb 2010)

Log Message:
-----------
additional file not committed during: memory and memoryhist modes now run 
(again)

Modified Paths:
--------------
    trunk/core/org.ibex.js/src/org/ibex/js/parse/Parser.java

Modified: trunk/core/org.ibex.js/src/org/ibex/js/parse/Parser.java
===================================================================
--- trunk/core/org.ibex.js/src/org/ibex/js/parse/Parser.java    2010-02-10 
22:25:09 UTC (rev 3798)
+++ trunk/core/org.ibex.js/src/org/ibex/js/parse/Parser.java    2010-02-10 
22:26:25 UTC (rev 3799)
@@ -149,7 +149,7 @@
     abstract public int toInt(Object o);
     
     static public class ScopeEntry{
-       final Object slot;
+       public Object slot;
        final boolean isConst;
        public ScopeEntry(Object slot, boolean isConst){
                this.slot = slot;
@@ -163,7 +163,7 @@
         int base;
         int end;
         int newScopeInsn;
-        Map mapping = new HashMap();
+        public Map mapping = new HashMap();
         
         ScopeInfo(){}
         // For the debugger.
@@ -173,8 +173,8 @@
         //, the function and the pc of the bytecode..
                             // Source file name - stored in jsfunc
                             //(FIXME - really should be entire path, is this 
the case?)
-        Function jsfunc;  // JSFunc which it belongs to
-        int pc;             // pc where scope was created
+        public Function jsfunc;  // JSFunc which it belongs to
+        public int pc;             // pc where scope was created
 
     }
     


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to