@@ -324,16 +324,16 @@ and add_module_alias bv l =
324
324
| _ -> addmodule bv l; bound (* cannot delay *)
325
325
326
326
and add_modtype_binding bv mty =
327
- if not ! Clflags. transparent_modules then add_modtype bv mty;
328
327
match mty.pmty_desc with
329
328
Pmty_alias l ->
329
+ if not ! Clflags. transparent_modules then addmodule bv l;
330
330
add_module_alias bv l
331
331
| Pmty_signature s ->
332
332
make_node (add_signature_binding bv s)
333
333
| Pmty_typeof modl ->
334
334
add_module_binding bv modl
335
335
| _ ->
336
- if ! Clflags. transparent_modules then add_modtype bv mty; bound
336
+ add_modtype bv mty; bound
337
337
338
338
and add_signature bv sg =
339
339
ignore (add_signature_binding bv sg)
@@ -386,9 +386,9 @@ and add_sig_item (bv, m) item =
386
386
(bv, m)
387
387
388
388
and add_module_binding bv modl =
389
- if not ! Clflags. transparent_modules then add_module bv modl;
390
389
match modl.pmod_desc with
391
390
Pmod_ident l ->
391
+ if not ! Clflags. transparent_modules then addmodule bv l;
392
392
begin try
393
393
add_parent bv l;
394
394
lookup_map l.txt bv
@@ -398,9 +398,10 @@ and add_module_binding bv modl =
398
398
| _ -> addmodule bv l; bound
399
399
end
400
400
| Pmod_structure s ->
401
- make_node (snd (add_structure_binding bv s))
402
- | _ ->
403
- if ! Clflags. transparent_modules then add_module bv modl; bound
401
+ let n = make_node (snd @@ add_structure_binding bv s) in
402
+ if not ! Clflags. transparent_modules then add_names (collect_free n);
403
+ n
404
+ | _ -> add_module bv modl; bound
404
405
405
406
and add_module bv modl =
406
407
match modl.pmod_desc with
0 commit comments