| Age | Commit message (Expand) | Author | Lines |
| 2020-02-01 | syntax: reexport attr globals | Mazdak Farrokhzad | -1/+1 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -2/+3 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -4/+4 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -2/+3 |
| 2020-02-01 | syntax: move GLOBALS to attr module | Mazdak Farrokhzad | -1/+1 |
| 2020-01-30 | rustdoc: attempt full build for compile_fail test | Trevor Spiteri | -1/+1 |
| 2020-01-30 | rustdoc: emit JS paths for struct-like variants | Tom Jakubowski | -8/+22 |
| 2020-01-30 | rustdoc: NodeId is now DefId | Tom Jakubowski | -16/+11 |
| 2020-01-29 | Rollup merge of #68598 - GuillaumeGomez:fix-null-synthetic_implementors, r=ol... | Yuki Okushi | -14/+16 |
| 2020-01-29 | Rollup merge of #68556 - ollie27:rustdoc_primitive_re-export, r=GuillaumeGomez | Yuki Okushi | -17/+55 |
| 2020-01-29 | Rollup merge of #68553 - GuillaumeGomez:fix-run-button-scroll-pos, r=kinnison | Yuki Okushi | -8/+7 |
| 2020-01-28 | Fix null synthetic_implementors error | Guillaume Gomez | -14/+16 |
| 2020-01-27 | don't clone types that are copy, round two. | Matthias Krüger | -7/+7 |
| 2020-01-26 | rustdoc: Fix re-exporting primitive types | Oliver Middleton | -17/+55 |
| 2020-01-26 | Fix run button positionning in case of scrolling | Guillaume Gomez | -8/+7 |
| 2020-01-22 | Auto merge of #68192 - GuillaumeGomez:remove-inlined-types, r=kinnison | bors | -25/+50 |
| 2020-01-21 | Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obk | Mazdak Farrokhzad | -5/+9 |
| 2020-01-20 | rustdoc: Correct order of `async` and `unsafe` in `async unsafe fn`s | Oliver Middleton | -5/+5 |
| 2020-01-20 | Remove usage of global variable "inlined_types" | Guillaume Gomez | -25/+50 |
| 2020-01-20 | Add `ConstnessAnd` that implements `ToPredicate` | Dylan MacKenzie | -2/+2 |
| 2020-01-20 | Add `constness` field to `ty::Predicate::Trait` | Dylan MacKenzie | -3/+3 |
| 2020-01-20 | Add `MaybeConst` variant to `{ast,hir}::TraitBoundModifier` | Dylan MacKenzie | -0/+1 |
| 2020-01-19 | Add `constness` field to `hir::ItemKind::Impl` | Dylan MacKenzie | -0/+3 |
| 2020-01-20 | Rollup merge of #68357 - ollie27:rustdoc_test_errors, r=GuillaumeGomez | Dylan DPC | -3/+7 |
| 2020-01-20 | Rollup merge of #68353 - Centril:code-liberation, r=petrochenkov | Dylan DPC | -1/+0 |
| 2020-01-20 | Rollup merge of #68326 - ollie27:rustdoc_hightlight_fatal_errors, r=Guillaume... | Dylan DPC | -4/+6 |
| 2020-01-18 | rustdoc: Fix handling of compile errors when running `rustdoc --test` | Oliver Middleton | -3/+7 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 |
| 2020-01-18 | Rollup merge of #68224 - GuillaumeGomez:prevent-urls-in-headings, r=ollie27 | Mazdak Farrokhzad | -2/+5 |
| 2020-01-17 | Rollup merge of #68204 - ecstatic-morse:item-kind-impl, r=oli-obk | Tyler Mandry | -15/+15 |
| 2020-01-17 | Rollup merge of #68093 - GuillaumeGomez:fix-deref-impl-typedef, r=oli-obk | Tyler Mandry | -25/+68 |
| 2020-01-17 | Use named fields for `hir::ItemKind::Impl` | Dylan MacKenzie | -15/+15 |
| 2020-01-17 | rustdoc: Catch fatal errors when syntax highlighting | Oliver Middleton | -4/+6 |
| 2020-01-17 | formatting | Guillaume Gomez | -21/+19 |
| 2020-01-16 | don't clone types that are copy | Matthias Krüger | -1/+1 |
| 2020-01-16 | Improve code readability | Guillaume Gomez | -26/+10 |
| 2020-01-16 | Rollup merge of #68263 - ollie27:rustdoc_invalid_syntax_highlight_escape, r=G... | Dylan DPC | -1/+1 |
| 2020-01-16 | Don't keep link title either, text is generated outside of the link tag | Guillaume Gomez | -2/+1 |
| 2020-01-15 | rustdoc: HTML escape codeblocks which fail syntax highlighting | Oliver Middleton | -1/+1 |
| 2020-01-15 | Fix rendering on sidebar and update tests | Guillaume Gomez | -4/+4 |
| 2020-01-15 | Simplify deref impls for type aliases | Guillaume Gomez | -39/+55 |
| 2020-01-15 | Include type alias implementations | Guillaume Gomez | -21/+32 |
| 2020-01-15 | remove unneeded code from cache.rs | Guillaume Gomez | -14/+6 |
| 2020-01-15 | remove redundant clones, found by clippy | Matthias Krüger | -1/+1 |
| 2020-01-15 | formatting | Guillaume Gomez | -49/+28 |
| 2020-01-15 | Fix deref impl on type alias | Guillaume Gomez | -27/+90 |
| 2020-01-14 | Prevent urls in headings | Guillaume Gomez | -2/+6 |
| 2020-01-14 | Rollup merge of #68179 - JohnTitor:nll-scope, r=varkor | Yuki Okushi | -32/+26 |
| 2020-01-14 | Rollup merge of #68166 - ollie27:rustdoc_help_escape, r=GuillaumeGomez | Yuki Okushi | -2/+2 |
| 2020-01-14 | Rollup merge of #67989 - ollie27:rustdoc_unstable, r=GuillaumeGomez | Yuki Okushi | -2/+1 |