diff options
Diffstat (limited to 'parsing/g_minicoq.mli')
-rw-r--r-- | parsing/g_minicoq.mli | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/parsing/g_minicoq.mli b/parsing/g_minicoq.mli new file mode 100644 index 00000000..e19b1163 --- /dev/null +++ b/parsing/g_minicoq.mli @@ -0,0 +1,31 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +(*i $Id: g_minicoq.mli,v 1.8.16.1 2004/07/16 19:30:39 herbelin Exp $ i*) + +(*i*) +open Pp +open Names +open Term +open Environ +(*i*) + +val term : constr Grammar.Entry.e + +type command = + | Definition of identifier * constr option * constr + | Parameter of identifier * constr + | Variable of identifier * constr + | Inductive of + (identifier * constr) list * + (identifier * constr * (identifier * constr) list) list + | Check of constr + +val command : command Grammar.Entry.e + +val pr_term : path_kind -> env -> constr -> std_ppcmds |