| Age | Commit message (Expand) | Author | Lines |
| 2019-07-25 | Rollup merge of #62735 - petrochenkov:galloc, r=alexcrichton | Mazdak Farrokhzad | -0/+75 |
| 2019-07-25 | Rollup merge of #60938 - jonas-schievink:doc-include-paths, r=petrochenkov | Mazdak Farrokhzad | -33/+32 |
| 2019-07-24 | syntax_ext: Turn `#[global_allocator]` into a regular attribute macro | Vadim Petrochenkov | -0/+22 |
| 2019-07-24 | Merge `rustc_allocator` into `libsyntax_ext` | Vadim Petrochenkov | -0/+53 |
| 2019-07-23 | Normalize use of backticks in compiler messages for libsyntax/* | Samy Kacimi | -1/+1 |
| 2019-07-23 | Make path::resolve a method on ExtCtxt | Jonas Schievink | -7/+30 |
| 2019-07-23 | Make #[doc(include)] paths behave like other paths | Jonas Schievink | -5/+2 |
| 2019-07-23 | libsyntax: factor out file path resolving | Jonas Schievink | -27/+6 |
| 2019-07-20 | Auto merge of #62008 - ia0:issues_61053, r=petrochenkov | bors | -67/+681 |
| 2019-07-19 | Implement checks for meta-variables in macros | Julien Cretin | -46/+648 |
| 2019-07-19 | Remember the span of the Kleene operator in macros | Julien Cretin | -21/+33 |
| 2019-07-19 | Adjust other names after the `Mark` renaming | Vadim Petrochenkov | -28/+28 |
| 2019-07-19 | libsyntax: Remove `Mark` into `ExpnId` | Vadim Petrochenkov | -15/+15 |
| 2019-07-13 | Detect `fn` with a body in an `extern` block | Esteban Küber | -1/+1 |
| 2019-07-11 | expand: Move "derive containers" into a separate `InvocationKind` variant | Vadim Petrochenkov | -14/+25 |
| 2019-07-11 | expand: Merge `expand_{bang,attr,derive}_invoc` into a single function | Vadim Petrochenkov | -116/+78 |
| 2019-07-11 | expand: It's always possible to create a dummy AST fragment | Vadim Petrochenkov | -44/+39 |
| 2019-07-11 | hygiene: Make sure each `Mark` has an associated expansion info | Vadim Petrochenkov | -2/+12 |
| 2019-07-11 | hygiene: Introduce a helper method for creating new expansions | Vadim Petrochenkov | -7/+6 |
| 2019-07-11 | expand: Do not overwrite existing `ExpnInfo` when injecting derive markers | Vadim Petrochenkov | -3/+4 |
| 2019-07-11 | resolve/expand: Catch macro kind mismatches early in resolve | Vadim Petrochenkov | -34/+5 |
| 2019-07-11 | resolve/expand: `resolve_macro_invocation` no longer returns determinate errors | Vadim Petrochenkov | -71/+57 |
| 2019-07-11 | resolve: Make proc macro stubs less stubby | Vadim Petrochenkov | -1/+21 |
| 2019-07-11 | hygiene: Reuse `MacroKind` in `ExpnKind` | Vadim Petrochenkov | -15/+6 |
| 2019-07-11 | syntax: Make def-site span mandatory in ExpnInfo/MacroBacktrace/DiagnosticSpa... | Vadim Petrochenkov | -12/+8 |
| 2019-07-11 | expand: Get rid of `resolve_macro_path` | Vadim Petrochenkov | -14/+11 |
| 2019-07-11 | Rename some things in `syntax_pos/hygiene` | Vadim Petrochenkov | -10/+10 |
| 2019-07-11 | Move `MacroKind` into `libsyntax_pos` | Vadim Petrochenkov | -28/+1 |
| 2019-07-11 | Remove `MacroKind::ProcMacroStub` | Vadim Petrochenkov | -3/+0 |
| 2019-07-09 | Resolve `$crate` in all hygienic contexts for pretty-pringing | Vadim Petrochenkov | -2/+2 |
| 2019-07-07 | syntax: Pre-intern names of all built-in macros | Vadim Petrochenkov | -3/+3 |
| 2019-07-07 | syntax: Migrate built-in macros to the regular stability checking | Vadim Petrochenkov | -39/+9 |
| 2019-07-07 | Support deprecation checking for macros | Vadim Petrochenkov | -2/+6 |
| 2019-07-07 | syntax: Keep full `Stability` in `SyntaxExtension` | Vadim Petrochenkov | -17/+6 |
| 2019-07-07 | resolve/expand: Move macro stability checking to an earlier point | Vadim Petrochenkov | -42/+9 |
| 2019-07-07 | syntax: Remove `NodeId` from `SyntaxExtension` | Vadim Petrochenkov | -8/+7 |
| 2019-07-06 | privacy: Only opaque macros leak private things | Vadim Petrochenkov | -13/+14 |
| 2019-07-06 | `#[rustc_transparent_macro]` -> `#[rustc_macro_transparency = ...]` | Vadim Petrochenkov | -7/+11 |
| 2019-07-05 | Rollup merge of #62133 - petrochenkov:norustc, r=eddyb | Mazdak Farrokhzad | -3/+1 |
| 2019-07-04 | Rollup merge of #62258 - petrochenkov:idclean, r=Centril | Mazdak Farrokhzad | -33/+12 |
| 2019-07-04 | Rollup merge of #62249 - czipperz:use-mem-take-instead-of-replace-default, r=... | Mazdak Farrokhzad | -2/+2 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -1/+1 |
| 2019-07-01 | Convert more usages over | Chris Gregory | -2/+2 |
| 2019-07-01 | syntax: Unsupport `foo! bar { ... }` macros in the parser | Vadim Petrochenkov | -33/+12 |
| 2019-06-30 | Make sure `#[rustc_doc_only_macro]` and other rustc attributes are registered | Vadim Petrochenkov | -3/+1 |
| 2019-06-26 | Fix clippy::redundant_field_names | Igor Matuszewski | -8/+8 |
| 2019-06-23 | Auto merge of #62070 - ia0:rustfmt, r=petrochenkov | bors | -235/+273 |
| 2019-06-23 | Auto merge of #60861 - Centril:let-chains-ast-intro, r=petrochenkov | bors | -1/+3 |
| 2019-06-23 | Run rustfmt | Julien Cretin | -235/+273 |
| 2019-06-23 | Rollup merge of #62068 - ia0:fix_meta_var, r=petrochenkov | Mazdak Farrokhzad | -6/+6 |