From: adam Date: Sun, 23 Jul 2006 06:26:26 +0000 (-0400) Subject: expose Parser constructor X-Git-Tag: tag_for_25-Mar~95 X-Git-Url: http://git.megacz.com/?p=sbp.git;a=commitdiff_plain;h=29163478aff5e3721f97520bb365e0fecfb847b1 expose Parser constructor darcs-hash:20060723062626-5007d-65f920162dd7ecdf2da01ce4ce12fa0c4581f770.gz --- diff --git a/TODO b/TODO index 4495d30..2432db1 100644 --- a/TODO +++ b/TODO @@ -15,7 +15,6 @@ Immediately - topology no longer needed as an arg to parser - expose parser's protected method? - - do Forest/Tree still need a Region? - copyright notices diff --git a/src/edu/berkeley/sbp/Parser.java b/src/edu/berkeley/sbp/Parser.java index 74d7101..f216a38 100644 --- a/src/edu/berkeley/sbp/Parser.java +++ b/src/edu/berkeley/sbp/Parser.java @@ -11,11 +11,11 @@ public abstract class Parser { protected final Table pt; /** create a parser to parse the grammar with start symbol u */ - protected Parser(Union u, Topology top) { this.pt = new Table(u, top); } - protected Parser(Table pt) { this.pt = pt; } + public Parser(Union u, Topology top) { this.pt = new Table(u, top); } + Parser(Table pt) { this.pt = pt; } /** implement this method to create the output forest corresponding to a lone shifted input token */ - protected abstract Forest shiftToken(Token t, Input.Location newloc); + public abstract Forest shiftToken(Token t, Input.Location newloc); boolean helpgc = true;