From: adam Date: Sun, 22 Jan 2006 10:04:15 +0000 (-0500) Subject: checkpoint X-Git-Tag: tag_for_25-Mar~330 X-Git-Url: http://git.megacz.com/?p=sbp.git;a=commitdiff_plain;h=c7423816fa31bbf7177a84be372d153f8a3327b5 checkpoint darcs-hash:20060122100415-5007d-71510aea2e762fc082b3acf09efc30356d2d3f98.gz --- diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 7b11532..d7716dd 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -20,9 +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(Input.Location loc) { - hs.add(new Tree(loc, head, toks.toArray(tree_hint))); - } + public void start(T head, Input.Location loc) { } + public void finish(T head, Input.Location loc) { hs.add(new Tree(loc, head, toks.toArray(tree_hint))); } + public void child(Tree t) { toks.add(t); } }; visit(ret, null, null); if (toss && hs.size() > 1) throw new Ambiguous(this); @@ -69,9 +69,10 @@ public abstract class Forest /*extends PrintableTree>*/ impl tokens[0].visit(h, null, i); return h; } - if (i==0) h.head(tag); + if (i==0) h.start(tag, location); + if (i==tokens.length) { - h.add(/*FIXME*/null); + h.finish(tag, location); } else if (unwrap && i==tokens.length-1) { if (tokens[i] != null) @@ -79,9 +80,11 @@ public abstract class Forest /*extends PrintableTree>*/ impl } else { tokens[i].visit(new TreeMaker(h.toss) { - public void add(Input.Location loc) { + public void start(T head, Input.Location loc) { } + public void child(Tree t) { toks.add(t); } + public void finish(T head, Input.Location loc) { int old = h.toks.size(); - h.toks.add(new Tree(loc, head, toks.toArray(tree_hint))); + h.child(new Tree(loc, head, toks.toArray(tree_hint))); expand(i+1, h); while(h.toks.size() > old) h.toks.remove(h.toks.size()-1); } @@ -123,8 +126,9 @@ public abstract class Forest /*extends PrintableTree>*/ impl private boolean toss; protected T head; public TreeMaker(boolean toss) { this.toss = toss; } - public void head(T head) { this.head = head; } - public abstract void add(Input.Location loc); + public abstract void start(T head, Input.Location loc); + public abstract void finish(T head, Input.Location loc); + public abstract void child(Tree t); public void invoke(Forest.Body bod, Boolean o, Integer i) { if (i==null) { ArrayList> toks = this.toks;