From: adam Date: Tue, 4 Mar 2008 05:26:36 +0000 (-0500) Subject: reorganize GrammarAST hierarchy to make clear the distinction between ElementNodes... X-Git-Url: http://git.megacz.com/?p=sbp.git;a=commitdiff_plain;h=fec264a3cce7bb2f0016343c86c3cc63d7321eac;hp=f95343b3b6e918434ff68924e79df22b9cb074e8 reorganize GrammarAST hierarchy to make clear the distinction between ElementNodes and non-ElementNodes darcs-hash:20080304052636-5007d-f2c2f6c593e2188d37d1943686c0e8925ca9f7ae.gz --- diff --git a/src/edu/berkeley/sbp/meta/GrammarAST.java b/src/edu/berkeley/sbp/meta/GrammarAST.java index 586d519..1c1ef3d 100644 --- a/src/edu/berkeley/sbp/meta/GrammarAST.java +++ b/src/edu/berkeley/sbp/meta/GrammarAST.java @@ -214,96 +214,22 @@ public class GrammarAST { } } - /** a node in the AST which is resolved into an Element */ - private abstract class ElementNode { - public boolean isLifted() { return false; } - public boolean isDropped(Context cx) { return false; } - public Atom toAtom(Context cx) { throw new Error("can't convert a " + this.getClass().getName() + " to an atom: " + this); } - public abstract Element build(Context cx, NonTerminalNode cnt, boolean dropall); - } - - /** a union, produced by a ( .. | .. | .. ) construct */ - private class UnionNode extends ElementNode { - - /** each component of a union is a sequence */ - public Seq[][] sequences; - - /** if the union is a NonTerminal specified as Foo*=..., this is true */ - public boolean rep; - - /** if the union is a NonTerminal specified as Foo* /ws=..., then this is "ws" */ - public String sep = null; - - public UnionNode(Seq seq) { this(new Seq[][] { new Seq[] { seq } }); } - public UnionNode(Seq[][] sequences) { this(sequences, false, null); } - public UnionNode(Seq[][] sequences, boolean rep, String sep) { - this.sequences = sequences; - this.rep = rep; - this.sep = sep; - } - public boolean isDropped(Context cx) { - for(Seq[] seqs : sequences) - for(Seq seq : seqs) - if (!seq.isDropped(cx)) - return false; - return true; - } - public Atom toAtom(Context cx) { - Atom ret = null; - for(Seq[] ss : sequences) - for(Seq s : ss) - ret = ret==null ? s.toAtom(cx) : (Atom)ret.union(s.toAtom(cx)); - return ret; - } - public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { - return buildIntoPreallocatedUnion(cx, cnt, dropall, new Union(null, false)); } - public Element buildIntoPreallocatedUnion(Context cx, NonTerminalNode cnt, boolean dropall, Union u) { - Union urep = null; - if (rep) { - urep = new Union(null, false); - urep.add(Sequence.create(cnt.name, new Element[0])); - urep.add(sep==null - ? Sequence.create(new Element[] { u }, 0) - : Sequence.create(new Element[] { cx.get(sep), u }, 1)); - } - HashSet bad2 = new HashSet(); - for(int i=0; i bad2 = new HashSet(); + for(int i=0; i