| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2016-02-26 | Don't inline impls from `doc(hidden)` modules | mitaa | -11/+16 | |
| 2016-02-24 | Fix source-links for files with absolute-paths | mitaa | -1/+8 | |
| `clean_srcpath` tries to make the source-path relative to `src_root`, but this didn't work since `src_root` itself wasn't absolute. | ||||
| 2016-02-16 | Split PatKind::Enum into PatKind::TupleStruct and PatKind::Path | Vadim Petrochenkov | -1/+1 | |
| 2016-02-14 | Rename hir::Pat_ and its variants | Vadim Petrochenkov | -12/+12 | |
| 2016-02-13 | Auto merge of #31596 - mitaa:rdoc_assoc_item, r=alexcrichton | bors | -4/+2 | |
| 2016-02-12 | Fix inherent-associated-const search result links | mitaa | -4/+2 | |
| Normal constants have their own page while associated constants are embedded within their parent-items page. | ||||
| 2016-02-11 | [breaking-change] don't glob export ast::MetaItem_ | Oliver 'ker' Schneider | -3/+3 | |
| 2016-02-11 | [breaking-change] don't pub export ast::Lit_ variants | Oliver Schneider | -8/+8 | |
| 2016-02-11 | [breaking-change] don't glob export ast::{UintTy, IntTy} variants | Oliver Schneider | -20/+20 | |
| 2016-02-11 | [breaking-change] don't glob export ast::FloatTy variants | Oliver Schneider | -4/+4 | |
| 2016-02-11 | [breaking-change] don't glob import/export syntax::abi enum variants | Oliver Schneider | -5/+5 | |
| 2016-02-09 | Rustdoc - display `since` version for stable items | Wesley Wiser | -0/+8 | |
| Fixes #27607 | ||||
| 2016-01-20 | Rename Def's variants and don't reexport them | Vadim Petrochenkov | -29/+29 | |
| 2016-01-20 | Refactor definitions of ADTs in rustc::middle::def | Vadim Petrochenkov | -9/+10 | |
| 2016-01-14 | Support generic associated consts | Michael Wu | -2/+2 | |
| 2016-01-13 | Fix rustdoc reexports. | Lee Jeffery | -1/+1 | |
| 2015-12-28 | Rename ExplicitSelfCategory's variants and stop re-exporting them. | Ms2ger | -6/+6 | |
| 2015-12-18 | Abstract away differences between Vec and ptr::P in HIR | Vadim Petrochenkov | -2/+7 | |
| 2015-12-18 | Deprecate name `OwnedSlice` and don't use it | Vadim Petrochenkov | -1/+1 | |
| 2015-12-12 | Support `#[deprecated]` in rustdoc | Vadim Petrochenkov | -0/+50 | |
| 2015-12-12 | Implement `#[deprecated]` attribute (RFC 1270) | Vadim Petrochenkov | -10/+10 | |
| 2015-12-05 | Reuse `record_extern_fqn` | mitaa | -23/+8 | |
| These locations erroneously used the local item-path instead of the extern item-path. | ||||
| 2015-12-03 | Use the extern item-path for documentation links | mitaa | -1/+1 | |
| The local item-path includes the local crates path to the extern crate declaration which breaks cross-crate rustdoc links if the extern crate is not linked into the crate root or renamed via `extern foo as bar`. | ||||
| 2015-11-28 | Auto merge of #30074 - jonas-schievink:macro-doc, r=sanxiyn | bors | -2/+5 | |
| Fixes #17616 New docs for `panic!`: ```rust macro_rules! panic { () => { ... }; ($msg:expr) => { ... }; ($fmt:expr, $($arg:tt)+) => { ... }; } ``` New docs for `assert!`: ```rust macro_rules! assert { ( $ cond : expr ) => { ... }; ( $ cond : expr , $ ( $ arg : tt ) + ) => { ... }; } ``` <sup>not pretty, but at least it's not worse :joy: | ||||
| 2015-11-28 | Auto merge of #29383 - petrochenkov:empstr, r=pnkfelix | bors | -2/+2 | |
| Fixes https://github.com/rust-lang/rust/issues/28692 Fixes https://github.com/rust-lang/rust/issues/28992 Fixes some other similar issues (see the tests) [breaking-change], needs crater run (cc @brson or @alexcrichton ) The pattern with parens `UnitVariant(..)` for unit variants seems to be popular in rustc (see the second commit), but mostly used by one person (@nikomatsakis), according to git blame. If it causes breakage on crates.io I'll add an exceptional case for it. | ||||
| 2015-11-26 | ; | Jonas Schievink | -1/+1 | |
| 2015-11-26 | rustdoc: only show macro arm's lhs | Jonas Schievink | -2/+5 | |
| 2015-11-26 | fix tidy | Ariel Ben-Yehuda | -2/+2 | |
| 2015-11-26 | fix tests & rustdoc | Ariel Ben-Yehuda | -11/+11 | |
| 2015-11-26 | make check works | Ariel Ben-Yehuda | -56/+48 | |
| 2015-11-19 | Show constness for functions of reexported docs | mitaa | -2/+15 | |
| 2015-11-19 | Fix the fallout | Vadim Petrochenkov | -2/+2 | |
| 2015-11-17 | Auto merge of #29766 - oli-obk:impl_item, r=nikomatsakis | bors | -3/+3 | |
| [breaking change] I'm not sure if those renames are ok. [TokenType::Tt* to TokenType::*](https://github.com/rust-lang/rust/pull/29582) was obvious, but for all those Item-enums it's less obvious to me what the right way forward is due to the underscore. | ||||
| 2015-11-16 | Remove `TyParen` from HIR | Vadim Petrochenkov | -1/+0 | |
| 2015-11-16 | ImplItem_ -> ImplItemKind rename | Oliver Schneider | -3/+3 | |
| 2015-11-16 | rename ImplItem_::*ImplItem to ImplItem_::* | Oliver Schneider | -3/+3 | |
| [breaking change] | ||||
| 2015-11-06 | librustdoc: improve testnames for doctests | Kevin Butler | -2/+12 | |
| 2015-10-31 | Remove PatWildMulti | Vadim Petrochenkov | -2/+1 | |
| 2015-10-25 | syntax/rustc_front: Simplify VariantData::fields | Vadim Petrochenkov | -2/+2 | |
| And use VariantData instead of P<VariantData> in Item_ and Variant_ | ||||
| 2015-10-16 | Auto merge of #29014 - petrochenkov:stability, r=brson | bors | -23/+27 | |
| Stricter checking of stability attributes + enforcement of their invariants at compile time (+ removed dead file librustc_front/attr.rs) I intended to enforce use of `reason` for unstable items as well (it normally presents for new items), but it turned out too intrusive, many older unstable items don't have `reason`s. r? @aturon I'm studying how stability works and do some refactoring along the way, so it's probably not the last PR. | ||||
| 2015-10-15 | rustdoc: Report deprecation reason first | Vadim Petrochenkov | -3/+8 | |
| 2015-10-13 | Merge VariantData and VariantData_ | Vadim Petrochenkov | -1/+1 | |
| 2015-10-13 | Merge struct fields and struct kind | Vadim Petrochenkov | -4/+4 | |
| 2015-10-13 | Dict -> Struct, StructDef -> VariantData, def -> data | Vadim Petrochenkov | -4/+4 | |
| 2015-10-13 | Remove now redundant NodeId from Variant | Vadim Petrochenkov | -1/+1 | |
| 2015-10-13 | Decouple structure kinds from NodeIds | Vadim Petrochenkov | -17/+2 | |
| 2015-10-13 | Unify structures and enum variants in HIR | Vadim Petrochenkov | -1/+11 | |
| 2015-10-13 | Refactor attr::Stability | Vadim Petrochenkov | -23/+22 | |
| Stricter checking + enforcement of invariants at compile time | ||||
| 2015-10-08 | typos: fix a grabbag of typos all over the place | Cristi Cobzarenco | -1/+1 | |
| 2015-10-01 | Convert DefId to use DefIndex, which is an index into a list of | Niko Matsakis | -5/+6 | |
| paths, and construct paths for all definitions. Also, stop rewriting DefIds for closures, and instead just load the closure data from the original def-id, which may be in another crate. | ||||
