about summary refs log tree commit diff
path: root/src/libsyntax/ext/expand.rs
AgeCommit message (Expand)AuthorLines
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
2017-02-05Make builtin derives a SyntaxExtensionJosh Driver-2/+2
2017-01-22Refactor `TokenStream`.Jeffrey Seyfried-6/+4
2017-01-20Rollup merge of #39118 - jseyfried:token_tree_based_parser, r=nrcAlex Crichton-7/+3
2017-01-20Rollup merge of #38842 - abonander:proc_macro_attribute, r=jseyfriedAlex Crichton-3/+27
2017-01-17Introduce `string_reader.parse_all_token_trees()`.Jeffrey Seyfried-7/+3
2017-01-17Give the `StringReader` a `sess: &ParseSess`.Jeffrey Seyfried-1/+1
2017-01-16Implement `#[proc_macro_attribute]`Austin Bonander-3/+27
2017-01-17syntax: Rename parse_ty -> parse_ty_no_plus, parse_ty_sum -> parse_tyVadim Petrochenkov-1/+1
2017-01-15Mark the pushpop_unsafe feature as "removed"est31-1/+0
2017-01-12Auto merge of #38814 - Ralith:cfg-fields, r=jseyfriedbors-0/+1
2017-01-11syntax: struct field attributes and cfgBenjamin Saunders-0/+1
2017-01-02rustc: Stabilize the `proc_macro` featureAlex Crichton-1/+0
2016-12-18Refactor out `mark.as_placeholder_id()`.Jeffrey Seyfried-4/+4
2016-12-18Avoid including attributes in bang macro invocations.Jeffrey Seyfried-21/+17
2016-12-18Remove scope placeholders, remove method `add_macro` of `ext::base::Resolver`.Jeffrey Seyfried-15/+22
2016-12-17Auto merge of #38205 - jseyfried:fix_module_directory_regression, r=eddybbors-1/+1
2016-12-07macros: fix the expected paths for a non-inline module matched by an `item` f...Jeffrey Seyfried-1/+1
2016-12-06annotate stricter lifetimes on LateLintPass methods to allow them to forward ...Oliver Schneider-1/+1
2016-11-30Support paths in macro invocations.Jeffrey Seyfried-6/+1
2016-11-22Start warning cycle.Jeffrey Seyfried-1/+1
2016-11-22Clean up directory ownership semantics.Jeffrey Seyfried-9/+15
2016-11-21Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p...Jeffrey Seyfried-1/+1
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-3/+4
2016-11-20Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s.Jeffrey Seyfried-3/+3
2016-11-20Refactor away `ast::Attribute_`.Jeffrey Seyfried-2/+2
2016-11-17Resolve imports during expansion.Jeffrey Seyfried-2/+11
2016-11-11Change implementation of syntax::util::SmallVector to use data_structures::Sm...Mark-Simulacrum-7/+7