cd1ebbbdc4
2016/05/04: In the Coq backend, split the largest definitions into smaller ones. This circumvenents a limitation of vm_compute on 32 bit machines. This also enables us to perform sharing between definitions, so that the generated files are much smaller. 2016/04/10: When printing a grammar (which is done by the --only-preprocess options), remove the leading bar '|', for compatibility with yacc and bison. 2016/03/11: In the code back-end, generate type annotations when extracting a semantic value out of the stack. When working with a semantic value of some function type, OCaml would incorrectly warn that this function does not use its argument. This warning should now be gone. 2016/03/03: Makefile changes, so as to support ocamlbuild 4.03, which seems to have stricter hygiene rules than previous versions. 2015/12/30: Prevented an incorrect installation that would take place if USE_OCAMLFIND was given during "make all" but not during "make install". Added a command line directive --suggest-ocamlfind. 2015/11/11: Fixed a severe bug in Menhir 20151110 which (when using the code back-end) could cause a generated parser to crash. Thanks to ygrek for reporting the bug. 2015/11/11: The code produced by version XXXXXXXX of menhir --table can now be linked only against a matching version of MenhirLib. If an incorrect version of MenhirLib is installed, the OCaml compiler should complain that [MenhirLib.StaticVersion.require_XXXXXXXX] is undefined. 2015/11/10: Optimized the computation of $symbolstartpos, based on a couple of assumptions about the lexer. (See the manual.) 2015/11/04: Modified the treatment of %inline so that the positions that are computed are the same, regardless of whether %inline is used. This property did not hold until now. It now does. Of course, this means that the positions computed by the new Menhir are not the same as those computed by older versions of Menhir. 2015/11/04: Fixed a bug in the treatment of %inline that would lead to an incorrect position being computed when the caller and callee had a variable by the same name. 2015/11/04: Modified Menhir so as to compute the start and end positions in the exact same way as ocamlyacc. (There used to be a difference in the treatment of epsilon productions.) Of course, this means that the positions computed by the new Menhir are not the same as those computed by older versions of Menhir. Added the keyword $symbolstartpos so as to simulate Parsing.symbol_start_pos() in the ocamlyacc world. The keyword $startpos sometimes produces a position that is too far off to the left; $symbolstartpos produces a more accurate position. 2015/11/04: Incompatible change of the incremental API: instead of a unit argument, the entry points (which are named after the start symbols) now require an initial position, which typically should be [lexbuf.lex_curr_p]. 2015/11/03: Fix-fix-and-re-fix the Makefile in an attempt to allow installation under opam/Windows. Thanks to Daniel Weil for patient explanations and testing. 2015/10/29: MenhirLib is now installed in both binary and source forms. "menhir --suggest-menhirLib" reports where MenhirLib is installed. This can be used to retrieve a snapshot of MenhirLib in source form and include it in your project (if you wish to use --table mode, yet do not wish to have a dependency on MenhirLib). 2015/10/26: Allow --list-errors to work on 32-bit machines (with low hard limits). This should fix a problem whereby the 2015/10/23 release could not bootstrap on a 32-bit machine. 2015/10/23: New declaration "%on_error_reduce foo", where foo is a nonterminal symbol. This modifies the automaton as follows. In every state where a production of the form "foo -> ..." is ready to be reduced, every error action is replaced with a reduction of this production. (If there is a conflict between several productions that could be reduced in this manner, nothing is done.) This does not affect the language that is accepted by the automaton, but delays the detection of an error: more reductions take place before the error is detected. 2015/10/23: Fixed a bug whereby Menhir would warn about a useless %prec declaration, even though it was useful. This would happen when the declaration was duplicated (by inlining or by macro-expansion) and some but not all of the copies were useful. 2015/10/23: Added [has_default_reduction] to the incremental API. 2015/10/23: Modified the meaning of --canonical to allow default reductions to take place. This implies no loss of precision in terms of lookahead sets, and should allow gaining more contextual information when a syntax error is encountered. (It should also lead to a smaller automaton.) 2015/10/23: A brand new set of tools to work on syntax errors. New command --list-errors, which produces a list of input sentences which are representative of all possible syntax errors. (Costly.) New command --interpret-error, which confirms that one particular input sentence ends in a syntax error, and prints the number of the state in which this error occurs. New command --compile-errors, which compiles a list of erroneous sentences (together with error messages) to OCaml code. New command --compare-errors, which compares two lists of erroneous sentences to check if they cover the same error states. New command --update-errors, which updates the auto-generated comments in a list of erroneous sentences. New command --echo-errors, which removes all comments and messages from a list of erroneous sentences, and echoes just the sentences. 2015/10/16: Additions to the incremental API. A [supplier] is a function that produces tokens on demand. [lexer_lexbuf_to_supplier] turns a lexer and a lexbuf into a supplier. [loop] is a ready-made made main parsing loop. [loop_handle] is a variant that lets the user do her own error handling. [loop_handle_undo] is a variant that additionally allows undoing the last few "spurious" reductions. [number] maps a state of the LR(1) automaton to its number. 2015/10/16: Incompatible change of the incremental API: renamed the type ['a result] to ['a checkpoint]. This is a better name anyway, and should help avoid confusion with the type ['a result] introduced in OCaml 4.03. 2015/10/12: Avoid using $(shell pwd) in Makefile, for better Windows compatibility. 2015/10/05: Fixed a bug where inconsistent OCaml code was generated when --table and --external-tokens were used together. (Reported by Darin Morrison.) 2015/10/05: In --infer mode, leave the .ml file around (instead of removing it) if ocamlc fails, so we have a chance to understand what's wrong. 2015/09/21: Re-established some error messages concerning the mis-use of $i which had disappeared on 2015/06/29. 2015/09/11: Fixed the mysterious message that would appear when a nonterminal symbol begins with an uppercase letter and --infer is turned on. Clarified the documentation to indicate that a (non-start) nonterminal symbol can begin with an uppercase letter, but this is not recommended. 2015/08/27: New option --inspection (added last January, documented only now). This generates an inspection API which allows inspecting the automaton's stack, among other things. This API can in principle be used to write custom code for error reporting, error recovery, etc. It is not yet mature and may change in the future. 2015/07/20: Added the command line options --unused-token <symbol> and --unused-tokens. 2015/06/29: Changed the treatment of the positional keywords $i. They are now rewritten into variables of the form '_i' where 'i' is an integer. Users are advised not to use variables of this form inside semantic actions. 2015/02/11: Added support for anonymous rules. This allows writing, e.g., list(e = expression SEMI { e }) whereas previously one should have written list(terminated(e, SEMI)). 2015/02/09: Moved all of the demos to ocamlbuild (instead of make). 2015/01/18: Incompatible change of the incremental API. The incremental API now exposes shift events too. 2015/01/16: Fixed a couple bugs in Makefile and src/Makefile which would cause compilation and installation to fail with "TARGET=byte". (Reported by Jérémie Courrèges-Anglas and Daniel Dickman.) 2015/01/01: Incompatible change of the incremental API. The entry point main_incremental is now named Incremental.main. 2014/12/29: Incompatible change of the incremental API. The API now exposes reduction events. The type 'a result is now private. The type env is no longer parameterized. [handle] is renamed to [resume]. [offer] and [resume] now expect a result, not an environment. 2014/12/22: Documented the Coq back-end (designed and implemented by Jacques-Henri Jourdan). 2014/12/15: New incremental API (in --table mode only), inspired by Frédéric Bour. 2014/12/11: Menhir now reports an error if one of the start symbols produces either the empty language or the singleton language {epsilon}. Although some people out there actually define a start symbol that recognizes {epsilon} (and use it as a way of initializing or re-initializing some global state), this is considered bad style. Furthermore, by ruling out this case, we are able to simplify the table back-end a little bit. 2014/12/12: A speed improvement in the code back-end. 2014/12/08: Menhir now requires OCaml 4.02 (instead of 3.09). 2014/12/02: Removed support for the $previouserror keyword. Removed support for --error-recovery mode.
7 lines
478 B
Text
7 lines
478 B
Text
$NetBSD: distinfo,v 1.6 2016/05/06 11:51:47 jaapb Exp $
|
|
|
|
SHA1 (menhir-20160303.tar.gz) = 46d58d98e2073d056b026d0508bd52e772f19df0
|
|
RMD160 (menhir-20160303.tar.gz) = 9dd78e488c79067f493cbc233b26019e68071b51
|
|
SHA512 (menhir-20160303.tar.gz) = 9d5dbdf863f8e3157933a79690835d98f806e8110d3fcfe2b6e4137522fe8a5d063d058e4956ba30ed71a3ac5b2a82020f598799c67c4b692e4712e15b7f290c
|
|
Size (menhir-20160303.tar.gz) = 750200 bytes
|
|
SHA1 (patch-Makefile) = a15a0f7d42c3e5375af8b38de3296ff8634f1f68
|