Skip to content

Commit 7a2d4b3

Browse files
Rollup merge of rust-lang#42360 - ollie27:rustdoc_vector_rename, r=GuillaumeGomez
rustdoc: Rename `Vector` and `FixedVector` to `Slice` and `Array` Also store the array length as a usize rather than a String. This is just a minor refactor.
2 parents 8129667 + a74338d commit 7a2d4b3

File tree

2 files changed

+12
-22
lines changed

2 files changed

+12
-22
lines changed

src/librustdoc/clean/mod.rs

+8-11
Original file line numberDiff line numberDiff line change
@@ -1506,8 +1506,8 @@ pub enum Type {
15061506
/// extern "ABI" fn
15071507
BareFunction(Box<BareFunctionDecl>),
15081508
Tuple(Vec<Type>),
1509-
Vector(Box<Type>),
1510-
FixedVector(Box<Type>, String),
1509+
Slice(Box<Type>),
1510+
Array(Box<Type>, usize),
15111511
Never,
15121512
Unique(Box<Type>),
15131513
RawPointer(Mutability, Box<Type>),
@@ -1573,10 +1573,8 @@ impl Type {
15731573
pub fn primitive_type(&self) -> Option<PrimitiveType> {
15741574
match *self {
15751575
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),
15801578
Tuple(..) => Some(PrimitiveType::Tuple),
15811579
RawPointer(..) => Some(PrimitiveType::RawPointer),
15821580
_ => None,
@@ -1717,11 +1715,11 @@ impl Clean<Type> for hir::Ty {
17171715
BorrowedRef {lifetime: lifetime, mutability: m.mutbl.clean(cx),
17181716
type_: box m.ty.clean(cx)}
17191717
}
1720-
TySlice(ref ty) => Vector(box ty.clean(cx)),
1718+
TySlice(ref ty) => Slice(box ty.clean(cx)),
17211719
TyArray(ref ty, length) => {
17221720
use rustc::middle::const_val::eval_length;
17231721
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)
17251723
},
17261724
TyTup(ref tys) => Tuple(tys.clean(cx)),
17271725
TyPath(hir::QPath::Resolved(None, ref path)) => {
@@ -1832,9 +1830,8 @@ impl<'tcx> Clean<Type> for ty::Ty<'tcx> {
18321830
ty::TyUint(uint_ty) => Primitive(uint_ty.into()),
18331831
ty::TyFloat(float_ty) => Primitive(float_ty.into()),
18341832
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),
18381835
ty::TyRawPtr(mt) => RawPointer(mt.mutbl.clean(cx), box mt.ty.clean(cx)),
18391836
ty::TyRef(r, mt) => BorrowedRef {
18401837
lifetime: r.clean(cx),

src/librustdoc/html/format.rs

+4-11
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ use rustc::hir;
2525
use clean::{self, PrimitiveType};
2626
use core::DocAccessLevels;
2727
use html::item_type::ItemType;
28-
use html::escape::Escape;
2928
use html::render;
3029
use html::render::{cache, CURRENT_LOCATION_KEY};
3130

@@ -643,21 +642,15 @@ fn fmt_type(t: &clean::Type, f: &mut fmt::Formatter, use_absolute: bool) -> fmt:
643642
}
644643
}
645644
}
646-
clean::Vector(ref t) => {
645+
clean::Slice(ref t) => {
647646
primitive_link(f, PrimitiveType::Slice, "[")?;
648647
fmt::Display::fmt(t, f)?;
649648
primitive_link(f, PrimitiveType::Slice, "]")
650649
}
651-
clean::FixedVector(ref t, ref s) => {
650+
clean::Array(ref t, n) => {
652651
primitive_link(f, PrimitiveType::Array, "[")?;
653652
fmt::Display::fmt(t, f)?;
654-
if f.alternate() {
655-
primitive_link(f, PrimitiveType::Array,
656-
&format!("; {}]", s))
657-
} else {
658-
primitive_link(f, PrimitiveType::Array,
659-
&format!("; {}]", Escape(s)))
660-
}
653+
primitive_link(f, PrimitiveType::Array, &format!("; {}]", n))
661654
}
662655
clean::Never => f.write_str("!"),
663656
clean::RawPointer(m, ref t) => {
@@ -685,7 +678,7 @@ fn fmt_type(t: &clean::Type, f: &mut fmt::Formatter, use_absolute: bool) -> fmt:
685678
};
686679
let m = MutableSpace(mutability);
687680
match **ty {
688-
clean::Vector(ref bt) => { // BorrowedRef{ ... Vector(T) } is &[T]
681+
clean::Slice(ref bt) => { // BorrowedRef{ ... Slice(T) } is &[T]
689682
match **bt {
690683
clean::Generic(_) => {
691684
if f.alternate() {

0 commit comments

Comments
 (0)