- Try to do better pretty printing when array elements are individually
[bpt/coccinelle.git] / bundles / menhirLib / menhir-20120123 / src / parameterizedGrammar.mli
diff --git a/bundles/menhirLib/menhir-20120123/src/parameterizedGrammar.mli b/bundles/menhirLib/menhir-20120123/src/parameterizedGrammar.mli
deleted file mode 100644 (file)
index 5e835a2..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-(**************************************************************************)
-(*                                                                        *)
-(*  Menhir                                                                *)
-(*                                                                        *)
-(*  François Pottier, INRIA Rocquencourt                                  *)
-(*  Yann Régis-Gianas, PPS, Université Paris Diderot                      *)
-(*                                                                        *)
-(*  Copyright 2005-2008 Institut National de Recherche en Informatique    *)
-(*  et en Automatique. All rights reserved. This file is distributed      *)
-(*  under the terms of the Q Public License version 1.0, with the change  *)
-(*  described in file LICENSE.                                            *)
-(*                                                                        *)
-(**************************************************************************)
-
-(* $Id: parameterizedGrammar.mli,v 1.6 2005/12/01 16:20:06 regisgia Exp $ *)
-
-(* This turns a grammar where nonterminal symbols can be parameterized
-   into a grammar where nonterminal symbols are not parameterized. The
-   transformation is a textual expansion process, whose termination is
-   guaranteed by a simple type system.
-
-   Expansion creates new nonterminal symbols whose names contain
-   parentheses and commas. These names can be printed directly in
-   informational messages (error messages, conflict reports,
-   descriptions of the automaton, etc.). However, they must be
-   sanitized via [Misc.normalize] when printed in a context where a
-   valid identifier is expected. *)
-
-val expand : InternalSyntax.grammar -> UnparameterizedSyntax.grammar
-
-