blob: 3d3bdcad16df2fd5092bc0ac403ec0ee8fa19b53 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
(************************************************************************)
(* * 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) *)
(************************************************************************)
open Names
open Constr
open Environ
open Declarations
open Entries
(** Handlers are used to manage side-effects. The ['a] type stands for the type
of side-effects, and it is parametric because they are only defined later
on. Handlers inline the provided side-effects into the term, and return
the set of additional global constraints that need to be added for the term
to be well typed. *)
type 'a effect_handler =
env -> Constr.t -> 'a -> (Constr.t * Univ.ContextSet.t * int)
type typing_context
val translate_local_def : env -> Id.t -> section_def_entry ->
constr * Sorts.relevance * types
val translate_local_assum : env -> types -> types * Sorts.relevance
val translate_constant :
env -> Constant.t -> constant_entry ->
'a constant_body
val translate_opaque :
env -> Constant.t -> 'a opaque_entry ->
unit constant_body * typing_context
val translate_recipe : env -> Constant.t -> Cooking.recipe -> Opaqueproof.opaque constant_body
val check_delayed : 'a effect_handler -> typing_context -> 'a proof_output -> (Constr.t * Univ.ContextSet.t Opaqueproof.delayed_universes)
(** Internal functions, mentioned here for debug purpose only *)
val infer_declaration : env ->
constant_entry -> typing_context Cooking.result
val build_constant_declaration :
env -> Opaqueproof.proofterm Cooking.result -> Opaqueproof.proofterm constant_body
|