blob: ec5eb3327c7ec17581227810d4de0c07a28f29cb (
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
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2011 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(*i $Id: mod_typing.mli 14641 2011-11-06 11:59:10Z herbelin $ i*)
(*i*)
open Declarations
open Environ
open Entries
open Mod_subst
open Names
(*i*)
val translate_module : env -> module_path -> bool -> module_entry
-> module_body
val translate_module_type : env -> module_path -> bool -> module_struct_entry ->
module_type_body
val translate_struct_module_entry : env -> module_path -> bool -> module_struct_entry ->
struct_expr_body * struct_expr_body * delta_resolver * Univ.constraints
val translate_struct_type_entry : env -> bool -> module_struct_entry ->
struct_expr_body * struct_expr_body option * delta_resolver * module_path * Univ.constraints
val translate_struct_include_module_entry : env -> module_path
-> bool -> module_struct_entry -> struct_expr_body * 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
|