| Age | Commit message (Expand) | Author | Lines |
| 2018-09-29 | Improve error display for codeblocks in rustdoc | Guillaume Gomez | -0/+11 |
| 2018-09-09 | Don't compute padding of braces unless they are unmatched | Esteban Küber | -26/+23 |
| 2018-09-09 | Auto merge of #53902 - dtolnay:group, r=petrochenkov | bors | -3/+3 |
| 2018-09-08 | Track distinct spans for open and close delimiter | David Tolnay | -3/+3 |
| 2018-09-05 | Change wording of unclosed delimiter label | Esteban Küber | -1/+4 |
| 2018-09-05 | Provide more context for unenclosed delimiters | Esteban Küber | -2/+43 |
| 2018-09-05 | Reword un-closed delimiter label | Esteban Küber | -2/+2 |
| 2018-08-28 | Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc. | Eduard-Mihai Burtescu | -3/+3 |
| 2018-08-23 | use String::new() instead of String::from(""), "".to_string(), "".to_owned() ... | Matthias Krüger | -1/+1 |
| 2018-08-20 | Set applicability for more suggestions. | Sébastien Duquette | -2/+6 |
| 2018-08-19 | fix tidy errors | Donato Sciarra | -6/+6 |
| 2018-08-19 | mv codemap source_map | Donato Sciarra | -2/+2 |
| 2018-08-19 | mv codemap() source_map() | Donato Sciarra | -3/+3 |
| 2018-08-19 | mv (mod) codemap source_map | Donato Sciarra | -3/+3 |
| 2018-08-19 | mv filemap source_file | Donato Sciarra | -23/+23 |
| 2018-08-19 | mv FileMap SourceFile | Donato Sciarra | -5/+5 |
| 2018-08-19 | mv CodeMap SourceMap | Donato Sciarra | -20/+20 |
| 2018-08-17 | Rollup merge of #53373 - estebank:unclosed, r=petrochenkov | kennytm | -11/+21 |
| 2018-08-15 | Do not emit "incorrect close delimiter" twice in the same place | Esteban Küber | -11/+19 |
| 2018-08-15 | Tweak unclosed delimiter parser error | Esteban Küber | -2/+4 |
| 2018-08-13 | A few cleanups and minor improvements for the lexer | ljedrz | -74/+134 |
| 2018-07-29 | Replace push loops with collect() and extend() where possible | ljedrz | -3/+1 |
| 2018-07-23 | Allow by default, fix tests | mark | -0/+1 |
| 2018-07-20 | proc_macro: move some implementation details to a rustc module. | Eduard-Mihai Burtescu | -6/+0 |
| 2018-07-14 | Remove some tests using AST comparisons, fix other tests | Vadim Petrochenkov | -2/+4 |
| 2018-07-14 | Remove most of `PartialEq` impls from AST and HIR structures | Vadim Petrochenkov | -1/+1 |
| 2018-07-10 | Deny bare trait objects in in src/libsyntax | ljedrz | -1/+1 |
| 2018-06-28 | Fix FileMap::line_begin_pos(). | Michael Woerister | -2/+4 |
| 2018-06-27 | Make FileMap::{lines, multibyte_chars, non_narrow_chars} non-mutable. | Michael Woerister | -19/+1 |
| 2018-06-26 | migrate codebase to `..=` inclusive range patterns | Zack M. Davis | -2/+2 |
| 2018-06-15 | Auto merge of #50296 - cmdd:master, r=nikomatsakis | bors | -0/+14 |
| 2018-06-09 | Crate-ify and delete unused code in syntax::parse | Mark Simulacrum | -24/+22 |
| 2018-06-08 | provide error message when using more than 65535 hash symbols for raw strings | David Cao | -0/+14 |
| 2018-05-31 | Rollup merge of #51240 - nnethercote:parse-2, r=nikomatsakis | Guillaume Gomez | -5/+3 |
| 2018-05-31 | Avoid an unnecessary `match` when lexing "<-". | Nicholas Nethercote | -5/+1 |
| 2018-05-31 | Tweak identifer lexing. | Nicholas Nethercote | -0/+2 |
| 2018-05-28 | Auto merge of #50724 - zackmdavis:applicability_rush, r=Manishearth | bors | -6/+7 |
| 2018-05-26 | Fix test | Esteban Küber | -4/+8 |
| 2018-05-25 | in which we check for confusable Unicodepoints in float literal exponent | Zack M. Davis | -5/+12 |
| 2018-05-22 | Auto merge of #50838 - alexcrichton:token-impls, r=eddyb | bors | -17/+40 |
| 2018-05-20 | suggestion applicabilities for libsyntax and librustc, run-rustfix tests | Zack M. Davis | -6/+7 |
| 2018-05-20 | lexer: Fix span override for the first token in a string | Vadim Petrochenkov | -9/+12 |
| 2018-05-18 | rustc: Fix joint-ness of stringified token-streams | Alex Crichton | -17/+40 |
| 2018-05-18 | Auto merge of #50307 - petrochenkov:keyhyg2, r=nikomatsakis | bors | -1/+1 |
| 2018-05-18 | Auto merge of #50566 - nnethercote:bump, r=petrochenkov | bors | -65/+55 |
| 2018-05-17 | Turn some functions from `token.rs` into methods on `Ident` | Vadim Petrochenkov | -1/+1 |
| 2018-05-15 | Represent lifetimes as two joint tokens in proc macros | Vadim Petrochenkov | -4/+1 |
| 2018-05-15 | proc_macro: Validate inputs to `Punct::new` and `Ident::new` | Vadim Petrochenkov | -0/+9 |
| 2018-05-14 | Remove `StringReader::col`. | Nicholas Nethercote | -7/+13 |
| 2018-05-14 | Make `nextnextch()` more closely resemble `nextch()`. | Nicholas Nethercote | -8/+7 |