| Age | Commit message (Expand) | Author | Lines |
| 2020-03-10 | Rollup merge of #69514 - GuillaumeGomez:remove-spotlight, r=kinnison | Mazdak Farrokhzad | -285/+7 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -3/+3 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -1/+1 |
| 2020-03-06 | fix various typos | Matthias Krüger | -3/+3 |
| 2020-03-05 | Rollup merge of #69736 - matthiaskrgr:even_more_clippy, r=Dylan-DPC | Dylan DPC | -21/+17 |
| 2020-03-05 | Don't always eval arguments inside .expect(), use unwrap_or_else and closure.... | Matthias Krüger | -6/+6 |
| 2020-03-05 | Use simple 'for i in x' loops instead of 'while let Some(x) = x.next()' loops... | Matthias Krüger | -6/+2 |
| 2020-03-05 | Const items have by default a static lifetime, there's no need to annotate it... | Matthias Krüger | -7/+7 |
| 2020-03-05 | Remove redundant patterns when matching ( x @ _ to x) (clippy::redundant_pa... | Matthias Krüger | -2/+2 |
| 2020-03-04 | Use .as_deref() instead of .as_ref().map(Deref::deref) (clippy::option_as_ref... | Matthias Krüger | -2/+2 |
| 2020-03-04 | Use .map() to modify data inside Options instead of using .and_then(|x| Some(... | Matthias Krüger | -3/+1 |
| 2020-03-01 | Auto merge of #69612 - Dylan-DPC:rollup-f180gcc, r=Dylan-DPC | bors | -2/+3 |
| 2020-03-01 | Rollup merge of #69598 - ollie27:rustdoc_crate-version_escape, r=GuillaumeGomez | Dylan DPC | -2/+3 |
| 2020-03-01 | Auto merge of #69380 - Zoxc:parent-module, r=michaelwoerister | bors | -1/+1 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -41/+41 |
| 2020-03-01 | rustdoc: HTML escape crate version | Oliver Middleton | -2/+3 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -37/+37 |
| 2020-02-29 | Rollup merge of #69572 - matthiaskrgr:try_err_and_iter_on_ref, r=Centril | Dylan DPC | -6/+6 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -5/+5 |
| 2020-02-29 | Add a `parent_module_from_def_id` query | John Kåre Alsaker | -1/+1 |
| 2020-02-29 | use .iter() instead of .into_iter() on references. | Matthias Krüger | -6/+6 |
| 2020-02-29 | Rollup merge of #69551 - matthiaskrgr:len_zero, r=Mark-Simulacrum | Dylan DPC | -7/+7 |
| 2020-02-28 | Rollup merge of #69547 - matthiaskrgr:more_misc, r=Mark-Simulacrum | Mazdak Farrokhzad | -1/+1 |
| 2020-02-28 | Rollup merge of #69481 - matthiaskrgr:single_char, r=ecstatic-morse | Mazdak Farrokhzad | -5/+5 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -7/+7 |
| 2020-02-28 | remove redundant clones, references to operands, explicit boolean comparisons... | Matthias Krüger | -1/+1 |
| 2020-02-28 | Rollup merge of #69496 - matthiaskrgr:filter_next, r=ecstatic-morse | Dylan DPC | -2/+1 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -5/+5 |
| 2020-02-27 | Remove "important traits" feature | Guillaume Gomez | -285/+7 |
| 2020-02-27 | use find(x) instead of filter(x).next() | Matthias Krüger | -2/+1 |
| 2020-02-26 | don't take redundant references to operands | Matthias Krüger | -1/+1 |
| 2020-02-24 | don't explicitly compare against true or false | Matthias Krüger | -7/+7 |
| 2020-02-22 | Rename CodeMap to SourceMap follow up | Maxim Zholobak | -14/+14 |
| 2020-02-19 | Make lookup of associated item by name O(log n) | Dylan MacKenzie | -8/+9 |
| 2020-02-18 | Rollup merge of #69181 - skinny121:const-eval-return, r=oli-obk | Dylan DPC | -9/+14 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -13/+13 |
| 2020-02-16 | Other crates. | Camille GILLOT | -4/+5 |
| 2020-02-15 | Auto merge of #68668 - GuillaumeGomez:struct-variant-field-search, r=ollie27 | bors | -24/+33 |
| 2020-02-16 | Code review changes. | Ben Lewis | -7/+5 |
| 2020-02-15 | Change const eval to return `ConstValue`, instead of `Const` as the type insi... | Ben Lewis | -9/+16 |
| 2020-02-15 | Rollup merge of #69164 - GuillaumeGomez:update-pulldown-cmark, r=Dylan-DPC | Yuki Okushi | -76/+96 |
| 2020-02-14 | Update pulldown-cmark dependency | Guillaume Gomez | -76/+96 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -1/+1 |
| 2020-02-13 | Rollup merge of #69049 - pthariensflame:improvement/imgbot, r=GuillaumeGomez | Dylan DPC | -3/+3 |
| 2020-02-12 | Rollup merge of #69095 - GuillaumeGomez:minified-theme-check, r=Dylan-DPC | Dylan DPC | -14/+30 |
| 2020-02-12 | Add test to check if minified theme are handled correctly | Guillaume Gomez | -0/+13 |
| 2020-02-12 | Minify CSS rules to be able to handle minified theme files as well | Guillaume Gomez | -14/+17 |
| 2020-02-11 | Review comments. | Camille GILLOT | -1/+1 |
| 2020-02-11 | Move lang_items definitions to librustc_lang_items. | Camille GILLOT | -1/+1 |
| 2020-02-11 | Auto merge of #69062 - Dylan-DPC:rollup-7wpjpqu, r=Dylan-DPC | bors | -4/+0 |