-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #90183 - GuillaumeGomez:recurse-deref, r=jyn514
Show all Deref implementations recursively Fixes #87783. This is a re-implementation of #80653, so taking the original PR comment: This changes `rustdoc` to recursively follow `Deref` targets so that methods from all levels are added to the rendered output. This implementation displays the methods from all levels in the expanded state with separate sections for each level. ![image](https://user-images.githubusercontent.com/279572/103482863-46723b00-4ddb-11eb-972b-c463351a425c.png) cc `@camelid` r? `@jyn514`
- Loading branch information
Showing
9 changed files
with
315 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// check-pass | ||
|
||
// ICE found in https://github.com/rust-lang/rust/issues/83123 | ||
|
||
pub struct Attribute; | ||
|
||
pub struct Map<'hir> {} | ||
impl<'hir> Map<'hir> { | ||
pub fn attrs(&self) -> &'hir [Attribute] { &[] } | ||
} | ||
|
||
pub struct List<T>(T); | ||
|
||
impl<T> std::ops::Deref for List<T> { | ||
type Target = [T]; | ||
fn deref(&self) -> &[T] { | ||
&[] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// #26207: Show all methods reachable via Deref impls, recursing through multiple dereferencing | ||
// levels and across multiple crates. | ||
// For `Deref` on non-foreign types, look at `deref-recursive.rs`. | ||
|
||
// @has 'foo/struct.Foo.html' | ||
// @has '-' '//*[@id="deref-methods-PathBuf"]' 'Methods from Deref<Target = PathBuf>' | ||
// @has '-' '//*[@class="impl-items"]//*[@id="method.as_path"]' 'pub fn as_path(&self)' | ||
// @has '-' '//*[@id="deref-methods-Path"]' 'Methods from Deref<Target = Path>' | ||
// @has '-' '//*[@class="impl-items"]//*[@id="method.exists"]' 'pub fn exists(&self)' | ||
// @has '-' '//*[@class="sidebar-title"]/a[@href="#deref-methods-PathBuf"]' 'Methods from Deref<Target=PathBuf>' | ||
// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.as_path"]' 'as_path' | ||
// @has '-' '//*[@class="sidebar-title"]/a[@href="#deref-methods-Path"]' 'Methods from Deref<Target=Path>' | ||
// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.exists"]' 'exists' | ||
|
||
#![crate_name = "foo"] | ||
|
||
use std::ops::Deref; | ||
use std::path::PathBuf; | ||
|
||
pub struct Foo(PathBuf); | ||
|
||
impl Deref for Foo { | ||
type Target = PathBuf; | ||
fn deref(&self) -> &PathBuf { &self.0 } | ||
} |
Oops, something went wrong.