aboutsummaryrefslogtreecommitdiff
path: root/tactics/extraargs.mli
diff options
context:
space:
mode:
authorherbelin2002-11-14 18:37:54 +0000
committerherbelin2002-11-14 18:37:54 +0000
commite88e0b2140bdd2d194a52bc09f8338b5667d0f92 (patch)
tree67ca22f77ddb98725456e5f9a0b5ad613ae28da5 /tactics/extraargs.mli
parente4efb857fa9053c41e4c030256bd17de7e24542f (diff)
Réforme de l'interprétation des termes :
- Le parsing se fait maintenant via "constr_expr" au lieu de "Coqast.t" - "Coqast.t" reste pour l'instant pour le pretty-printing. Un deuxième pretty-printer dans ppconstr.ml est basé sur "constr_expr". - Nouveau répertoire "interp" qui hérite de la partie interprétation qui se trouvait avant dans "parsing" (constrintern.ml remplace astterm.ml; constrextern.ml est l'équivalent de termast.ml pour le nouveau printer; topconstr.ml; contient la définition de "constr_expr"; modintern.ml remplace astmod.ml) - Libnames.reference tend à remplacer Libnames.qualid git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3235 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/extraargs.mli')
-rw-r--r--tactics/extraargs.mli5
1 files changed, 3 insertions, 2 deletions
diff --git a/tactics/extraargs.mli b/tactics/extraargs.mli
index d5a2b98868..d90de63c94 100644
--- a/tactics/extraargs.mli
+++ b/tactics/extraargs.mli
@@ -11,11 +11,12 @@
open Tacexpr
open Term
open Proof_type
+open Topconstr
val rawwit_orient : bool raw_abstract_argument_type
val wit_orient : bool closed_abstract_argument_type
val orient : bool Pcoq.Gram.Entry.e
-val rawwit_with_constr : Coqast.t option raw_abstract_argument_type
+val rawwit_with_constr : constr_expr option raw_abstract_argument_type
val wit_with_constr : constr option closed_abstract_argument_type
-val with_constr : Coqast.t option Pcoq.Gram.Entry.e
+val with_constr : constr_expr option Pcoq.Gram.Entry.e