| Age | Commit message (Expand) | Author | Lines |
| 2022-12-27 | Recover `fn` keyword as `Fn` trait in bounds | Michael Goulet | -1/+1 |
| 2022-12-12 | minor code cleanups | Matthias Krüger | -2/+1 |
| 2022-12-10 | compiler: remove unnecessary imports and qualified paths | KaDiWa | -1/+0 |
| 2022-11-29 | update cpufeatures, swap difference to dissimilar | klensy | -1/+1 |
| 2022-11-24 | Auto merge of #104507 - WaffleLapkin:asderefsyou, r=wesleywiser | bors | -4/+2 |
| 2022-11-16 | Use `as_deref` in compiler (but only where it makes sense) | Maybe Waffle | -4/+2 |
| 2022-11-16 | Use `token::Lit` in `ast::ExprKind::Lit`. | Nicholas Nethercote | -2/+6 |
| 2022-11-09 | Rollup merge of #103919 - nnethercote:unescaping-cleanups, r=matklad | Dylan DPC | -103/+66 |
| 2022-11-08 | Simplify `unescape_{char,byte}`. | Nicholas Nethercote | -17/+9 |
| 2022-11-07 | Make underscore_literal_suffix a hard error. | Nicholas Nethercote | -3/+6 |
| 2022-11-05 | Rename some `result` variables as `res`, for consistency. | Nicholas Nethercote | -6/+6 |
| 2022-11-05 | Remove `unescape_byte_literal`. | Nicholas Nethercote | -21/+7 |
| 2022-11-04 | Inline and remove `validate_int_literal`. | Nicholas Nethercote | -5/+5 |
| 2022-11-04 | Improve comments. | Nicholas Nethercote | -4/+1 |
| 2022-11-04 | Make non-ASCII errors more consistent. | Nicholas Nethercote | -10/+4 |
| 2022-11-03 | Use `Mode` less. | Nicholas Nethercote | -24/+22 |
| 2022-11-03 | Clarify range calculations. | Nicholas Nethercote | -10/+12 |
| 2022-11-03 | Rename some variables. | Nicholas Nethercote | -38/+32 |
| 2022-10-26 | rustc_lexer::TokenKind improve docs | Tshepang Mbambo | -5/+18 |
| 2022-09-29 | Remove from compiler/ crates | reez12g | -1/+0 |
| 2022-09-28 | Auto merge of #102302 - nnethercote:more-lexer-improvements, r=matklad | bors | -35/+34 |
| 2022-09-28 | Address review comments. | Nicholas Nethercote | -2/+4 |
| 2022-09-28 | Small cleanups in unescaping code. | Nicholas Nethercote | -14/+11 |
| 2022-09-27 | Fix an incorrect comment. | Nicholas Nethercote | -1/+1 |
| 2022-09-26 | Add `rustc_lexer::TokenKind::Eof`. | Nicholas Nethercote | -4/+13 |
| 2022-09-26 | Rename some things. | Nicholas Nethercote | -18/+18 |
| 2022-09-26 | Make `rustc_lexer::cursor::Cursor` public. | Nicholas Nethercote | -21/+9 |
| 2022-09-08 | remove unnecessary `PartialOrd` and `Ord` | Takayuki Maeda | -1/+1 |
| 2022-08-18 | Add diagnostic translation lints to crates that don't emit them | 5225225 | -0/+2 |
| 2022-08-01 | Shrink `Token`. | Nicholas Nethercote | -71/+71 |
| 2022-08-01 | Inline `first_token`. | Nicholas Nethercote | -0/+1 |
| 2022-06-28 | fix typo in comment | Proloy Mishra | -1/+1 |
| 2022-03-23 | Reduce max hash in raw strings from u16 to u8 | Grisha Vartanyan | -11/+11 |
| 2022-03-16 | Add test for >65535 hashes in lexing raw string | Grisha | -0/+17 |
| 2022-02-24 | Improve `scan_escape`. | Nicholas Nethercote | -23/+22 |
| 2021-12-03 | Auto merge of #91393 - Julian-Wollersberger:lexer_optimization, r=petrochenkov | bors | -25/+28 |
| 2021-12-01 | Replace `nth_char(0)` with `next()` in `cursor.first()` | Julian Wollersberger | -25/+28 |
| 2021-11-23 | udpate comment to be more accurate | Esteban Kuber | -2/+1 |
| 2021-11-23 | Tokenize emoji as if they were valid indentifiers | Esteban Kuber | -0/+26 |
| 2021-11-06 | use matches!() macro in more places | Matthias Krüger | -5/+4 |
| 2021-10-15 | Revert "Auto merge of #89709 - clemenswasser:apply_clippy_suggestions_2, r=pe... | Matthias Krüger | -5/+6 |
| 2021-10-10 | Apply clippy suggestions | Clemens Wasser | -6/+5 |
| 2021-09-20 | Migrate to 2021 | Mark Rousskov | -1/+1 |
| 2021-08-22 | Fix more “a”/“an” typos | Frank Steffahn | -1/+1 |
| 2021-08-11 | Renamed variable str -> tail for clarity | Anton Golov | -5/+5 |
| 2021-08-11 | Warn when an escaped newline skips multiple lines | Anton Golov | -0/+14 |
| 2021-08-02 | Auto merge of #87535 - lf-:authors, r=Mark-Simulacrum | bors | -1/+0 |
| 2021-07-30 | Add warning when whitespace is not skipped after an escaped newline. | Anton Golov | -4/+49 |
| 2021-07-29 | rfc3052: Remove authors field from Cargo manifests | Jade | -1/+0 |
| 2021-07-26 | Remove ASCII fast path from rustc_lexer::{is_id_continue, is_id_start} | Ibraheem Ahmed | -12/+2 |