mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
Display elided lifetime for non-reference type in doc
This commit is contained in:
parent
c15bae53b5
commit
63c0d9ca51
@ -1395,10 +1395,13 @@ impl Clean<Type> for hir::Ty<'_> {
|
||||
_ => None,
|
||||
});
|
||||
if let Some(lt) = lifetime.cloned() {
|
||||
if !lt.is_elided() {
|
||||
let lt_def_id = cx.tcx.hir().local_def_id(param.hir_id);
|
||||
lt_substs.insert(lt_def_id.to_def_id(), lt.clean(cx));
|
||||
}
|
||||
let lt_def_id = cx.tcx.hir().local_def_id(param.hir_id);
|
||||
let cleaned = if !lt.is_elided() {
|
||||
lt.clean(cx)
|
||||
} else {
|
||||
self::types::Lifetime::elided()
|
||||
};
|
||||
lt_substs.insert(lt_def_id.to_def_id(), cleaned);
|
||||
}
|
||||
indices.lifetimes += 1;
|
||||
}
|
||||
@ -1957,21 +1960,17 @@ impl Clean<GenericArgs> for hir::GenericArgs<'_> {
|
||||
output: if output != Type::Tuple(Vec::new()) { Some(output) } else { None },
|
||||
}
|
||||
} else {
|
||||
let elide_lifetimes = self.args.iter().all(|arg| match arg {
|
||||
hir::GenericArg::Lifetime(lt) => lt.is_elided(),
|
||||
_ => true,
|
||||
});
|
||||
GenericArgs::AngleBracketed {
|
||||
args: self
|
||||
.args
|
||||
.iter()
|
||||
.filter_map(|arg| match arg {
|
||||
hir::GenericArg::Lifetime(lt) if !elide_lifetimes => {
|
||||
Some(GenericArg::Lifetime(lt.clean(cx)))
|
||||
.map(|arg| match arg {
|
||||
hir::GenericArg::Lifetime(lt) if !lt.is_elided() => {
|
||||
GenericArg::Lifetime(lt.clean(cx))
|
||||
}
|
||||
hir::GenericArg::Lifetime(_) => None,
|
||||
hir::GenericArg::Type(ty) => Some(GenericArg::Type(ty.clean(cx))),
|
||||
hir::GenericArg::Const(ct) => Some(GenericArg::Const(ct.clean(cx))),
|
||||
hir::GenericArg::Lifetime(_) => GenericArg::Lifetime(Lifetime::elided()),
|
||||
hir::GenericArg::Type(ty) => GenericArg::Type(ty.clean(cx)),
|
||||
hir::GenericArg::Const(ct) => GenericArg::Const(ct.clean(cx)),
|
||||
})
|
||||
.collect(),
|
||||
bindings: self.bindings.clean(cx),
|
||||
|
@ -749,6 +749,10 @@ impl Lifetime {
|
||||
pub fn statik() -> Lifetime {
|
||||
Lifetime("'static".to_string())
|
||||
}
|
||||
|
||||
pub fn elided() -> Lifetime {
|
||||
Lifetime("'_".to_string())
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
|
33
src/test/rustdoc/elided-lifetime.rs
Normal file
33
src/test/rustdoc/elided-lifetime.rs
Normal file
@ -0,0 +1,33 @@
|
||||
#![crate_name = "foo"]
|
||||
|
||||
// rust-lang/rust#75225
|
||||
//
|
||||
// Since Rust 2018 we encourage writing out <'_> explicitly to make it clear
|
||||
// that borrowing is occuring. Make sure rustdoc is following the same idiom.
|
||||
|
||||
pub struct Ref<'a>(&'a u32);
|
||||
type ARef<'a> = Ref<'a>;
|
||||
|
||||
// @has foo/fn.test1.html
|
||||
// @matches - "Ref</a><'_>"
|
||||
pub fn test1(a: &u32) -> Ref {
|
||||
Ref(a)
|
||||
}
|
||||
|
||||
// @has foo/fn.test2.html
|
||||
// @matches - "Ref</a><'_>"
|
||||
pub fn test2(a: &u32) -> Ref<'_> {
|
||||
Ref(a)
|
||||
}
|
||||
|
||||
// @has foo/fn.test3.html
|
||||
// @matches - "Ref</a><'_>"
|
||||
pub fn test3(a: &u32) -> ARef {
|
||||
Ref(a)
|
||||
}
|
||||
|
||||
// @has foo/fn.test4.html
|
||||
// @matches - "Ref</a><'_>"
|
||||
pub fn test4(a: &u32) -> ARef<'_> {
|
||||
Ref(a)
|
||||
}
|
Loading…
Reference in New Issue
Block a user