@@ -1441,6 +1441,12 @@ pub struct BodyId {
1441
1441
pub hir_id : HirId ,
1442
1442
}
1443
1443
1444
+ #[ derive( Copy , Clone , PartialEq , Eq , Hash , Debug , HashStable_Generic ) ]
1445
+ pub struct FnContractIds {
1446
+ pub precond_hir_id : Option < HirId > ,
1447
+ pub postcond_hir_id : Option < HirId > ,
1448
+ }
1449
+
1444
1450
/// The body of a function, closure, or constant value. In the case of
1445
1451
/// a function, the body contains not only the function body itself
1446
1452
/// (which is an expression), but also the argument patterns, since
@@ -3325,8 +3331,8 @@ impl<'hir> Item<'hir> {
3325
3331
expect_const, ( & ' hir Ty <' hir>, & ' hir Generics <' hir>, BodyId ) ,
3326
3332
ItemKind :: Const ( ty, generics, body) , ( ty, generics, * body) ;
3327
3333
3328
- expect_fn, ( & FnSig <' hir>, & ' hir Generics <' hir>, BodyId ) ,
3329
- ItemKind :: Fn ( sig, generics, body) , ( sig, generics, * body) ;
3334
+ expect_fn, ( & FnSig <' hir>, & ' hir Generics <' hir>, Option < & ' hir FnContractIds > , BodyId ) ,
3335
+ ItemKind :: Fn ( sig, generics, contract_ids , body) , ( sig, generics, * contract_ids , * body) ;
3330
3336
3331
3337
expect_macro, ( & ast:: MacroDef , MacroKind ) , ItemKind :: Macro ( def, mk) , ( def, * mk) ;
3332
3338
@@ -3441,7 +3447,7 @@ pub enum ItemKind<'hir> {
3441
3447
/// A `const` item.
3442
3448
Const ( & ' hir Ty < ' hir > , & ' hir Generics < ' hir > , BodyId ) ,
3443
3449
/// A function declaration.
3444
- Fn ( FnSig < ' hir > , & ' hir Generics < ' hir > , BodyId ) ,
3450
+ Fn ( FnSig < ' hir > , & ' hir Generics < ' hir > , Option < & ' hir FnContractIds > , BodyId ) ,
3445
3451
/// A MBE macro definition (`macro_rules!` or `macro`).
3446
3452
Macro ( & ' hir ast:: MacroDef , MacroKind ) ,
3447
3453
/// A module.
@@ -3492,7 +3498,7 @@ pub struct Impl<'hir> {
3492
3498
impl ItemKind < ' _ > {
3493
3499
pub fn generics ( & self ) -> Option < & Generics < ' _ > > {
3494
3500
Some ( match * self {
3495
- ItemKind :: Fn ( _, ref generics, _)
3501
+ ItemKind :: Fn ( _, ref generics, _, _ )
3496
3502
| ItemKind :: TyAlias ( _, ref generics)
3497
3503
| ItemKind :: Const ( _, ref generics, _)
3498
3504
| ItemKind :: Enum ( _, ref generics)
@@ -3677,7 +3683,7 @@ impl<'hir> OwnerNode<'hir> {
3677
3683
match self {
3678
3684
OwnerNode :: TraitItem ( TraitItem { kind : TraitItemKind :: Fn ( fn_sig, _) , .. } )
3679
3685
| OwnerNode :: ImplItem ( ImplItem { kind : ImplItemKind :: Fn ( fn_sig, _) , .. } )
3680
- | OwnerNode :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _) , .. } )
3686
+ | OwnerNode :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _, _ ) , .. } )
3681
3687
| OwnerNode :: ForeignItem ( ForeignItem {
3682
3688
kind : ForeignItemKind :: Fn ( fn_sig, _, _) , ..
3683
3689
} ) => Some ( fn_sig) ,
@@ -3689,7 +3695,7 @@ impl<'hir> OwnerNode<'hir> {
3689
3695
match self {
3690
3696
OwnerNode :: TraitItem ( TraitItem { kind : TraitItemKind :: Fn ( fn_sig, _) , .. } )
3691
3697
| OwnerNode :: ImplItem ( ImplItem { kind : ImplItemKind :: Fn ( fn_sig, _) , .. } )
3692
- | OwnerNode :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _) , .. } )
3698
+ | OwnerNode :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _, _ ) , .. } )
3693
3699
| OwnerNode :: ForeignItem ( ForeignItem {
3694
3700
kind : ForeignItemKind :: Fn ( fn_sig, _, _) , ..
3695
3701
} ) => Some ( fn_sig. decl ) ,
@@ -3703,7 +3709,7 @@ impl<'hir> OwnerNode<'hir> {
3703
3709
kind :
3704
3710
ItemKind :: Static ( _, _, body)
3705
3711
| ItemKind :: Const ( _, _, body)
3706
- | ItemKind :: Fn ( _, _, body) ,
3712
+ | ItemKind :: Fn ( _, _, _ , body) ,
3707
3713
..
3708
3714
} )
3709
3715
| OwnerNode :: TraitItem ( TraitItem {
@@ -3882,7 +3888,7 @@ impl<'hir> Node<'hir> {
3882
3888
match self {
3883
3889
Node :: TraitItem ( TraitItem { kind : TraitItemKind :: Fn ( fn_sig, _) , .. } )
3884
3890
| Node :: ImplItem ( ImplItem { kind : ImplItemKind :: Fn ( fn_sig, _) , .. } )
3885
- | Node :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _) , .. } )
3891
+ | Node :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _, _ ) , .. } )
3886
3892
| Node :: ForeignItem ( ForeignItem { kind : ForeignItemKind :: Fn ( fn_sig, _, _) , .. } ) => {
3887
3893
Some ( fn_sig. decl )
3888
3894
}
@@ -3912,7 +3918,7 @@ impl<'hir> Node<'hir> {
3912
3918
match self {
3913
3919
Node :: TraitItem ( TraitItem { kind : TraitItemKind :: Fn ( fn_sig, _) , .. } )
3914
3920
| Node :: ImplItem ( ImplItem { kind : ImplItemKind :: Fn ( fn_sig, _) , .. } )
3915
- | Node :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _) , .. } )
3921
+ | Node :: Item ( Item { kind : ItemKind :: Fn ( fn_sig, _, _, _ ) , .. } )
3916
3922
| Node :: ForeignItem ( ForeignItem { kind : ForeignItemKind :: Fn ( fn_sig, _, _) , .. } ) => {
3917
3923
Some ( fn_sig)
3918
3924
}
@@ -4015,7 +4021,7 @@ impl<'hir> Node<'hir> {
4015
4021
pub fn fn_kind ( self ) -> Option < FnKind < ' hir > > {
4016
4022
match self {
4017
4023
Node :: Item ( i) => match i. kind {
4018
- ItemKind :: Fn ( ref sig, ref generics, _) => {
4024
+ ItemKind :: Fn ( ref sig, ref generics, _, _ ) => {
4019
4025
Some ( FnKind :: ItemFn ( i. ident , generics, sig. header ) )
4020
4026
}
4021
4027
_ => None ,
0 commit comments