aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/declaremods.mli
diff options
context:
space:
mode:
authorGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-01-02 20:28:44 +0000
committerGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-01-02 20:28:44 +0000
commitb96e45b1714c12daa1127e8bf14467eea07ebe17 (patch)
tree8e5915dc3d72d498495e49a8bbbd7c066cb71026 /library/declaremods.mli
parent0d3a3d5650cd374eed4272a0de1e3f926a8d3c40 (diff)
meilleure presentation des commentaires du traducteur
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5168 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/declaremods.mli')
-rw-r--r--library/declaremods.mli9
1 files changed, 5 insertions, 4 deletions
diff --git a/library/declaremods.mli b/library/declaremods.mli
index 94144d625..ff3268898 100644
--- a/library/declaremods.mli
+++ b/library/declaremods.mli
@@ -9,6 +9,7 @@
(*i $Id$ i*)
(*i*)
+open Util
open Names
open Entries
open Environ
@@ -38,12 +39,12 @@ open Lib
val declare_module :
(env -> 'modtype -> module_type_entry) -> (env -> 'modexpr -> module_expr) ->
identifier ->
- (identifier list * 'modtype) list -> ('modtype * bool) option ->
+ (identifier located list * 'modtype) list -> ('modtype * bool) option ->
'modexpr option -> unit
val start_module : (env -> 'modtype -> module_type_entry) ->
identifier ->
- (identifier list * 'modtype) list -> ('modtype * bool) option ->
+ (identifier located list * 'modtype) list -> ('modtype * bool) option ->
unit
val end_module : identifier -> unit
@@ -53,10 +54,10 @@ val end_module : identifier -> unit
(*s Module types *)
val declare_modtype : (env -> 'modtype -> module_type_entry) ->
- identifier -> (identifier list * 'modtype) list -> 'modtype -> unit
+ identifier -> (identifier located list * 'modtype) list -> 'modtype -> unit
val start_modtype : (env -> 'modtype -> module_type_entry) ->
- identifier -> (identifier list * 'modtype) list -> unit
+ identifier -> (identifier located list * 'modtype) list -> unit
val end_modtype : identifier -> unit