@@ -189,14 +189,14 @@ enum ImplTraitContext<'a> {
189
189
/// Newly generated parameters should be inserted into the given `Vec`.
190
190
Universal ( & ' a mut Vec < hir:: GenericParam > ) ,
191
191
192
- /// Treat `impl Trait` as shorthand for a new existential parameter .
192
+ /// Treat `impl Trait` as shorthand for a new opaque type .
193
193
/// Example: `fn foo() -> impl Debug`, where `impl Debug` is conceptually
194
- /// equivalent to a fresh existential parameter like `existential type T; fn foo() -> T`.
194
+ /// equivalent to a new opaque type like `type T = impl Debug ; fn foo() -> T`.
195
195
///
196
196
/// We optionally store a `DefId` for the parent item here so we can look up necessary
197
197
/// information later. It is `None` when no information about the context should be stored
198
198
/// (e.g., for consts and statics).
199
- Existential ( Option < DefId > /* fn def-ID */ ) ,
199
+ OpaqueTy ( Option < DefId > /* fn def-ID */ ) ,
200
200
201
201
/// `impl Trait` is not accepted in this position.
202
202
Disallowed ( ImplTraitPosition ) ,
@@ -222,7 +222,7 @@ impl<'a> ImplTraitContext<'a> {
222
222
use self :: ImplTraitContext :: * ;
223
223
match self {
224
224
Universal ( params) => Universal ( params) ,
225
- Existential ( fn_def_id) => Existential ( * fn_def_id) ,
225
+ OpaqueTy ( fn_def_id) => OpaqueTy ( * fn_def_id) ,
226
226
Disallowed ( pos) => Disallowed ( * pos) ,
227
227
}
228
228
}
@@ -487,7 +487,7 @@ impl<'a> LoweringContext<'a> {
487
487
| ItemKind :: Union ( _, ref generics)
488
488
| ItemKind :: Enum ( _, ref generics)
489
489
| ItemKind :: Ty ( _, ref generics)
490
- | ItemKind :: Existential ( _, ref generics)
490
+ | ItemKind :: OpaqueTy ( _, ref generics)
491
491
| ItemKind :: Trait ( _, _, ref generics, ..) => {
492
492
let def_id = self . lctx . resolver . definitions ( ) . local_def_id ( item. id ) ;
493
493
let count = generics
@@ -1422,7 +1422,7 @@ impl<'a> LoweringContext<'a> {
1422
1422
// so desugar to
1423
1423
//
1424
1424
// fn foo() -> impl Iterator<Item = impl Debug>
1425
- ImplTraitContext :: Existential ( _) => ( true , itctx) ,
1425
+ ImplTraitContext :: OpaqueTy ( _) => ( true , itctx) ,
1426
1426
1427
1427
// We are in the argument position, but within a dyn type:
1428
1428
//
@@ -1436,11 +1436,11 @@ impl<'a> LoweringContext<'a> {
1436
1436
// In `type Foo = dyn Iterator<Item: Debug>` we desugar to
1437
1437
// `type Foo = dyn Iterator<Item = impl Debug>` but we have to override the
1438
1438
// "impl trait context" to permit `impl Debug` in this position (it desugars
1439
- // then to an existential type).
1439
+ // then to an opaque type).
1440
1440
//
1441
1441
// FIXME: this is only needed until `impl Trait` is allowed in type aliases.
1442
1442
ImplTraitContext :: Disallowed ( _) if self . is_in_dyn_type =>
1443
- ( true , ImplTraitContext :: Existential ( None ) ) ,
1443
+ ( true , ImplTraitContext :: OpaqueTy ( None ) ) ,
1444
1444
1445
1445
// We are in the argument position, but not within a dyn type:
1446
1446
//
@@ -1634,8 +1634,8 @@ impl<'a> LoweringContext<'a> {
1634
1634
TyKind :: ImplTrait ( def_node_id, ref bounds) => {
1635
1635
let span = t. span ;
1636
1636
match itctx {
1637
- ImplTraitContext :: Existential ( fn_def_id) => {
1638
- self . lower_existential_impl_trait (
1637
+ ImplTraitContext :: OpaqueTy ( fn_def_id) => {
1638
+ self . lower_opaque_impl_trait (
1639
1639
span, fn_def_id, def_node_id,
1640
1640
|this| this. lower_param_bounds ( bounds, itctx) ,
1641
1641
)
@@ -1717,7 +1717,7 @@ impl<'a> LoweringContext<'a> {
1717
1717
}
1718
1718
}
1719
1719
1720
- fn lower_existential_impl_trait (
1720
+ fn lower_opaque_impl_trait (
1721
1721
& mut self ,
1722
1722
span : Span ,
1723
1723
fn_def_id : Option < DefId > ,
@@ -1730,7 +1730,7 @@ impl<'a> LoweringContext<'a> {
1730
1730
// Not tracking it makes lints in rustc and clippy very fragile, as
1731
1731
// frequently opened issues show.
1732
1732
let exist_ty_span = self . mark_span_with_reason (
1733
- DesugaringKind :: ExistentialType ,
1733
+ DesugaringKind :: OpaqueTy ,
1734
1734
span,
1735
1735
None ,
1736
1736
) ;
@@ -1763,11 +1763,11 @@ impl<'a> LoweringContext<'a> {
1763
1763
} ,
1764
1764
bounds : hir_bounds,
1765
1765
impl_trait_fn : fn_def_id,
1766
- origin : hir:: ExistTyOrigin :: ReturnImplTrait ,
1766
+ origin : hir:: OpaqueTyOrigin :: ReturnImplTrait ,
1767
1767
} ;
1768
1768
1769
1769
trace ! ( "exist ty from impl trait def-index: {:#?}" , exist_ty_def_index) ;
1770
- let exist_ty_id = lctx. generate_existential_type (
1770
+ let exist_ty_id = lctx. generate_opaque_type (
1771
1771
exist_ty_node_id,
1772
1772
exist_ty_item,
1773
1773
span,
@@ -1779,19 +1779,19 @@ impl<'a> LoweringContext<'a> {
1779
1779
} )
1780
1780
}
1781
1781
1782
- /// Registers a new existential type with the proper `NodeId`s and
1783
- /// returns the lowered node-ID for the existential type.
1784
- fn generate_existential_type (
1782
+ /// Registers a new opaque type with the proper `NodeId`s and
1783
+ /// returns the lowered node-ID for the opaque type.
1784
+ fn generate_opaque_type (
1785
1785
& mut self ,
1786
1786
exist_ty_node_id : NodeId ,
1787
1787
exist_ty_item : hir:: ExistTy ,
1788
1788
span : Span ,
1789
1789
exist_ty_span : Span ,
1790
1790
) -> hir:: HirId {
1791
- let exist_ty_item_kind = hir:: ItemKind :: Existential ( exist_ty_item) ;
1791
+ let exist_ty_item_kind = hir:: ItemKind :: OpaqueTy ( exist_ty_item) ;
1792
1792
let exist_ty_id = self . lower_node_id ( exist_ty_node_id) ;
1793
- // Generate an `existential type Foo: Trait;` declaration.
1794
- trace ! ( "registering existential type with id {:#?}" , exist_ty_id) ;
1793
+ // Generate an `type Foo = impl Trait;` declaration.
1794
+ trace ! ( "registering opaque type with id {:#?}" , exist_ty_id) ;
1795
1795
let exist_ty_item = hir:: Item {
1796
1796
hir_id : exist_ty_id,
1797
1797
ident : Ident :: invalid ( ) ,
@@ -1802,7 +1802,7 @@ impl<'a> LoweringContext<'a> {
1802
1802
} ;
1803
1803
1804
1804
// Insert the item into the global item list. This usually happens
1805
- // automatically for all AST items. But this existential type item
1805
+ // automatically for all AST items. But this opaque type item
1806
1806
// does not actually exist in the AST.
1807
1807
self . insert_item ( exist_ty_item) ;
1808
1808
exist_ty_id
@@ -2439,7 +2439,7 @@ impl<'a> LoweringContext<'a> {
2439
2439
. as_ref ( )
2440
2440
. map ( |t| self . lower_ty ( t,
2441
2441
if self . sess . features_untracked ( ) . impl_trait_in_bindings {
2442
- ImplTraitContext :: Existential ( Some ( parent_def_id) )
2442
+ ImplTraitContext :: OpaqueTy ( Some ( parent_def_id) )
2443
2443
} else {
2444
2444
ImplTraitContext :: Disallowed ( ImplTraitPosition :: Binding )
2445
2445
}
@@ -2500,7 +2500,7 @@ impl<'a> LoweringContext<'a> {
2500
2500
let lt_mode = if make_ret_async. is_some ( ) {
2501
2501
// In `async fn`, argument-position elided lifetimes
2502
2502
// must be transformed into fresh generic parameters so that
2503
- // they can be applied to the existential return type.
2503
+ // they can be applied to the opaque `impl Trait` return type.
2504
2504
AnonymousLifetimeMode :: CreateParameter
2505
2505
} else {
2506
2506
self . anonymous_lifetime_mode
@@ -2539,7 +2539,7 @@ impl<'a> LoweringContext<'a> {
2539
2539
FunctionRetTy :: Ty ( ref ty) => match in_band_ty_params {
2540
2540
Some ( ( def_id, _) ) if impl_trait_return_allow => {
2541
2541
hir:: Return ( self . lower_ty ( ty,
2542
- ImplTraitContext :: Existential ( Some ( def_id) )
2542
+ ImplTraitContext :: OpaqueTy ( Some ( def_id) )
2543
2543
) )
2544
2544
}
2545
2545
_ => {
@@ -2585,12 +2585,12 @@ impl<'a> LoweringContext<'a> {
2585
2585
// Transforms `-> T` for `async fn` into `-> ExistTy { .. }`
2586
2586
// combined with the following definition of `ExistTy`:
2587
2587
//
2588
- // existential type ExistTy<generics_from_parent_fn>: Future<Output = T>;
2588
+ // type ExistTy<generics_from_parent_fn> = impl Future<Output = T>;
2589
2589
//
2590
2590
// `inputs`: lowered types of arguments to the function (used to collect lifetimes)
2591
2591
// `output`: unlowered output type (`T` in `-> T`)
2592
2592
// `fn_def_id`: `DefId` of the parent function (used to create child impl trait definition)
2593
- // `exist_ty_node_id`: `NodeId` of the existential type that should be created
2593
+ // `exist_ty_node_id`: `NodeId` of the opaque `impl Trait` type that should be created
2594
2594
// `elided_lt_replacement`: replacement for elided lifetimes in the return type
2595
2595
fn lower_async_fn_ret_ty (
2596
2596
& mut self ,
@@ -2626,7 +2626,7 @@ impl<'a> LoweringContext<'a> {
2626
2626
) ;
2627
2627
2628
2628
// Calculate all the lifetimes that should be captured
2629
- // by the existential type. This should include all in-scope
2629
+ // by the opaque type. This should include all in-scope
2630
2630
// lifetime parameters, including those defined in-band.
2631
2631
//
2632
2632
// Note: this must be done after lowering the output type,
@@ -2657,11 +2657,11 @@ impl<'a> LoweringContext<'a> {
2657
2657
} ,
2658
2658
bounds : hir_vec ! [ future_bound] ,
2659
2659
impl_trait_fn : Some ( fn_def_id) ,
2660
- origin : hir:: ExistTyOrigin :: AsyncFn ,
2660
+ origin : hir:: OpaqueTyOrigin :: AsyncFn ,
2661
2661
} ;
2662
2662
2663
2663
trace ! ( "exist ty from async fn def index: {:#?}" , exist_ty_def_index) ;
2664
- let exist_ty_id = this. generate_existential_type (
2664
+ let exist_ty_id = this. generate_opaque_type (
2665
2665
exist_ty_node_id,
2666
2666
exist_ty_item,
2667
2667
span,
@@ -2702,7 +2702,7 @@ impl<'a> LoweringContext<'a> {
2702
2702
// Compute the `T` in `Future<Output = T>` from the return type.
2703
2703
let output_ty = match output {
2704
2704
FunctionRetTy :: Ty ( ty) => {
2705
- self . lower_ty ( ty, ImplTraitContext :: Existential ( Some ( fn_def_id) ) )
2705
+ self . lower_ty ( ty, ImplTraitContext :: OpaqueTy ( Some ( fn_def_id) ) )
2706
2706
}
2707
2707
FunctionRetTy :: Default ( ret_ty_span) => {
2708
2708
P ( hir:: Ty {
@@ -2905,7 +2905,7 @@ impl<'a> LoweringContext<'a> {
2905
2905
2906
2906
let kind = hir:: GenericParamKind :: Type {
2907
2907
default : default. as_ref ( ) . map ( |x| {
2908
- self . lower_ty ( x, ImplTraitContext :: Existential ( None ) )
2908
+ self . lower_ty ( x, ImplTraitContext :: OpaqueTy ( None ) )
2909
2909
} ) ,
2910
2910
synthetic : param. attrs . iter ( )
2911
2911
. filter ( |attr| attr. check_name ( sym:: rustc_synthetic) )
@@ -3384,7 +3384,7 @@ impl<'a> LoweringContext<'a> {
3384
3384
self . lower_ty (
3385
3385
t,
3386
3386
if self . sess . features_untracked ( ) . impl_trait_in_bindings {
3387
- ImplTraitContext :: Existential ( None )
3387
+ ImplTraitContext :: OpaqueTy ( None )
3388
3388
} else {
3389
3389
ImplTraitContext :: Disallowed ( ImplTraitPosition :: Binding )
3390
3390
}
@@ -3398,7 +3398,7 @@ impl<'a> LoweringContext<'a> {
3398
3398
self . lower_ty (
3399
3399
t,
3400
3400
if self . sess . features_untracked ( ) . impl_trait_in_bindings {
3401
- ImplTraitContext :: Existential ( None )
3401
+ ImplTraitContext :: OpaqueTy ( None )
3402
3402
} else {
3403
3403
ImplTraitContext :: Disallowed ( ImplTraitPosition :: Binding )
3404
3404
}
@@ -3444,14 +3444,14 @@ impl<'a> LoweringContext<'a> {
3444
3444
self . lower_ty ( t, ImplTraitContext :: disallowed ( ) ) ,
3445
3445
self . lower_generics ( generics, ImplTraitContext :: disallowed ( ) ) ,
3446
3446
) ,
3447
- ItemKind :: Existential ( ref b, ref generics) => hir:: ItemKind :: Existential (
3447
+ ItemKind :: OpaqueTy ( ref b, ref generics) => hir:: ItemKind :: OpaqueTy (
3448
3448
hir:: ExistTy {
3449
3449
generics : self . lower_generics ( generics,
3450
- ImplTraitContext :: Existential ( None ) ) ,
3450
+ ImplTraitContext :: OpaqueTy ( None ) ) ,
3451
3451
bounds : self . lower_param_bounds ( b,
3452
- ImplTraitContext :: Existential ( None ) ) ,
3452
+ ImplTraitContext :: OpaqueTy ( None ) ) ,
3453
3453
impl_trait_fn : None ,
3454
- origin : hir:: ExistTyOrigin :: ExistentialType ,
3454
+ origin : hir:: OpaqueTyOrigin :: TraitAliasImplTrait ,
3455
3455
} ,
3456
3456
) ,
3457
3457
ItemKind :: Enum ( ref enum_definition, ref generics) => {
@@ -3918,9 +3918,9 @@ impl<'a> LoweringContext<'a> {
3918
3918
self . lower_generics ( & i. generics , ImplTraitContext :: disallowed ( ) ) ,
3919
3919
hir:: ImplItemKind :: Type ( self . lower_ty ( ty, ImplTraitContext :: disallowed ( ) ) ) ,
3920
3920
) ,
3921
- ImplItemKind :: Existential ( ref bounds) => (
3921
+ ImplItemKind :: OpaqueTy ( ref bounds) => (
3922
3922
self . lower_generics ( & i. generics , ImplTraitContext :: disallowed ( ) ) ,
3923
- hir:: ImplItemKind :: Existential (
3923
+ hir:: ImplItemKind :: OpaqueTy (
3924
3924
self . lower_param_bounds ( bounds, ImplTraitContext :: disallowed ( ) ) ,
3925
3925
) ,
3926
3926
) ,
@@ -3951,7 +3951,7 @@ impl<'a> LoweringContext<'a> {
3951
3951
kind : match i. node {
3952
3952
ImplItemKind :: Const ( ..) => hir:: AssocItemKind :: Const ,
3953
3953
ImplItemKind :: Type ( ..) => hir:: AssocItemKind :: Type ,
3954
- ImplItemKind :: Existential ( ..) => hir:: AssocItemKind :: Existential ,
3954
+ ImplItemKind :: OpaqueTy ( ..) => hir:: AssocItemKind :: OpaqueTy ,
3955
3955
ImplItemKind :: Method ( ref sig, _) => hir:: AssocItemKind :: Method {
3956
3956
has_self : sig. decl . has_self ( ) ,
3957
3957
} ,
0 commit comments