|
|
|
|
|
by dbcurtis
71 days ago
|
|
The thing about LR parsers is that since it is parsing bottom-up, you have no idea what larger syntactic structure is being built, so error recovery is ugly, and giving the user a sensible error message is a fool’s errand. In the end, all the hard work in a compiler is in the back-end optimization phases. Put your mental energy there. |
|