blob: 0987ca5b6af442948a6f1b3ceb34f0c732b2b916 (
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
51
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
open Declarations
open Environ
open Entries
open Mod_subst
open Names
val translate_module :
env -> module_path -> inline -> module_entry -> module_body
val translate_module_type :
env -> module_path -> inline -> module_struct_entry -> module_type_body
val translate_struct_module_entry :
env -> module_path -> inline -> module_struct_entry ->
struct_expr_body (* Signature *)
* struct_expr_body option (* Algebraic expr, in fact never None *)
* delta_resolver
* Univ.constraints
val translate_struct_type_entry :
env -> inline -> module_struct_entry ->
struct_expr_body
* struct_expr_body option
* delta_resolver
* Univ.constraints
val translate_struct_include_module_entry :
env -> module_path -> inline -> module_struct_entry ->
struct_expr_body
* struct_expr_body option (* Algebraic expr, always None *)
* delta_resolver
* Univ.constraints
val add_modtype_constraints : env -> module_type_body -> env
val add_module_constraints : env -> module_body -> env
val add_struct_expr_constraints : env -> struct_expr_body -> env
val struct_expr_constraints : struct_expr_body -> Univ.constraints
val module_constraints : module_body -> Univ.constraints
|