From e02870181effb947d72e5aa91137dd0c7ff84ce1 Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 22 Jan 2006 04:59:58 -0500 Subject: [PATCH] checkpoint darcs-hash:20060122095958-5007d-49fd41dd267a3cdc6b3efd28f3fc0e33be6d0412.gz --- src/edu/berkeley/sbp/Forest.java | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 8399053..7b11532 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -20,7 +20,7 @@ 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(Input.Location loc, T head) { + public void add(Input.Location loc) { hs.add(new Tree(loc, head, toks.toArray(tree_hint))); } }; @@ -67,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(/*FIXME*/null, tag); + 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) @@ -77,7 +79,7 @@ public abstract class Forest /*extends PrintableTree>*/ impl } else { tokens[i].visit(new TreeMaker(h.toss) { - public void add(Input.Location loc, T head) { + 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); @@ -119,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(Input.Location loc, T head); + 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; -- 1.7.10.4