| Age | Commit message (Expand) | Author | Lines |
| 2017-05-17 | Auto merge of #42049 - Mark-Simulacrum:rollup, r=Mark-Simulacrum | bors | -84/+90 |
| 2017-05-16 | Rollup merge of #41957 - llogiq:clippy-libsyntax, r=petrochenkov | Mark Simulacrum | -84/+90 |
| 2017-05-16 | Auto merge of #41907 - est31:macro_unused, r=jseyfried | bors | -3/+11 |
| 2017-05-16 | Rollup merge of #42005 - jseyfried:fix_macro_regression, r=nrc | Mark Simulacrum | -5/+6 |
| 2017-05-15 | adressed comments by @kennytm and @petrochenkov | Andre Bogus | -26/+31 |
| 2017-05-15 | Fix regression on `include!(line!())`. | Jeffrey Seyfried | -5/+5 |
| 2017-05-15 | Fix regression in `macro_rules!` name matching. | Jeffrey Seyfried | -5/+6 |
| 2017-05-15 | Address review comments | est31 | -4/+2 |
| 2017-05-13 | Support #[allow] etc logic on a per macro level | est31 | -3/+7 |
| 2017-05-13 | Add lint for unused macros | est31 | -0/+6 |
| 2017-05-13 | Fix #35829 (syntax extension's `quote_expr!()` does not handle b"…") | kennytm | -36/+20 |
| 2017-05-12 | Fix some clippy warnings in libsyntax | Andre Bogus | -81/+82 |
| 2017-05-08 | Rollup merge of #41520 - estebank:trace-macro, r=nikomatsakis | Corey Farwell | -5/+19 |
| 2017-05-07 | Auto merge of #41676 - sirideain:expand-macro-recursion-limit, r=jseyfried | bors | -1/+1 |
| 2017-05-06 | Group "macro expansion" notes per call span | Esteban Küber | -9/+18 |
| 2017-05-05 | Use diagnostics for trace_macro instead of println | Esteban Küber | -1/+6 |
| 2017-05-02 | Removal pass for anonymous parameters | est31 | -1/+1 |
| 2017-05-01 | Increase macro recursion limit to 1024 Fixes #22552 | Charlie Sheridan | -1/+1 |
| 2017-04-26 | Implement a file-path remapping feature in support of debuginfo and reproduci... | Michael Woerister | -3/+3 |
| 2017-04-20 | Don't panic if an attribute macro fails to resolve at crate root | Austin Bonander | -2/+12 |
| 2017-04-17 | Auto merge of #41282 - arielb1:missing-impl-item, r=petrochenkov | bors | -2/+2 |
| 2017-04-17 | libsyntax/parse: improve associated item error reporting | Ariel Ben-Yehuda | -2/+2 |
| 2017-04-15 | feature gate :vis matcher | Alex Burka | -22/+45 |
| 2017-04-15 | widen :vis follow set | Alex Burka | -4/+4 |
| 2017-04-15 | parse interpolated visibility tokens | Alex Burka | -1/+2 |
| 2017-04-15 | update :vis implementation to current rust | Alex Burka | -6/+6 |
| 2017-04-15 | Implementation of the `vis` macro matcher. | Daniel Keep | -1/+15 |
| 2017-04-12 | First attempt at global_asm! macro | A.J. Gardner | -0/+1 |
| 2017-04-03 | Fix bug parsing `#[derive]` macro invocations. | Jeffrey Seyfried | -1/+2 |
| 2017-03-30 | Improve `Path` spans. | Jeffrey Seyfried | -16/+31 |
| 2017-03-29 | Refactor how spans are combined in the parser. | Jeffrey Seyfried | -5/+4 |
| 2017-03-29 | Merge `ExpnId` and `SyntaxContext`. | Jeffrey Seyfried | -141/+110 |
| 2017-03-29 | Move `syntax::ext::hygiene` to `syntax_pos::hygiene`. | Jeffrey Seyfried | -132/+5 |
| 2017-03-27 | Rollup merge of #40813 - jseyfried:fix_expansion_regression, r=nrc | Alex Crichton | -1/+1 |
| 2017-03-27 | Fix various useless derefs and slicings | Oliver Schneider | -1/+1 |
| 2017-03-25 | Fix ICE with nested macros in certain situations. | Jeffrey Seyfried | -1/+1 |
| 2017-03-22 | Introduce HirId, a replacement for NodeId after lowering to HIR. | Michael Woerister | -11/+3 |
| 2017-03-21 | Refactor parsing of trait object types | Vadim Petrochenkov | -3/+3 |
| 2017-03-19 | Auto merge of #40346 - jseyfried:path_and_tokenstream_attr, r=nrc | bors | -109/+91 |
| 2017-03-14 | Liberalize attributes. | Jeffrey Seyfried | -71/+71 |
| 2017-03-14 | Refactor `Attribute` to use `Path` and `TokenStream` instead of `MetaItem`. | Jeffrey Seyfried | -39/+21 |
| 2017-03-14 | Cleanup. | Jeffrey Seyfried | -1/+1 |
| 2017-03-12 | Rollup merge of #40369 - petrochenkov:segspan, r=eddyb | Corey Farwell | -7/+12 |
| 2017-03-11 | Auto merge of #40220 - jseyfried:ast_macro_def, r=nrc | bors | -111/+28 |
| 2017-03-10 | Give spans to individual path segments in AST | Vadim Petrochenkov | -7/+12 |
| 2017-03-10 | Expect macro defs in save-analysis and add expn info to spans for attr proc m... | Nick Cameron | -1/+13 |
| 2017-03-10 | Avoid using `Mark` and `Invocation` for macro defs. | Jeffrey Seyfried | -16/+5 |
| 2017-03-10 | Move `resolve_invoc` from `syntax` to `resolve`. | Jeffrey Seyfried | -63/+11 |
| 2017-03-10 | Refactor out `ast::ItemKind::MacroDef`. | Jeffrey Seyfried | -35/+15 |
| 2017-03-03 | Integrate `TokenStream`. | Jeffrey Seyfried | -107/+93 |