|
|
|
|
|
by _tef
5581 days ago
|
|
and while i'm here - the original earley paper is full of bugs.for a modern treatment you may find aycock & horspool's work on 'practical earley parsing' interesting, as well as the work on the Marpa Parser in perl. to me: the earley parser and the packrat parser are similar in nature - they are both chart parsers. one is depth first, one is breadth first. my question: can you engineer an earley parser that supports ordered choice and exploits this to avoid broadening the search too early -- ie can earley parsers support PEGs I think it is possible and when i'm not drowning in my startup work i'd like to take a longer look at it. fwiw my terrible attempts at an earley recognizer are here http://pastie.org/private/uezi1mxiur8dymdbh2scw i've tried to use some ideas from the aycock and the aretz variants of the earley parser - avoiding lists of earley items at a character - instead storing the reductions/completions seperately from the scanning items,
and using a driver rather than the predictor/completor loop (still need to add nullable support...) |
|