forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
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 rust-lang#113623 - GuillaumeGomez:add-jump-to-doc, r=…
…notriddle Add jump to doc I'm using the source code pages of the compiler quite a lot, but one thing missing is the possibility to jump back from the source code to the item documentation. Since I also got a few others complaining about it, I think it's fine to add it since this option is nightly only. This PR adds a link to jump back to item's documentation on the item definition (so on `Bar` in `struct Bar {... }`, as described in the unofficial [RFC](https://github.com/GuillaumeGomez/rfcs/blob/rustdoc-jump-to-definition/text/000-rustdoc-jump-to-definition.md)). r? ```@notriddle```
- Loading branch information
Showing
6 changed files
with
148 additions
and
37 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
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,51 @@ | ||
// compile-flags: -Zunstable-options --generate-link-to-definition | ||
|
||
#![crate_name = "foo"] | ||
|
||
// @has 'src/foo/jump-to-def-doc-links.rs.html' | ||
|
||
// @has - '//a[@href="../../foo/struct.Bar.html"]' 'Bar' | ||
// @has - '//a[@href="../../foo/struct.Foo.html"]' 'Foo' | ||
pub struct Bar; pub struct Foo; | ||
|
||
// @has - '//a[@href="../../foo/enum.Enum.html"]' 'Enum' | ||
pub enum Enum { | ||
Variant1(String), | ||
Variant2(u8), | ||
} | ||
|
||
// @has - '//a[@href="../../foo/struct.Struct.html"]' 'Struct' | ||
pub struct Struct { | ||
pub a: u8, | ||
b: Foo, | ||
} | ||
|
||
impl Struct { | ||
pub fn foo() {} | ||
pub fn foo2(&self) {} | ||
fn bar() {} | ||
fn bar(&self) {} | ||
} | ||
|
||
// @has - '//a[@href="../../foo/trait.Trait.html"]' 'Trait' | ||
pub trait Trait { | ||
fn foo(); | ||
} | ||
|
||
impl Trait for Struct { | ||
fn foo() {} | ||
} | ||
|
||
// @has - '//a[@href="../../foo/union.Union.html"]' 'Union' | ||
pub union Union { | ||
pub a: u16, | ||
pub f: u32, | ||
} | ||
|
||
// @has - '//a[@href="../../foo/fn.bar.html"]' 'bar' | ||
pub fn bar(b: Bar) { | ||
let x = Foo; | ||
} | ||
|
||
// @has - '//a[@href="../../foo/bar/index.html"]' 'bar' | ||
pub mod bar {} |