Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a26cb61
Fix regression in link-to-definition introduced in #93803
GuillaumeGomez May 2, 2022
3dac70f
typeck: port "unconstrained opaque type" diag
davidtwco May 4, 2022
859079f
macros: allow `Vec` fields in diagnostic derive
davidtwco May 6, 2022
3f413d2
sess: add `create_{err,warning}`
davidtwco May 6, 2022
af47257
typeck: port "explicit generic args w/ impl trait"
davidtwco May 6, 2022
bd31ba0
make Size and Align debug-printing a bit more compact
RalfJung Apr 30, 2022
22cc6c3
don't debug-print ConstValue in MIR pretty-printer
RalfJung May 6, 2022
d455752
bless mir-opt
RalfJung May 6, 2022
5289bbe
Expand validator to be more precise on checked binary ops
JakobDegen May 6, 2022
5c7ce84
Remove unneeded SpanMapVisitor::visit_generics function
GuillaumeGomez May 6, 2022
fd6b01f
Add regression test for jump-to-def
GuillaumeGomez May 2, 2022
3bfa2eb
Add rustdoc documentation about unstable feature "jump to def"
GuillaumeGomez May 2, 2022
c4168fd
Check that field projections have the correct type
JakobDegen May 6, 2022
a8ede12
Change eslint rules from configuration comments to configuration files
Folyd May 7, 2022
59d5c20
update Miri
RalfJung May 7, 2022
7c1d241
Fix a minor typo in the description of Formatter
createyourpersonalaccount May 7, 2022
c29f857
Rollup merge of #96581 - RalfJung:debug-size-align, r=oli-obk
GuillaumeGomez May 7, 2022
3346d11
Rollup merge of #96636 - GuillaumeGomez:fix-jump-to-def-regression, r…
GuillaumeGomez May 7, 2022
a644197
Rollup merge of #96760 - davidtwco:diagnostic-translation-vec, r=oli-obk
GuillaumeGomez May 7, 2022
27a2bae
Rollup merge of #96788 - JakobDegen:checked-binop, r=oli-obk
GuillaumeGomez May 7, 2022
f98f92f
Rollup merge of #96805 - Folyd:eslint, r=GuillaumeGomez
GuillaumeGomez May 7, 2022
af2f944
Rollup merge of #96807 - RalfJung:miri, r=RalfJung
GuillaumeGomez May 7, 2022
c6007d6
Rollup merge of #96811 - createyourpersonalaccount:doc-typofix, r=Joh…
GuillaumeGomez May 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add rustdoc documentation about unstable feature "jump to def"
  • Loading branch information
GuillaumeGomez committed May 6, 2022
commit 3bfa2eb9f09035dcd779910b77880252baaf2ef5
7 changes: 7 additions & 0 deletions src/doc/rustdoc/src/unstable-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -567,3 +567,10 @@ $ rustdoc src/lib.rs -Z unstable-options \

The example above check every well known names (`target_os`, `doc`, `test`, ... via `names()`)
and check the values of `feature`: `foo` and `bar`.

### `--generate-link-to-definition`: Generate links on types in source code

* Tracking issue: [#89095](https://github.com/rust-lang/rust/issues/89095)

This flag enables the generation of links in the source code pages which allow the reader
to jump to a type definition.