blob: 6368ebeed86bbcf8f90aa27ca1543a1b2878af8e (
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
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * INRIA, CNRS and contributors - Copyright 1999-2019 *)
(* <O___,, * (see CREDITS file for the list of authors) *)
(* \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
: 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
|