Browse thread
[ANNOUNCE] Alpha release of Menhir, an LR(1) parser generator for ocaml
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2005-12-30 (21:58) |
From: | Florian Weimer <fw@d...> |
Subject: | Re: [Caml-list] Re: [ANNOUNCE] Alpha release of Menhir, an LR(1) parser generator for ocaml |
* Francois Pottier: > What about non-toy projects? Are there times where the automatic error > recovery mechanism gets in the way? AFAIK, MLton uses it, and the inserted symbols are often not those that are actually missing. This leads to error messages which are rather confusing. With manually written error handling, you can surely do much better, but the effort pays off in special cases. (Most of the time, the careful error handling code is never written, of course.)