On Jan 31, 2006, at 7:09 AM, Peter Suk wrote: > Has anyone toyed around with the idea of creating a GLR parser > based on > parse.y?
GLR would be easier to use for building the grammar as it naturally deals with ambiguity (which is usually an error, but a "feature" of ruby). THen actions could disambiguate the trees returned from the parser. That said, it's a black-box, which is why people like ANTLR; you can see what it generates and debug it. ;) Ter _______________________________________________ Rubygrammar-grammarians mailing list [email protected] http://rubyforge.org/mailman/listinfo/rubygrammar-grammarians
