| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-06-19 | Rollup merge of #61898 - petrochenkov:sekind, r=eddyb | Mazdak Farrokhzad | -5/+7 | |
| syntax: Factor out common fields from `SyntaxExtension` variants And some other related cleanups. Continuation of https://github.com/rust-lang/rust/pull/61606. This will also help to unblock https://github.com/rust-lang/rust/pull/61877. | ||||
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -2/+2 | |
| 2019-06-18 | syntax: Factor out common fields from `SyntaxExtension` variants | Vadim Petrochenkov | -5/+7 | |
| 2019-06-16 | Rollup merge of #61866 - sinkuu:redundant_clone, r=petrochenkov | Mazdak Farrokhzad | -2/+3 | |
| Remove redundant `clone()`s | ||||
| 2019-06-15 | Rollup merge of #61813 - matthewjasper:remove-unnecessary-symbol-ops, ↵ | Mazdak Farrokhzad | -11/+11 | |
| r=petrochenkov Remove some unnecessary symbol interner ops * Don't gensym symbols that don't need to worry about colliding with other symbols * Use symbol constants instead of interning string literals in a few places. * Don't generate a module in `__register_diagnostic` r? @petrochenkov | ||||
| 2019-06-15 | Use `slice::from_ref` instead of cloning | Shotaro Yamada | -2/+3 | |
| 2019-06-14 | Avoid some unnecessary symbol interner operations | Matthew Jasper | -11/+11 | |
| 2019-06-10 | syntax: Rename variants of `SyntaxExtension` for consistency | Vadim Petrochenkov | -3/+2 | |
| 2019-06-10 | syntax: Remove `SyntaxExtension::DeclMacro` | Vadim Petrochenkov | -54/+55 | |
| It's a less powerful duplicate of `SyntaxExtension::NormalTT` | ||||
| 2019-06-09 | pacify tidy. | Mazdak Farrokhzad | -1/+1 | |
| 2019-06-09 | Some more cleanup in libsyntax::ext::tt::quoted | Mazdak Farrokhzad | -11/+8 | |
| 2019-06-09 | Cleanups in parse_sep_and_kleene_op. | Mazdak Farrokhzad | -12/+4 | |
| 2019-06-09 | Support ? Kleene operator in 2015. | Mazdak Farrokhzad | -167/+4 | |
| 2019-06-09 | Rollup merge of #61669 - petrochenkov:tokderef2, r=oli-obk | Mazdak Farrokhzad | -66/+51 | |
| syntax: Remove `Deref` impl from `Token` Follow up to https://github.com/rust-lang/rust/pull/61541 r? @oli-obk | ||||
| 2019-06-09 | Rollup merge of #61646 - L117:master, r=Centril | Mazdak Farrokhzad | -15/+15 | |
| Remove useless allocations in macro_rules follow logic. Closes #61543 | ||||
| 2019-06-08 | syntax: Remove `Deref` impl from `Token` | Vadim Petrochenkov | -23/+13 | |
| 2019-06-08 | syntax: Move most of the `TokenKind` methods to `Token` | Vadim Petrochenkov | -9/+9 | |
| 2019-06-08 | syntax: Keep full `Token`s for `macro_rules` separators | Vadim Petrochenkov | -35/+30 | |
| 2019-06-08 | Remove useless allocations in macro_rules follow logic. | L117 | -15/+15 | |
| 2019-06-07 | parser: `self.span` -> `self.token.span` | Vadim Petrochenkov | -9/+9 | |
| 2019-06-06 | Address review comments | Vadim Petrochenkov | -12/+9 | |
| 2019-06-06 | Some code cleanup and tidy/test fixes | Vadim Petrochenkov | -21/+22 | |
| 2019-06-06 | syntax: Switch function parameter order in `TokenTree::token` | Vadim Petrochenkov | -14/+14 | |
| 2019-06-06 | syntax: Remove duplicate span from `token::Ident` | Vadim Petrochenkov | -31/+25 | |
| 2019-06-06 | syntax: Remove duplicate span from `token::Lifetime` | Vadim Petrochenkov | -2/+2 | |
| 2019-06-06 | syntax: Add some helper methods to `Token` | Vadim Petrochenkov | -8/+7 | |
| 2019-06-06 | syntax: Use `Token` in `Parser` | Vadim Petrochenkov | -17/+16 | |
| 2019-06-06 | syntax: Use `Token` in `TokenTree::Token` | Vadim Petrochenkov | -64/+67 | |
| 2019-06-06 | syntax: Rename `Token` into `TokenKind` | Vadim Petrochenkov | -21/+21 | |
| 2019-06-06 | Always use token kinds through `token` module rather than `Token` type | Vadim Petrochenkov | -21/+21 | |
| 2019-05-27 | Use `Symbol` equality in `may_begin_with` and `parse_nt`. | Nicholas Nethercote | -27/+27 | |
| 2019-05-27 | Avoid unnecessary internings. | Nicholas Nethercote | -1/+1 | |
| Most involving `Symbol::intern` on string literals. | ||||
| 2019-05-24 | review comments | Esteban Küber | -1/+1 | |
| 2019-05-24 | Tweak macro parse errors when reaching EOF during macro call parse | Esteban Küber | -2/+9 | |
| - Add detail on origin of current parser when reaching EOF and stop saying "found <eof>" and point at the end of macro calls - Handle empty `cfg_attr` attribute - Reword empty `derive` attribute error | ||||
| 2019-05-23 | Rollup merge of #61046 - mark-i-m:transcribe-fix, r=petrochenkov | Mazdak Farrokhzad | -8/+10 | |
| Fix ICE with inconsistent macro matchers Fixes #61033 r? @petrochenkov | ||||
| 2019-05-22 | Restore the old behavior of the rustdoc keyword check + Fix rebase | Vadim Petrochenkov | -6/+6 | |
| 2019-05-22 | Eliminate unnecessary `Ident::with_empty_ctxt`s | Vadim Petrochenkov | -2/+2 | |
| 2019-05-22 | Simplify use of keyword symbols | Vadim Petrochenkov | -10/+10 | |
| 2019-05-22 | these errors can happen after all | Mark Mansi | -8/+10 | |
| 2019-05-20 | Remove `Symbol::gensym()`. | Nicholas Nethercote | -2/+2 | |
| 2019-05-13 | Remove the equality operation between `Symbol` and strings. | Nicholas Nethercote | -9/+14 | |
| And also the equality between `Path` and strings, because `Path` is made up of `Symbol`s. | ||||
| 2019-05-13 | Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions. | Nicholas Nethercote | -6/+6 | |
| 2019-05-10 | turn a couple of fixmes into span_bugs | Mark Mansi | -9/+7 | |
| 2019-05-08 | fix incorrect assert | Mark Mansi | -1/+4 | |
| 2019-05-07 | lots of comments + minor cleanup | Mark Mansi | -16/+139 | |
| 2019-05-07 | avoid extra copy | Mark Mansi | -13/+12 | |
| 2019-05-06 | rustfmt | Mark Mansi | -50/+50 | |
| 2019-04-10 | make duplicate matcher bindings a hard error | Mark Mansi | -12/+4 | |
| 2019-03-23 | syntax: Remove warning for unnecessary path disambiguators | Vadim Petrochenkov | -1/+1 | |
| 2019-03-16 | syntax: Do not accidentally treat multi-segment meta-items as single-segment | Vadim Petrochenkov | -3/+8 | |
