aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toplevel/vernacentries.mli9
1 files changed, 9 insertions, 0 deletions
diff --git a/toplevel/vernacentries.mli b/toplevel/vernacentries.mli
index 3ae29f09af..801eb83eb4 100644
--- a/toplevel/vernacentries.mli
+++ b/toplevel/vernacentries.mli
@@ -22,3 +22,12 @@ val show_node : unit -> unit
(* This function can be used by any command that want to observe terms
in the context of the current goal, as for instance in pcoq *)
val get_current_context_of_args : vernac_arg list -> Proof_type.enamed_declarations * Environ.env
+
+(* This function is used to transform a qualified identifier into a
+ global reference, with a nice error message in case of failure.
+ It is used in pcoq. *)
+val global : Coqast.loc -> qualid -> global_reference;;
+
+(* this function is used to analyse the extra arguments in search commands.
+ It is used in pcoq. *)
+val inside_outside : vernac_arg list -> dir_path list * bool;;