|
|
|
|
|
by haberman
2020 days ago
|
|
> Packrat parsers are notably faster than recursive descent parsers I think this needs to be qualified. I don't think a packrat parser is going to beat a deterministic top-down parser. Maybe the packrat parser will win if the recursive descent parser is backtracking. |
|
Packrat parsers are equivalent to arbitrary lookahead in either LL or LR grammars.