| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-12-02 | Remove not used `DotEq` token | yui-knk | -1/+1 | |
| Currently libproc_macro does not use `DotEq` token. https://github.com/rust-lang/rust/pull/49545 changed libproc_macro to not generate `DotEq` token. | ||||
| 2018-10-26 | Rollup merge of #54921 - GuillaumeGomez:line-numbers, r=QuietMisdreavus | kennytm | -5/+8 | |
| Add line numbers option to rustdoc Fixes #22878. r? @QuietMisdreavus | ||||
| 2018-10-09 | Add line numbers option to rustdoc | Guillaume Gomez | -5/+8 | |
| 2018-09-29 | Add a sentence before rustc errors | Guillaume Gomez | -1/+1 | |
| 2018-09-29 | Improve error display for codeblocks in rustdoc | Guillaume Gomez | -7/+18 | |
| 2018-08-19 | fix tidy errors | Donato Sciarra | -2/+4 | |
| 2018-08-19 | mv codemap source_map | Donato Sciarra | -5/+5 | |
| 2018-08-19 | mv codemap() source_map() | Donato Sciarra | -2/+2 | |
| 2018-08-19 | mv (mod) codemap source_map | Donato Sciarra | -1/+1 | |
| 2018-08-19 | mv filemap source_file | Donato Sciarra | -1/+1 | |
| 2018-08-19 | mv CodeMap SourceMap | Donato Sciarra | -3/+3 | |
| 2018-08-07 | Avoid unnecessary pattern matching against Option and Result | ljedrz | -1/+1 | |
| 2018-07-31 | Add dyn to Write | Mark Rousskov | -1/+1 | |
| 2018-07-31 | Cleanup highlighting code | Mark Rousskov | -38/+22 | |
| Removes some unused code and de-publicizes structs | ||||
| 2018-07-30 | Delete unused code in rustdoc | Mark Rousskov | -14/+0 | |
| 2018-07-25 | Add missing dyn | Tatsuyuki Ishi | -2/+2 | |
| 2018-05-26 | Add `Ident::as_str` helper | Vadim Petrochenkov | -1/+1 | |
| 2018-05-20 | lexer: Fix span override for the first token in a string | Vadim Petrochenkov | -2/+2 | |
| 2018-05-15 | Represent lifetimes as two joint tokens in proc macros | Vadim Petrochenkov | -1/+1 | |
| 2018-03-18 | Initial implementation of RFC 2151, Raw Identifiers | Lymia Aluysia | -4/+4 | |
| 2018-03-17 | syntax: Make `_` an identifier | Vadim Petrochenkov | -1/+1 | |
| 2017-12-14 | Use PathBuf instead of String where applicable | Oliver Schneider | -3/+3 | |
| 2017-11-06 | tweak notes on ignore/compile_fail examples | QuietMisdreavus | -1/+1 | |
| 2017-09-22 | Add support for `..=` syntax | Alex Burka | -3/+3 | |
| Add ..= to the parser Add ..= to libproc_macro Add ..= to ICH Highlight ..= in rustdoc Update impl Debug for RangeInclusive to ..= Replace `...` to `..=` in range docs Make the dotdoteq warning point to the ... Add warning for ... in expressions Updated more tests to the ..= syntax Updated even more tests to the ..= syntax Updated the inclusive_range entry in unstable book | ||||
| 2017-09-11 | Add arrow and improve display | Guillaume Gomez | -9/+2 | |
| 2017-09-11 | Add class for codeblocks | Guillaume Gomez | -2/+15 | |
| 2017-08-29 | Rollup merge of #43918 - mystor:rustdoc-pound, r=QuietMisdreavus | Ariel Ben-Yehuda | -15/+43 | |
| Don't highlight # which does not start an attribute in rustdoc Currently when we highlight some macros for rustdoc (e.g. `quote!` from https://github.com/dtolnay/quote), we get really bad syntax highlighting, because we assume that every token between a `#` character and the next `]` in the source must be an attribute. This patch improves that highlighting behavior to instead only highlight after finding the `[` token after the `#` token. (NOTE: I've only run this patch against https://github.com/nrc/rustdoc-highlight so if it doesn't build on travis that's why - I don't have a recent rustc build on this laptop) I'm guessing r? @steveklabnik | ||||
| 2017-08-17 | Rollup merge of #43891 - Fourchaux:master, r=steveklabnik | Corey Farwell | -1/+1 | |
| Fix typos & us spellings Fixing some typos and non en-US spellings. (Update of PR https://github.com/rust-lang/rust/pull/42812 ) | ||||
| 2017-08-16 | Don't highlight # which does not start an attribute in rustdoc | Michael Layzell | -15/+43 | |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -2/+2 | |
| Like #43008 (f668999), but _much more aggressive_. | ||||
| 2017-08-15 | Fix typos & us spellings | Fourchaux | -1/+1 | |
| 2017-07-05 | Merge remote-tracking branch 'origin/master' into proc_macro_api | Alex Crichton | -1/+1 | |
| 2017-06-29 | Change some terminology around keywords and reserved identifiers | petrochenkov | -1/+1 | |
| 2017-06-26 | Simplify `hygiene::Mark` application, and | Jeffrey Seyfried | -1/+1 | |
| remove variant `Token::SubstNt` in favor of `quoted::TokenTree::MetaVar`. | ||||
| 2017-05-02 | Address review | est31 | -1/+1 | |
| 2017-05-02 | Removal pass for anonymous parameters | est31 | -2/+6 | |
| Removes occurences of anonymous parameters from the rustc codebase, as they are to be deprecated. See issue #41686 and RFC 1685. | ||||
| 2017-04-26 | Implement a file-path remapping feature in support of debuginfo and ↵ | Michael Woerister | -5/+5 | |
| reproducible builds. | ||||
| 2017-02-28 | Rollup merge of #39944 - GuillaumeGomez:associated-consts, r=frewsxcv | Corey Farwell | -3/+3 | |
| Improve associated constant rendering in rustdoc Before: <img width="1440" alt="screen shot 2017-02-19 at 00 30 51" src="https://cloud.githubusercontent.com/assets/3050060/23097697/caeed80e-f63a-11e6-98c2-5d27e4efd76d.png"> After: <img width="1440" alt="screen shot 2017-02-19 at 00 30 39" src="https://cloud.githubusercontent.com/assets/3050060/23097698/cfb4874e-f63a-11e6-80cf-ffbf5c5c6162.png"> cc @SergioBenitez r? @rust-lang/docs | ||||
| 2017-02-28 | Remove `Token::MatchNt`. | Jeffrey Seyfried | -1/+1 | |
| 2017-02-28 | Apply the same transformation to every types | Guillaume Gomez | -3/+3 | |
| 2017-01-17 | Fix fallout in `rustdoc`. | Jeffrey Seyfried | -9/+7 | |
| 2016-12-23 | Fix rustdoc highlighting of `&` and `*`. | Chris Morgan | -3/+5 | |
| Whitespace tokens were included, so the span check used with `&` was incorrect, and it was never highlighted as kw-2. The `*` in `*foo` and `*const T` should also be highlighted kw-2, so I added them. Note that this *will* cause mishighlighting of code like `1*2`, but that should have been written `1 * 2`. Same deal with `1&2`. | ||||
| 2016-10-19 | Improve `$crate`. | Jeffrey Seyfried | -3/+2 | |
| 2016-10-12 | rustdoc: color the question mark operator | est31 | -2/+6 | |
| The idea was proposed by eddyb in: https://github.com/rust-lang/rust/issues/31436#issuecomment-247426582 | ||||
| 2016-09-17 | duplicate the | Eitan Adler | -1/+1 | |
| 2016-09-08 | Set run button transparent instead of invisible | Guillaume Gomez | -1/+5 | |
| 2016-07-19 | Introduced `NoDelim` and modified the compiler to support it. | cgswords | -0/+1 | |
| 2016-07-06 | Rollup merge of #34626 - sylvestre:master, r=Manishearth | Steve Klabnik | -1/+1 | |
| Fix typos | ||||
| 2016-07-03 | prefer `if let` to match with `None => {}` arm in some places | Zack M. Davis | -3/+2 | |
| This is a spiritual succesor to #34268/8531d581, in which we replaced a number of matches of None to the unit value with `if let` conditionals where it was judged that this made for clearer/simpler code (as would be recommended by Manishearth/rust-clippy's `single_match` lint). The same rationale applies to matches of None to the empty block. | ||||
| 2016-07-03 | Fix a few typos in the code | Sylvestre Ledru | -1/+1 | |
