@@ -375,7 +375,7 @@ impl<'a> TyLoweringContext<'a> {
375
375
counter. set ( idx + count_impl_traits ( type_ref) as u16 ) ;
376
376
let (
377
377
_parent_params,
378
- self_params ,
378
+ self_param ,
379
379
type_params,
380
380
const_params,
381
381
_impl_trait_params,
@@ -386,7 +386,7 @@ impl<'a> TyLoweringContext<'a> {
386
386
. provenance_split ( ) ;
387
387
TyKind :: BoundVar ( BoundVar :: new (
388
388
self . in_binders ,
389
- idx as usize + self_params + type_params + const_params,
389
+ idx as usize + self_param as usize + type_params + const_params,
390
390
) )
391
391
. intern ( Interner )
392
392
}
@@ -817,33 +817,31 @@ impl<'a> TyLoweringContext<'a> {
817
817
let def_generics = generics ( self . db . upcast ( ) , def) ;
818
818
let (
819
819
parent_params,
820
- self_params ,
820
+ self_param ,
821
821
type_params,
822
822
const_params,
823
823
impl_trait_params,
824
824
lifetime_params,
825
825
) = def_generics. provenance_split ( ) ;
826
826
let item_len =
827
- self_params + type_params + const_params + impl_trait_params + lifetime_params;
827
+ self_param as usize + type_params + const_params + impl_trait_params + lifetime_params;
828
828
let total_len = parent_params + item_len;
829
829
830
830
let ty_error = TyKind :: Error . intern ( Interner ) . cast ( Interner ) ;
831
831
832
832
let mut def_generic_iter = def_generics. iter_id ( ) ;
833
833
834
834
let fill_self_params = || {
835
- for x in explicit_self_ty
836
- . into_iter ( )
837
- . map ( |x| x. cast ( Interner ) )
838
- . chain ( iter:: repeat ( ty_error. clone ( ) ) )
839
- . take ( self_params)
840
- {
835
+ if self_param {
836
+ let self_ty =
837
+ explicit_self_ty. map ( |x| x. cast ( Interner ) ) . unwrap_or_else ( || ty_error. clone ( ) ) ;
838
+
841
839
if let Some ( id) = def_generic_iter. next ( ) {
842
840
assert ! ( matches!(
843
841
id,
844
842
GenericParamId :: TypeParamId ( _) | GenericParamId :: LifetimeParamId ( _)
845
843
) ) ;
846
- substs. push ( x ) ;
844
+ substs. push ( self_ty ) ;
847
845
}
848
846
}
849
847
} ;
@@ -854,11 +852,11 @@ impl<'a> TyLoweringContext<'a> {
854
852
fill_self_params ( ) ;
855
853
}
856
854
let expected_num = if generic_args. has_self_type {
857
- self_params + type_params + const_params
855
+ self_param as usize + type_params + const_params
858
856
} else {
859
857
type_params + const_params
860
858
} ;
861
- let skip = if generic_args. has_self_type && self_params == 0 { 1 } else { 0 } ;
859
+ let skip = if generic_args. has_self_type && !self_param { 1 } else { 0 } ;
862
860
// if args are provided, it should be all of them, but we can't rely on that
863
861
for arg in generic_args
864
862
. args
@@ -868,21 +866,17 @@ impl<'a> TyLoweringContext<'a> {
868
866
. take ( expected_num)
869
867
{
870
868
if let Some ( id) = def_generic_iter. next ( ) {
871
- if let Some ( x ) = generic_arg_to_chalk (
869
+ let arg = generic_arg_to_chalk (
872
870
self . db ,
873
871
id,
874
872
arg,
875
873
& mut ( ) ,
876
874
|_, type_ref| self . lower_ty ( type_ref) ,
877
875
|_, const_ref, ty| self . lower_const ( const_ref, ty) ,
878
876
|_, lifetime_ref| self . lower_lifetime ( lifetime_ref) ,
879
- ) {
880
- had_explicit_args = true ;
881
- substs. push ( x) ;
882
- } else {
883
- // we just filtered them out
884
- never ! ( "Unexpected lifetime argument" ) ;
885
- }
877
+ ) ;
878
+ had_explicit_args = true ;
879
+ substs. push ( arg) ;
886
880
}
887
881
}
888
882
@@ -895,21 +889,17 @@ impl<'a> TyLoweringContext<'a> {
895
889
// Taking into the fact that def_generic_iter will always have lifetimes at the end
896
890
// Should have some test cases tho to test this behaviour more properly
897
891
if let Some ( id) = def_generic_iter. next ( ) {
898
- if let Some ( x ) = generic_arg_to_chalk (
892
+ let arg = generic_arg_to_chalk (
899
893
self . db ,
900
894
id,
901
895
arg,
902
896
& mut ( ) ,
903
897
|_, type_ref| self . lower_ty ( type_ref) ,
904
898
|_, const_ref, ty| self . lower_const ( const_ref, ty) ,
905
899
|_, lifetime_ref| self . lower_lifetime ( lifetime_ref) ,
906
- ) {
907
- had_explicit_args = true ;
908
- substs. push ( x) ;
909
- } else {
910
- // Never return a None explicitly
911
- never ! ( "Unexpected None by generic_arg_to_chalk" ) ;
912
- }
900
+ ) ;
901
+ had_explicit_args = true ;
902
+ substs. push ( arg) ;
913
903
}
914
904
}
915
905
} else {
@@ -2170,7 +2160,6 @@ pub(crate) fn lower_to_chalk_mutability(m: hir_def::type_ref::Mutability) -> Mut
2170
2160
/// Checks if the provided generic arg matches its expected kind, then lower them via
2171
2161
/// provided closures. Use unknown if there was kind mismatch.
2172
2162
///
2173
- /// Returns `Some` of the lowered generic arg. `None` if the provided arg is a lifetime.
2174
2163
pub ( crate ) fn generic_arg_to_chalk < ' a , T > (
2175
2164
db : & dyn HirDatabase ,
2176
2165
kind_id : GenericParamId ,
@@ -2179,7 +2168,7 @@ pub(crate) fn generic_arg_to_chalk<'a, T>(
2179
2168
for_type : impl FnOnce ( & mut T , & TypeRef ) -> Ty + ' a ,
2180
2169
for_const : impl FnOnce ( & mut T , & ConstRef , Ty ) -> Const + ' a ,
2181
2170
for_lifetime : impl FnOnce ( & mut T , & LifetimeRef ) -> Lifetime + ' a ,
2182
- ) -> Option < crate :: GenericArg > {
2171
+ ) -> crate :: GenericArg {
2183
2172
let kind = match kind_id {
2184
2173
GenericParamId :: TypeParamId ( _) => ParamKind :: Type ,
2185
2174
GenericParamId :: ConstParamId ( id) => {
@@ -2188,7 +2177,7 @@ pub(crate) fn generic_arg_to_chalk<'a, T>(
2188
2177
}
2189
2178
GenericParamId :: LifetimeParamId ( _) => ParamKind :: Lifetime ,
2190
2179
} ;
2191
- Some ( match ( arg, kind) {
2180
+ match ( arg, kind) {
2192
2181
( GenericArg :: Type ( type_ref) , ParamKind :: Type ) => for_type ( this, type_ref) . cast ( Interner ) ,
2193
2182
( GenericArg :: Const ( c) , ParamKind :: Const ( c_ty) ) => for_const ( this, c, c_ty) . cast ( Interner ) ,
2194
2183
( GenericArg :: Lifetime ( lifetime_ref) , ParamKind :: Lifetime ) => {
@@ -2201,11 +2190,12 @@ pub(crate) fn generic_arg_to_chalk<'a, T>(
2201
2190
// as types. Maybe here is not the best place to do it, but
2202
2191
// it works.
2203
2192
if let TypeRef :: Path ( p) = t {
2204
- let p = p. mod_path ( ) ?;
2205
- if p. kind == PathKind :: Plain {
2206
- if let [ n] = p. segments ( ) {
2207
- let c = ConstRef :: Path ( n. clone ( ) ) ;
2208
- return Some ( for_const ( this, & c, c_ty) . cast ( Interner ) ) ;
2193
+ if let Some ( p) = p. mod_path ( ) {
2194
+ if p. kind == PathKind :: Plain {
2195
+ if let [ n] = p. segments ( ) {
2196
+ let c = ConstRef :: Path ( n. clone ( ) ) ;
2197
+ return for_const ( this, & c, c_ty) . cast ( Interner ) ;
2198
+ }
2209
2199
}
2210
2200
}
2211
2201
}
@@ -2214,7 +2204,7 @@ pub(crate) fn generic_arg_to_chalk<'a, T>(
2214
2204
( GenericArg :: Lifetime ( _) , ParamKind :: Const ( c_ty) ) => unknown_const_as_generic ( c_ty) ,
2215
2205
( GenericArg :: Type ( _) , ParamKind :: Lifetime ) => error_lifetime ( ) . cast ( Interner ) ,
2216
2206
( GenericArg :: Const ( _) , ParamKind :: Lifetime ) => error_lifetime ( ) . cast ( Interner ) ,
2217
- } )
2207
+ }
2218
2208
}
2219
2209
2220
2210
pub ( crate ) fn const_or_path_to_chalk (
0 commit comments