X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=7b115326c82a2ec0170078392fcd0840cfc26c4e;hb=e02870181effb947d72e5aa91137dd0c7ff84ce1;hp=4de9fa8358bb58070772c932438c4a1b21578660;hpb=b870629504692c0537d642bd8b9ef6c8a942b6c2;p=sbp.git diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 4de9fa8..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); @@ -62,41 +64,31 @@ public abstract class Forest /*extends PrintableTree>*/ impl this.singleton = singleton; } - public TreeMaker expand(int i, TreeMaker h) { + 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) tokens[i].visit(h, null, 0); } else { - //boolean hit = false; - //tokens[i].visit(this, h, i); - - for(Tree r : tokens[i].expand(h.toss)) { - //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); - } - - //if (!hit) throw new Error(); + tokens[i].visit(new TreeMaker(h.toss) { + public void add(Input.Location loc) { + int old = h.toks.size(); + 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); + } + }, null, null); } 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; } @@ -126,11 +118,13 @@ public abstract class Forest /*extends PrintableTree>*/ impl } public abstract void visit(Invokable,B,C> ivbc, B b, C c); - private static abstract class TreeMaker /*extends HashSet>*/ implements Invokable,Boolean,Integer> { + 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;