@@ -87,7 +87,7 @@ let add_parent bv lid =
87
87
88
88
let add = add_parent
89
89
90
- let addmodule bv lid = add_path bv lid.txt
90
+ let add_module_path bv lid = add_path bv lid.txt
91
91
92
92
let handle_extension ext =
93
93
match (fst ext).txt with
@@ -266,7 +266,7 @@ let rec add_expr bv exp =
266
266
| Pexp_object { pcstr_self = pat ; pcstr_fields = fieldl } ->
267
267
let bv = add_pattern bv pat in List. iter (add_class_field bv) fieldl
268
268
| Pexp_newtype (_ , e ) -> add_expr bv e
269
- | Pexp_pack m -> add_module bv m
269
+ | Pexp_pack m -> add_module_expr bv m
270
270
| Pexp_open (_ovf , m , e ) ->
271
271
let bv = open_module bv m.txt in add_expr bv e
272
272
| Pexp_extension (({ txt = (" ocaml.extension_constructor" |
@@ -296,7 +296,7 @@ and add_bindings recf bv pel =
296
296
and add_modtype bv mty =
297
297
match mty.pmty_desc with
298
298
Pmty_ident l -> add bv l
299
- | Pmty_alias l -> addmodule bv l
299
+ | Pmty_alias l -> add_module_path bv l
300
300
| Pmty_signature s -> add_signature bv s
301
301
| Pmty_functor (id , mty1 , mty2 ) ->
302
302
Misc. may (add_modtype bv) mty1;
@@ -306,24 +306,24 @@ and add_modtype bv mty =
306
306
List. iter
307
307
(function
308
308
| Pwith_type (_ , td ) -> add_type_declaration bv td
309
- | Pwith_module (_ , lid ) -> addmodule bv lid
309
+ | Pwith_module (_ , lid ) -> add_module_path bv lid
310
310
| Pwith_typesubst (_ , td ) -> add_type_declaration bv td
311
- | Pwith_modsubst (_ , lid ) -> addmodule bv lid
311
+ | Pwith_modsubst (_ , lid ) -> add_module_path bv lid
312
312
)
313
313
cstrl
314
- | Pmty_typeof m -> add_module bv m
314
+ | Pmty_typeof m -> add_module_expr bv m
315
315
| Pmty_extension e -> handle_extension e
316
316
317
317
and add_module_alias bv l =
318
318
(* If we are in delayed dependencies mode, we delay the dependencies
319
319
induced by "Lident s" *)
320
- (if ! Clflags. transparent_modules then add_parent else addmodule ) bv l;
320
+ (if ! Clflags. transparent_modules then add_parent else add_module_path ) bv l;
321
321
try
322
322
lookup_map l.txt bv
323
323
with Not_found ->
324
324
match l.txt with
325
325
Lident s -> make_leaf s
326
- | _ -> addmodule bv l; bound (* cannot delay *)
326
+ | _ -> add_module_path bv l; bound (* cannot delay *)
327
327
328
328
and add_modtype_binding bv mty =
329
329
match mty.pmty_desc with
@@ -391,19 +391,19 @@ and add_module_binding bv modl =
391
391
Pmod_ident l -> add_module_alias bv l
392
392
| Pmod_structure s ->
393
393
make_node (snd @@ add_structure_binding bv s)
394
- | _ -> add_module bv modl; bound
394
+ | _ -> add_module_expr bv modl; bound
395
395
396
- and add_module bv modl =
396
+ and add_module_expr bv modl =
397
397
match modl.pmod_desc with
398
- Pmod_ident l -> addmodule bv l
398
+ Pmod_ident l -> add_module_path bv l
399
399
| Pmod_structure s -> ignore (add_structure bv s)
400
400
| Pmod_functor (id , mty , modl ) ->
401
401
Misc. may (add_modtype bv) mty;
402
- add_module (StringMap. add id.txt bound bv) modl
402
+ add_module_expr (StringMap. add id.txt bound bv) modl
403
403
| Pmod_apply (mod1 , mod2 ) ->
404
- add_module bv mod1; add_module bv mod2
404
+ add_module_expr bv mod1; add_module_expr bv mod2
405
405
| Pmod_constraint (modl , mty ) ->
406
- add_module bv modl; add_modtype bv mty
406
+ add_module_expr bv modl; add_modtype bv mty
407
407
| Pmod_unpack (e ) ->
408
408
add_expr bv e
409
409
| Pmod_extension e ->
@@ -442,7 +442,7 @@ and add_struct_item (bv, m) item : _ StringMap.t * _ StringMap.t =
442
442
in
443
443
let bv' = add bv and m = add m in
444
444
List. iter
445
- (fun x -> add_module bv' x.pmb_expr)
445
+ (fun x -> add_module_expr bv' x.pmb_expr)
446
446
bindings;
447
447
(bv', m)
448
448
| Pstr_modtype x ->
0 commit comments