From 6b649aba925b6f7462da07599fe67ebb12a3460e Mon Sep 17 00:00:00 2001 From: Samuel Mimram Date: Wed, 28 Jul 2004 21:54:47 +0000 Subject: Imported Upstream version 8.0pl1 --- parsing/termast.mli | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 parsing/termast.mli (limited to 'parsing/termast.mli') diff --git a/parsing/termast.mli b/parsing/termast.mli new file mode 100644 index 00000000..c66e8f0f --- /dev/null +++ b/parsing/termast.mli @@ -0,0 +1,55 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* Coqast.t +val ast_of_rawconstr : rawconstr -> Coqast.t +val ast_of_pattern : env -> names_context -> constr_pattern -> Coqast.t + +(* If [b=true] in [ast_of_constr b env c] then the variables in the first + level of quantification clashing with the variables in [env] are renamed *) + +val ast_of_constr : bool -> env -> constr -> Coqast.t + +val ast_of_constant : env -> constant -> Coqast.t +val ast_of_existential : env -> existential -> Coqast.t +val ast_of_constructor : env -> constructor -> Coqast.t +val ast_of_inductive : env -> inductive -> Coqast.t +val ast_of_ref : global_reference -> Coqast.t +val ast_of_qualid : qualid -> Coqast.t + +(*i Now in constrextern.mli +val print_implicits : bool ref +val print_casts : bool ref +val print_arguments : bool ref +val print_evar_arguments : bool ref +val print_coercions : bool ref +val print_universes : bool ref + +val with_casts : ('a -> 'b) -> 'a -> 'b +val with_implicits : ('a -> 'b) -> 'a -> 'b +val with_arguments : ('a -> 'b) -> 'a -> 'b +val with_coercions : ('a -> 'b) -> 'a -> 'b +val with_universes : ('a -> 'b) -> 'a -> 'b +i*) -- cgit v1.2.3