| Age | Commit message (Expand) | Author | Lines |
| 2018-07-27 | Use slices where a vector is not necessary | ljedrz | -1/+1 |
| 2018-07-20 | resolve: Fully prohibit shadowing of in-scope names by globs in macro paths | Vadim Petrochenkov | -2/+1 |
| 2018-07-20 | resolve: Rename `global_macros` to `macro_prelude` | Vadim Petrochenkov | -7/+7 |
| 2018-07-16 | rustc: Stabilize much of the `proc_macro` feature | Alex Crichton | -1/+1 |
| 2018-07-14 | Functions introducing procedural macros reserve a slot in the macro namespace... | Vadim Petrochenkov | -2/+15 |
| 2018-07-12 | Auto merge of #52230 - alexcrichton:attr-and-derive, r=petrochenkov | bors | -1/+17 |
| 2018-07-10 | rustc: Search all derives for inert attributes | Alex Crichton | -1/+17 |
| 2018-07-08 | hygiene: Decouple transparencies from expansion IDs | Vadim Petrochenkov | -8/+3 |
| 2018-06-30 | hygiene: Implement transparent marks | Vadim Petrochenkov | -1/+3 |
| 2018-06-30 | expansion: Give names to some fields of `SyntaxExtension` | Vadim Petrochenkov | -8/+7 |
| 2018-06-30 | resolve: Cleanup `resolve_crate_root` | Vadim Petrochenkov | -3/+2 |
| 2018-06-27 | Implement `#[macro_export(local_inner_macros)]` | Vadim Petrochenkov | -1/+8 |
| 2018-06-23 | hygiene: More descriptive names for things involved in late hygienic name res... | Vadim Petrochenkov | -1/+2 |
| 2018-06-23 | expansion: Rename `Expansion` to `AstFragment` | Vadim Petrochenkov | -8/+9 |
| 2018-06-23 | hygiene: Rename `MarkKind` to `Transparency` | Vadim Petrochenkov | -3/+3 |
| 2018-06-20 | Rename "parameter" to "arg" | varkor | -2/+2 |
| 2018-06-12 | fix issue #51331 by updating qself.position | Michael Lamparski | -3/+22 |
| 2018-06-03 | Remove is_import field | Mark Simulacrum | -1/+0 |
| 2018-05-30 | resolve: Make sure indeterminate and inconsistent macro resolutions always ge... | Vadim Petrochenkov | -15/+57 |
| 2018-05-26 | Add `Ident::as_str` helper | Vadim Petrochenkov | -1/+1 |
| 2018-05-22 | Auto merge of #50969 - nikomatsakis:issue-50673-broken-migration-lint, r=alex... | bors | -3/+3 |
| 2018-05-22 | pass down information about the root tree and use that to guide lint | Niko Matsakis | -3/+3 |
| 2018-05-20 | Auto merge of #50851 - eddyb:the-only-constant, r=nikomatsakis | bors | -12/+1 |
| 2018-05-19 | rustc: introduce {ast,hir}::AnonConst to consolidate so-called "embedded cons... | Eduard-Mihai Burtescu | -12/+1 |
| 2018-05-19 | Auto merge of #50760 - petrochenkov:legimp, r=nikomatsakis | bors | -1/+0 |
| 2018-05-17 | Pass crate editions to macro expansions, update tests | Vadim Petrochenkov | -8/+9 |
| 2018-05-15 | Turn deprecation lint `legacy_imports` into a hard error | Vadim Petrochenkov | -1/+0 |
| 2018-05-02 | Remove Option from the return type of Attribute::name() | Seiichi Uchida | -3/+3 |
| 2018-05-02 | Allow Path for name of MetaItem | Seiichi Uchida | -1/+1 |
| 2018-04-30 | Auto merge of #50092 - abonander:issue-49934, r=petrochenkov | bors | -1/+3 |
| 2018-04-29 | Warn on pointless `#[derive]` in more places | Austin Bonander | -1/+3 |
| 2018-04-27 | Don't feature gate bang macros on 'proc_macro_path_invoc'. | Sergio Benitez | -1/+2 |
| 2018-04-25 | Auto merge of #50100 - Manishearth:edition-path-lint, r=nikomatsakis | bors | -2/+2 |
| 2018-04-20 | rustc: Tweak custom attribute capabilities | Alex Crichton | -0/+12 |
| 2018-04-19 | Pass down NodeId to resolve_path | Manish Goregaokar | -2/+2 |
| 2018-04-06 | Remove more duplicated spans | Vadim Petrochenkov | -3/+3 |
| 2018-04-06 | Get rid of `SpannedIdent` | Vadim Petrochenkov | -11/+6 |
| 2018-04-06 | Rename `PathSegment::identifier` to `ident` | Vadim Petrochenkov | -6/+6 |
| 2018-04-06 | Use `Span` instead of `SyntaxContext` in `Ident` | Vadim Petrochenkov | -2/+2 |
| 2018-03-18 | Initial implementation of RFC 2151, Raw Identifiers | Lymia Aluysia | -1/+1 |
| 2018-03-05 | Turn features() into a query. | Michael Woerister | -2/+2 |
| 2018-03-02 | Replace Rc with Lrc for shared data | John Kåre Alsaker | -5/+5 |
| 2018-01-22 | Store a list of local macros on the resolver; use for resolving intra-doc mac... | Manish Goregaokar | -1/+2 |
| 2018-01-22 | Resolve foreign macros | Manish Goregaokar | -1/+1 |
| 2018-01-15 | Don't include bang in macro replacement suggestion | Ryan Cumming | -2/+1 |
| 2018-01-13 | Auto merge of #47181 - michaelwoerister:var-len-def-index, r=eddyb | bors | -3/+4 |
| 2018-01-12 | Auto merge of #46551 - jseyfried:improve_legacy_modern_macro_interaction, r=nrc | bors | -1/+1 |
| 2018-01-08 | Use different DefIndex representation that is better suited for variable leng... | Michael Woerister | -3/+4 |
| 2017-12-28 | Report an error when resolving non-ident macro path failed | topecongiro | -1/+9 |
| 2017-12-13 | Improve interaction between macros 2.0 and `macro_rules!`. | Jeffrey Seyfried | -1/+1 |