@@ -1506,8 +1506,8 @@ pub enum Type {
1506
1506
/// extern "ABI" fn
1507
1507
BareFunction ( Box < BareFunctionDecl > ) ,
1508
1508
Tuple ( Vec < Type > ) ,
1509
- Vector ( Box < Type > ) ,
1510
- FixedVector ( Box < Type > , String ) ,
1509
+ Slice ( Box < Type > ) ,
1510
+ Array ( Box < Type > , usize ) ,
1511
1511
Never ,
1512
1512
Unique ( Box < Type > ) ,
1513
1513
RawPointer ( Mutability , Box < Type > ) ,
@@ -1573,10 +1573,8 @@ impl Type {
1573
1573
pub fn primitive_type ( & self ) -> Option < PrimitiveType > {
1574
1574
match * self {
1575
1575
Primitive ( p) | BorrowedRef { type_ : box Primitive ( p) , ..} => Some ( p) ,
1576
- Vector ( ..) | BorrowedRef { type_ : box Vector ( ..) , .. } => Some ( PrimitiveType :: Slice ) ,
1577
- FixedVector ( ..) | BorrowedRef { type_ : box FixedVector ( ..) , .. } => {
1578
- Some ( PrimitiveType :: Array )
1579
- }
1576
+ Slice ( ..) | BorrowedRef { type_ : box Slice ( ..) , .. } => Some ( PrimitiveType :: Slice ) ,
1577
+ Array ( ..) | BorrowedRef { type_ : box Array ( ..) , .. } => Some ( PrimitiveType :: Array ) ,
1580
1578
Tuple ( ..) => Some ( PrimitiveType :: Tuple ) ,
1581
1579
RawPointer ( ..) => Some ( PrimitiveType :: RawPointer ) ,
1582
1580
_ => None ,
@@ -1717,11 +1715,11 @@ impl Clean<Type> for hir::Ty {
1717
1715
BorrowedRef { lifetime : lifetime, mutability : m. mutbl . clean ( cx) ,
1718
1716
type_ : box m. ty . clean ( cx) }
1719
1717
}
1720
- TySlice ( ref ty) => Vector ( box ty. clean ( cx) ) ,
1718
+ TySlice ( ref ty) => Slice ( box ty. clean ( cx) ) ,
1721
1719
TyArray ( ref ty, length) => {
1722
1720
use rustc:: middle:: const_val:: eval_length;
1723
1721
let n = eval_length ( cx. tcx , length, "array length" ) . unwrap ( ) ;
1724
- FixedVector ( box ty. clean ( cx) , n. to_string ( ) )
1722
+ Array ( box ty. clean ( cx) , n)
1725
1723
} ,
1726
1724
TyTup ( ref tys) => Tuple ( tys. clean ( cx) ) ,
1727
1725
TyPath ( hir:: QPath :: Resolved ( None , ref path) ) => {
@@ -1832,9 +1830,8 @@ impl<'tcx> Clean<Type> for ty::Ty<'tcx> {
1832
1830
ty:: TyUint ( uint_ty) => Primitive ( uint_ty. into ( ) ) ,
1833
1831
ty:: TyFloat ( float_ty) => Primitive ( float_ty. into ( ) ) ,
1834
1832
ty:: TyStr => Primitive ( PrimitiveType :: Str ) ,
1835
- ty:: TySlice ( ty) => Vector ( box ty. clean ( cx) ) ,
1836
- ty:: TyArray ( ty, i) => FixedVector ( box ty. clean ( cx) ,
1837
- format ! ( "{}" , i) ) ,
1833
+ ty:: TySlice ( ty) => Slice ( box ty. clean ( cx) ) ,
1834
+ ty:: TyArray ( ty, n) => Array ( box ty. clean ( cx) , n) ,
1838
1835
ty:: TyRawPtr ( mt) => RawPointer ( mt. mutbl . clean ( cx) , box mt. ty . clean ( cx) ) ,
1839
1836
ty:: TyRef ( r, mt) => BorrowedRef {
1840
1837
lifetime : r. clean ( cx) ,
0 commit comments