blob: b30bbc3ce787b6ae3fbe14847f03cd7ffad59824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * Copyright INRIA, CNRS and contributors *)
(* <O___,, * (see version control and CREDITS file for authors & dates) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
(** Vernac Translation into the Vernac DSL *)
val translate_vernac
: ?loc:Loc.t
-> atts:Attributes.vernac_flags
-> Vernacexpr.vernac_expr
-> Vernacextend.typed_vernac
(** Vernacular require command *)
val vernac_require :
Libnames.qualid option -> bool option -> Libnames.qualid list -> unit
(** Hook to dissappear when #8240 is fixed *)
val interp_redexp_hook : (Environ.env -> Evd.evar_map -> Genredexpr.raw_red_expr ->
Evd.evar_map * Redexpr.red_expr) Hook.t
(** Miscellaneous stuff *)
val command_focus : unit Proof.focus_kind
val allow_sprop_opt_name : string list
|