From 9a8ebbb93e14d7ac7ad30268b58c6a75f437e5c9 Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 22 Jan 2006 04:57:03 -0500 Subject: [PATCH] checkpoint darcs-hash:20060122095703-5007d-b90dd691444ed4512d78b0f60e0e1575b1968076.gz --- src/edu/berkeley/sbp/Forest.java | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 5807545..8399053 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, T head) { + 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); @@ -67,7 +69,7 @@ public abstract class Forest /*extends PrintableTree>*/ impl tokens[0].visit(h, null, i); } else if (i==tokens.length) { - h.add(new Tree(null, tag, h.toks.toArray(tree_hint))); + h.add(/*FIXME*/null, tag); } else if (unwrap && i==tokens.length-1) { if (tokens[i] != null) @@ -75,9 +77,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, T head) { 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 +87,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; } @@ -126,7 +120,7 @@ public abstract class Forest /*extends PrintableTree>*/ impl public ArrayList> toks = new ArrayList>(); private boolean toss; public TreeMaker(boolean toss) { this.toss = toss; } - public abstract void add(Tree t); + public abstract void add(Input.Location loc, T head); public void invoke(Forest.Body bod, Boolean o, Integer i) { if (i==null) { ArrayList> toks = this.toks; -- 1.7.10.4