checkpoint
authoradam <adam@megacz.com>
Wed, 4 Jan 2006 10:09:18 +0000 (05:09 -0500)
committeradam <adam@megacz.com>
Wed, 4 Jan 2006 10:09:18 +0000 (05:09 -0500)
darcs-hash:20060104100918-5007d-6aff793c8d97ec1f782bba513f3e3778aca72bb0.gz

src/edu/berkeley/sbp/GSS.java
src/edu/berkeley/sbp/Parser.java

index 0b6064d..7bba6a6 100644 (file)
@@ -191,7 +191,7 @@ class GSS {
             public final Parser.Table.State state;
 
             /** which Phase this Node belongs to (node that Node is also a non-static inner class of Phase) */
             public final Parser.Table.State state;
 
             /** which Phase this Node belongs to (node that Node is also a non-static inner class of Phase) */
-            public final Phase phase = Phase.this;
+            public Phase phase() { return Phase.this; }
 
             public  HashMap<Parser.Table.Reduction,Forest> cache() {
                 return cache==null ? (cache = new HashMap<Parser.Table.Reduction,Forest>()) : cache;
 
             public  HashMap<Parser.Table.Reduction,Forest> cache() {
                 return cache==null ? (cache = new HashMap<Parser.Table.Reduction,Forest>()) : cache;
@@ -227,10 +227,10 @@ class GSS {
                     if (r.numPop <= 0) continue;
                     if (r.numPop == 1) {
                         Forest ret = n.cache().get(r);
                     if (r.numPop <= 0) continue;
                     if (r.numPop == 1) {
                         Forest ret = n.cache().get(r);
-                        if (ret != null) r.reduce(n, n2, n.phase, ret);
-                        else n.cache().put(r, r.reduce(n, n2, n.phase, null));
+                        if (ret != null) r.reduce(this, n2, ret);
+                        else n.cache().put(r, r.reduce(this, n2, null));
                     } else {
                     } else {
-                        r.reduce(n, n2, Phase.this, null);
+                        r.reduce(this, n2, null);
                     }
                 }
             }
                     }
                 }
             }
@@ -241,7 +241,7 @@ class GSS {
                 if (reducing)
                     for(Parser.Table.Reduction r : token==null ? state.getEofReductions() : state.getReductions(token))
                         if (r.numPop==0)
                 if (reducing)
                     for(Parser.Table.Reduction r : token==null ? state.getEofReductions() : state.getReductions(token))
                         if (r.numPop==0)
-                            r.reduce(this, null, this.phase, r.zero());
+                            r.reduce(this, null, r.zero());
             }
 
             private Node(Node parent, Forest pending, Parser.Table.State state, Phase start) {
             }
 
             private Node(Node parent, Forest pending, Parser.Table.State state, Phase start) {
index 6f1098e..f37c575 100644 (file)
@@ -314,8 +314,8 @@ public abstract class Parser<T extends Token, R> {
                 holder[numPop-1] = f;
                 return reduce(parent, numPop-2, rex, onlychild, target);                
             }
                 holder[numPop-1] = f;
                 return reduce(parent, numPop-2, rex, onlychild, target);                
             }
-            public Forest reduce(GSS.Phase.Node parent, GSS.Phase.Node onlychild, GSS.Phase target, Forest rex) {
-                return reduce(parent, numPop-1, rex, onlychild, target);
+            public Forest reduce(GSS.Phase.Node parent, GSS.Phase.Node onlychild, Forest rex) {
+                return reduce(parent, numPop-1, rex, onlychild, parent.phase());
             }
 
             private Forest zero = null;
             }
 
             private Forest zero = null;
@@ -341,7 +341,7 @@ public abstract class Parser<T extends Token, R> {
                 } else {
                     State state = parent.state.gotoSetNonTerminals.get(position.owner());
                     if (state!=null)
                 } else {
                     State state = parent.state.gotoSetNonTerminals.get(position.owner());
                     if (state!=null)
-                        target.newNode(parent, rex, state, numPop<=0, parent.phase);
+                        target.newNode(parent, rex, state, numPop<=0, parent.phase());
                 }
                 return rex;
             }
                 }
                 return rex;
             }