X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=7b115326c82a2ec0170078392fcd0840cfc26c4e;hb=e02870181effb947d72e5aa91137dd0c7ff84ce1;hp=5807545eb981c564a3f9be9839a2d66bc8d14b0c;hpb=76bc0ff98c5e67f4fe6fa2593bffdf31b6db437a;p=sbp.git diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 5807545..7b11532 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -20,7 +20,9 @@ public abstract class Forest /*extends PrintableTree>*/ impl public HashSet> expand(boolean toss) { final HashSet> hs = new HashSet>(); TreeMaker ret = new TreeMaker(toss) { - public void add(Tree t) { hs.add(t); } + public void add(Input.Location loc) { + hs.add(new Tree(loc, head, toks.toArray(tree_hint))); + } }; visit(ret, null, null); if (toss && hs.size() > 1) throw new Ambiguous(this); @@ -40,7 +42,7 @@ public abstract class Forest /*extends PrintableTree>*/ impl TreeMaker expand(int i, TreeMaker h); } - protected static class MyBody extends Forest implements Body /* extends PrintableTree> implements */, Invokable, TreeMaker, Integer> { + protected static class MyBody extends Forest implements Body /* extends PrintableTree> implements */ { public void visit(Invokable,B,C> ivbc, B b, C c) { ivbc.invoke(this, b, c); @@ -65,9 +67,11 @@ public abstract class Forest /*extends PrintableTree>*/ impl public TreeMaker expand(final int i, final TreeMaker h) { if (singleton) { tokens[0].visit(h, null, i); - - } else if (i==tokens.length) { - h.add(new Tree(null, tag, h.toks.toArray(tree_hint))); + return h; + } + if (i==0) h.head(tag); + if (i==tokens.length) { + h.add(/*FIXME*/null); } else if (unwrap && i==tokens.length-1) { if (tokens[i] != null) @@ -75,9 +79,9 @@ public abstract class Forest /*extends PrintableTree>*/ impl } else { tokens[i].visit(new TreeMaker(h.toss) { - public void add(Tree r) { + public void add(Input.Location loc) { int old = h.toks.size(); - h.toks.add(r); + h.toks.add(new Tree(loc, head, toks.toArray(tree_hint))); expand(i+1, h); while(h.toks.size() > old) h.toks.remove(h.toks.size()-1); } @@ -85,14 +89,6 @@ public abstract class Forest /*extends PrintableTree>*/ impl } return h; } - public void invoke(Tree r, TreeMaker h, Integer i) { - //hit = true; - int old = h.toks.size(); - h.toks.add(r); - expand(i+1, h); - while(h.toks.size() > old) h.toks.remove(h.toks.size()-1); - //ivbc.invoke(this, b, c); - } protected String headToString() { return null; } protected String headToJava() { return null; } @@ -125,8 +121,10 @@ public abstract class Forest /*extends PrintableTree>*/ impl private static abstract class TreeMaker implements Invokable,Boolean,Integer> { public ArrayList> toks = new ArrayList>(); private boolean toss; + protected T head; public TreeMaker(boolean toss) { this.toss = toss; } - public abstract void add(Tree t); + public void head(T head) { this.head = head; } + public abstract void add(Input.Location loc); public void invoke(Forest.Body bod, Boolean o, Integer i) { if (i==null) { ArrayList> toks = this.toks;