@@ -591,7 +591,7 @@ and transl_signature env sg =
591
591
match item.psig_desc with
592
592
| Psig_value sdesc ->
593
593
let (tdesc, newenv) =
594
- Builtin_attributes. with_warning_attribute sdesc.pval_attributes
594
+ Builtin_attributes. warning_scope sdesc.pval_attributes
595
595
(fun () -> Typedecl. transl_value_decl env item.psig_loc sdesc)
596
596
in
597
597
let (trem,rem, final_env) = transl_sig newenv srem in
@@ -634,7 +634,7 @@ and transl_signature env sg =
634
634
check_name check_module names pmd.pmd_name;
635
635
let id = Ident. create pmd.pmd_name.txt in
636
636
let tmty =
637
- Builtin_attributes. with_warning_attribute pmd.pmd_attributes
637
+ Builtin_attributes. warning_scope pmd.pmd_attributes
638
638
(fun () -> transl_modtype env pmd.pmd_type)
639
639
in
640
640
let md = {
@@ -669,7 +669,7 @@ and transl_signature env sg =
669
669
final_env
670
670
| Psig_modtype pmtd ->
671
671
let newenv, mtd, sg =
672
- Builtin_attributes. with_warning_attribute pmtd.pmtd_attributes
672
+ Builtin_attributes. warning_scope pmtd.pmtd_attributes
673
673
(fun () -> transl_modtype_decl names env pmtd)
674
674
in
675
675
let (trem, rem, final_env) = transl_sig newenv srem in
@@ -684,7 +684,7 @@ and transl_signature env sg =
684
684
| Psig_include sincl ->
685
685
let smty = sincl.pincl_mod in
686
686
let tmty =
687
- Builtin_attributes. with_warning_attribute sincl.pincl_attributes
687
+ Builtin_attributes. warning_scope sincl.pincl_attributes
688
688
(fun () -> transl_modtype env smty)
689
689
in
690
690
let mty = tmty.mty_type in
@@ -742,21 +742,22 @@ and transl_signature env sg =
742
742
classes [rem]),
743
743
final_env
744
744
| Psig_attribute x ->
745
- Builtin_attributes. warning_attribute [x] ;
745
+ Builtin_attributes. warning_attribute x ;
746
746
let (trem,rem, final_env) = transl_sig env srem in
747
747
mksig (Tsig_attribute x) env loc :: trem, rem, final_env
748
748
| Psig_extension (ext , _attrs ) ->
749
749
raise (Error_forward (Builtin_attributes. error_of_extension ext))
750
750
in
751
751
let previous_saved_types = Cmt_format. get_saved_types () in
752
- Builtin_attributes. warning_enter_scope () ;
753
- let (trem, rem, final_env) = transl_sig (Env. in_signature true env) sg in
754
- let rem = simplify_signature rem in
755
- let sg = { sig_items = trem; sig_type = rem; sig_final_env = final_env } in
756
- Builtin_attributes. warning_leave_scope () ;
757
- Cmt_format. set_saved_types
758
- ((Cmt_format. Partial_signature sg) :: previous_saved_types);
759
- sg
752
+ Builtin_attributes. warning_scope []
753
+ (fun () ->
754
+ let (trem, rem, final_env) = transl_sig (Env. in_signature true env) sg in
755
+ let rem = simplify_signature rem in
756
+ let sg = { sig_items = trem; sig_type = rem; sig_final_env = final_env } in
757
+ Cmt_format. set_saved_types
758
+ ((Cmt_format. Partial_signature sg) :: previous_saved_types);
759
+ sg
760
+ )
760
761
761
762
and transl_modtype_decl names env
762
763
{pmtd_name; pmtd_type; pmtd_attributes; pmtd_loc} =
@@ -794,7 +795,7 @@ and transl_recmodule_modtypes env sdecls =
794
795
List. map2
795
796
(fun pmd (id , id_loc , _mty ) ->
796
797
let tmty =
797
- Builtin_attributes. with_warning_attribute pmd.pmd_attributes
798
+ Builtin_attributes. warning_scope pmd.pmd_attributes
798
799
(fun () -> transl_modtype env_c pmd.pmd_type)
799
800
in
800
801
(id, id_loc, tmty))
@@ -1227,7 +1228,7 @@ and type_structure ?(toplevel = false) funct_body anchor env sstr scope =
1227
1228
match desc with
1228
1229
| Pstr_eval (sexpr , attrs ) ->
1229
1230
let expr =
1230
- Builtin_attributes. with_warning_attribute attrs
1231
+ Builtin_attributes. warning_scope attrs
1231
1232
(fun () -> Typecore. type_expression env sexpr)
1232
1233
in
1233
1234
Tstr_eval (expr, attrs), [] , env
@@ -1290,7 +1291,7 @@ and type_structure ?(toplevel = false) funct_body anchor env sstr scope =
1290
1291
check_name check_module names name;
1291
1292
let id = Ident. create name.txt in (* create early for PR#6752 *)
1292
1293
let modl =
1293
- Builtin_attributes. with_warning_attribute attrs
1294
+ Builtin_attributes. warning_scope attrs
1294
1295
(fun () ->
1295
1296
type_module ~alias: true true funct_body
1296
1297
(anchor_submodule name.txt anchor) env smodl
@@ -1343,7 +1344,7 @@ and type_structure ?(toplevel = false) funct_body anchor env sstr scope =
1343
1344
List. map2
1344
1345
(fun {md_id =id ; md_type =mty } (name , _ , smodl , attrs , loc ) ->
1345
1346
let modl =
1346
- Builtin_attributes. with_warning_attribute attrs
1347
+ Builtin_attributes. warning_scope attrs
1347
1348
(fun () ->
1348
1349
type_module true funct_body (anchor_recmodule id)
1349
1350
newenv smodl
@@ -1382,7 +1383,7 @@ and type_structure ?(toplevel = false) funct_body anchor env sstr scope =
1382
1383
| Pstr_modtype pmtd ->
1383
1384
(* check that it is non-abstract *)
1384
1385
let newenv, mtd, sg =
1385
- Builtin_attributes. with_warning_attribute pmtd.pmtd_attributes
1386
+ Builtin_attributes. warning_scope pmtd.pmtd_attributes
1386
1387
(fun () -> transl_modtype_decl names env pmtd)
1387
1388
in
1388
1389
Tstr_modtype mtd, [sg], newenv
@@ -1443,7 +1444,7 @@ and type_structure ?(toplevel = false) funct_body anchor env sstr scope =
1443
1444
| Pstr_include sincl ->
1444
1445
let smodl = sincl.pincl_mod in
1445
1446
let modl =
1446
- Builtin_attributes. with_warning_attribute sincl.pincl_attributes
1447
+ Builtin_attributes. warning_scope sincl.pincl_attributes
1447
1448
(fun () -> type_module true funct_body None env smodl)
1448
1449
in
1449
1450
(* Rename all identifiers bound by this signature to avoid clashes *)
@@ -1462,7 +1463,7 @@ and type_structure ?(toplevel = false) funct_body anchor env sstr scope =
1462
1463
| Pstr_extension (ext , _attrs ) ->
1463
1464
raise (Error_forward (Builtin_attributes. error_of_extension ext))
1464
1465
| Pstr_attribute x ->
1465
- Builtin_attributes. warning_attribute [x] ;
1466
+ Builtin_attributes. warning_attribute x ;
1466
1467
Tstr_attribute x, [] , env
1467
1468
in
1468
1469
let rec type_struct env sstr =
@@ -1482,13 +1483,15 @@ and type_structure ?(toplevel = false) funct_body anchor env sstr scope =
1482
1483
(* moved to genannot *)
1483
1484
List. iter (function {pstr_loc = l } -> Stypes. record_phrase l) sstr;
1484
1485
let previous_saved_types = Cmt_format. get_saved_types () in
1485
- if not toplevel then Builtin_attributes. warning_enter_scope () ;
1486
- let (items, sg, final_env) = type_struct env sstr in
1487
- let str = { str_items = items; str_type = sg; str_final_env = final_env } in
1488
- if not toplevel then Builtin_attributes. warning_leave_scope () ;
1489
- Cmt_format. set_saved_types
1490
- (Cmt_format. Partial_structure str :: previous_saved_types);
1491
- str, sg, final_env
1486
+ let run () =
1487
+ let (items, sg, final_env) = type_struct env sstr in
1488
+ let str = { str_items = items; str_type = sg; str_final_env = final_env } in
1489
+ Cmt_format. set_saved_types
1490
+ (Cmt_format. Partial_structure str :: previous_saved_types);
1491
+ str, sg, final_env
1492
+ in
1493
+ if toplevel then run ()
1494
+ else Builtin_attributes. warning_scope [] run
1492
1495
1493
1496
let type_toplevel_phrase env s =
1494
1497
Env. reset_required_globals () ;
0 commit comments