summary refs log tree commit diff
path: root/src/libsyntax/ext/expand.rs
AgeCommit message (Expand)AuthorLines
2017-11-14avoid the pprust infrastructure in macro expansionAriel Ben-Yehuda-3/+24
2017-10-03Rename FileMap::path and change to an OptionPhilip Craig-2/+2
2017-09-30Don't use remapped path when loading modules and include filesPhilip Craig-4/+2
2017-09-27Apply attr proc macros before cfg processingTomas Nilsson-14/+25
2017-09-25Fix bug in collecting trait and impl items with derives.Jeffrey Seyfried-7/+1
2017-09-21suggest an outer attribute when `#![derive(...)]` (predictably) failsZack M. Davis-5/+13
2017-09-21only set non-ADT derive error once per attribute, not per traitZack M. Davis-0/+18
2017-09-17Rollup merge of #44088 - bjorn3:better_trace_macros, r=jseyfriedTim Neumann-1/+14
2017-09-02Better trace-macro and less span_err_fatalbjorn3-1/+2
2017-08-30Make fields of `Span` privateVadim Petrochenkov-7/+6
2017-08-27Fix errorbjorn3-1/+0
2017-08-25Fix #43493 (new trace_macros doesn't work if there's an error during expansion)bjorn3-0/+13
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-7/+8
2017-08-12syntax: #[allow_internal_unsafe] bypasses the unsafe_code lint in macros.Eduard-Mihai Burtescu-7/+20
2017-08-07Reexport all SyntaxExtension variantsOliver Schneider-9/+9
2017-07-28syntax: Add `tokens: Option<TokenStream>` to ItemAlex Crichton-0/+1
2017-07-25Stabilize the `compile_error_macro` featureAlex Crichton-1/+0
2017-07-20Use the macro structure spans instead of the invocationEsteban Küber-0/+1
2017-06-26Add `LazyTokenStream`.Jeffrey Seyfried-30/+10
2017-06-26Simplify `hygiene::Mark` application, andJeffrey Seyfried-20/+16
2017-06-19Add compile_error!Wesley Wiser-0/+1
2017-05-31Extend the unused macro lint to macros 2.0est31-2/+3
2017-05-25Hygienize `librustc_resolve`.Jeffrey Seyfried-15/+27
2017-05-17Auto merge of #42049 - Mark-Simulacrum:rollup, r=Mark-Simulacrumbors-15/+11
2017-05-13Support #[allow] etc logic on a per macro levelest31-1/+1
2017-05-12Fix some clippy warnings in libsyntaxAndre Bogus-15/+11
2017-05-08Rollup merge of #41520 - estebank:trace-macro, r=nikomatsakisCorey Farwell-1/+1
2017-05-06Group "macro expansion" notes per call spanEsteban Küber-1/+1
2017-05-01Increase macro recursion limit to 1024 Fixes #22552Charlie Sheridan-1/+1
2017-04-26Implement a file-path remapping feature in support of debuginfo and reproduci...Michael Woerister-1/+1
2017-04-20Don't panic if an attribute macro fails to resolve at crate rootAustin Bonander-2/+12
2017-04-17Auto merge of #41282 - arielb1:missing-impl-item, r=petrochenkovbors-2/+2
2017-04-17libsyntax/parse: improve associated item error reportingAriel Ben-Yehuda-2/+2
2017-04-12First attempt at global_asm! macroA.J. Gardner-0/+1
2017-03-29Merge `ExpnId` and `SyntaxContext`.Jeffrey Seyfried-65/+46
2017-03-29Move `syntax::ext::hygiene` to `syntax_pos::hygiene`.Jeffrey Seyfried-3/+3
2017-03-21Refactor parsing of trait object typesVadim Petrochenkov-1/+1
2017-03-14Liberalize attributes.Jeffrey Seyfried-45/+49
2017-03-14Refactor `Attribute` to use `Path` and `TokenStream` instead of `MetaItem`.Jeffrey Seyfried-34/+8
2017-03-11Auto merge of #40220 - jseyfried:ast_macro_def, r=nrcbors-79/+10
2017-03-10Expect macro defs in save-analysis and add expn info to spans for attr proc m...Nick Cameron-1/+13
2017-03-10Avoid using `Mark` and `Invocation` for macro defs.Jeffrey Seyfried-7/+3
2017-03-10Move `resolve_invoc` from `syntax` to `resolve`.Jeffrey Seyfried-60/+2
2017-03-10Refactor out `ast::ItemKind::MacroDef`.Jeffrey Seyfried-12/+5
2017-03-03Integrate `TokenStream`.Jeffrey Seyfried-20/+19
2017-03-03Remove lifetime parameter from `syntax::tokenstream::Cursor`.Jeffrey Seyfried-1/+1
2017-02-16Refactor macro resolution errors + add derive macro suggestionsJosh Driver-6/+8
2017-02-12Allow using inert attributes from `proc_macro_derive`s with `#![feature(proc_...Jeffrey Seyfried-82/+179
2017-02-05Move derive macro expansion into the MacroExpanderJosh Driver-8/+102
2017-02-05Rename CustomDerive to ProcMacroDerive for macros 1.1Josh Driver-2/+2