aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/library.ml
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2015-01-17 11:48:21 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2015-01-17 11:48:21 +0100
commitb3b229aae5df17272d0d1060da4795be5d2c9573 (patch)
tree574d5af8b8f11ef0e099b9d7fb8504c638f070c8 /library/library.ml
parent20f9a1404f84ddabde2d1cbacc9063d9de87dfa9 (diff)
Partially revert "Forbid Require inside interactive modules and module types."
This reverts commit 6d5b56d971506dfadcfc824bfbb09dc21718e42b but does not put back in place the Requires inside modules that were found in the std lib. Conflicts: kernel/safe_typing.ml
Diffstat (limited to 'library/library.ml')
-rw-r--r--library/library.ml22
1 files changed, 16 insertions, 6 deletions
diff --git a/library/library.ml b/library/library.ml
index b443c2a4c..481d8707a 100644
--- a/library/library.ml
+++ b/library/library.ml
@@ -537,12 +537,18 @@ let in_require : require_obj -> obj =
if [export = Some true] *)
let require_library_from_dirpath modrefl export =
- if Lib.is_module_or_modtype () then
- error "Require is not allowed inside a module or a module type";
let needed, contents = List.fold_left rec_intern_library ([], DPMap.empty) modrefl in
let needed = List.rev_map (fun dir -> DPMap.find dir contents) needed in
let modrefl = List.map fst modrefl in
- add_anonymous_leaf (in_require (needed,modrefl,export));
+ if Lib.is_module_or_modtype () then
+ begin
+ add_anonymous_leaf (in_require (needed,modrefl,None));
+ Option.iter (fun exp ->
+ List.iter (fun dir -> add_anonymous_leaf (in_import(dir,exp))) modrefl)
+ export
+ end
+ else
+ add_anonymous_leaf (in_require (needed,modrefl,export));
add_frozen_state ()
let require_library qidl export =
@@ -550,11 +556,15 @@ let require_library qidl export =
require_library_from_dirpath modrefl export
let require_library_from_file idopt file export =
- if Lib.is_module_or_modtype () then
- error "Require is not allowed inside a module or a module type";
let modref,needed = rec_intern_library_from_file idopt file in
let needed = List.rev_map snd needed in
- add_anonymous_leaf (in_require (needed,[modref],export));
+ if Lib.is_module_or_modtype () then begin
+ add_anonymous_leaf (in_require (needed,[modref],None));
+ Option.iter (fun exp -> add_anonymous_leaf (in_import (modref,exp)))
+ export
+ end
+ else
+ add_anonymous_leaf (in_require (needed,[modref],export));
add_frozen_state ()
(* the function called by Vernacentries.vernac_import *)