about summary refs log tree commit diff
path: root/src/libsyntax/ext/expand.rs
AgeCommit message (Expand)AuthorLines
2016-09-26make emit_feature_err take a ParseSessTim Neumann-1/+1
2016-09-26Refactor `ensure_complete_parse`.Jeffrey Seyfried-12/+8
2016-09-26Remove `TokResult`.Jeffrey Seyfried-18/+27
2016-09-26Refactor `parse_expansion` out of `ResultAnyMacro`.Jeffrey Seyfried-4/+51
2016-09-24Load macros from `#[macro_use]` extern crates in `resolve`.Jeffrey Seyfried-19/+0
2016-09-22Auto merge of #36573 - jseyfried:groundwork, r=nrcbors-8/+9
2016-09-22Auto merge of #36154 - nrc:proc-macro-init, r=@jseyfriedbors-2/+79
2016-09-22Use `Resolver::visit_expansion` only with monotonic expansions.Jeffrey Seyfried-8/+9
2016-09-23reviewer comments and rebasingNick Cameron-29/+57
2016-09-22Auto merge of #36618 - jseyfried:crate_root_attr_invoc, r=nrcbors-7/+14
2016-09-22Adds a `ProcMacro` form of syntax extensionNick Cameron-2/+51
2016-09-21Allow attribute macro invocations at the crate root.Jeffrey Seyfried-7/+14
2016-09-20rustc_metadata: go only through rustc_serialize in astencode.Eduard Burtescu-3/+3
2016-09-15Remove `MacroRulesTT`.Jeffrey Seyfried-41/+1
2016-09-15Allow `IdentMacroExpander::expand` to access the ident macro invocation's att...Jeffrey Seyfried-1/+1
2016-09-15Move fields `single_step` and `keep_macs` from `MacroExpander` to `ExpansionC...Jeffrey Seyfried-10/+7
2016-09-13Differentiate between monotonic and non-monotonic expansion andJeffrey Seyfried-9/+15
2016-09-13Remove scope placeholders from the crate root.Jeffrey Seyfried-2/+13
2016-09-13Perform node id assignment and `macros_at_scope` construction duringJeffrey Seyfried-5/+19
2016-09-13Move macro resolution into `librustc_resolve`.Jeffrey Seyfried-105/+77
2016-09-13Rewrite the unit tests in `ext/expand.rs` as a `compile-fail` test.Jeffrey Seyfried-107/+0
2016-09-13Refactor `ExtCtxt` to use a `Resolver` instead of a `MacroLoader`.Jeffrey Seyfried-6/+6
2016-09-07Improve `directory` computation during invocation collection.Jeffrey Seyfried-5/+9
2016-09-07Implement stackless placeholder expansion.Jeffrey Seyfried-4/+15
2016-09-07Strip unconfigured nodes in the `InvocationCollector` fold.Jeffrey Seyfried-13/+60
2016-09-05Load macros from `extern crate`s in the `InvocationCollector` fold.Jeffrey Seyfried-62/+22
2016-09-05Implement stackless expansion.Jeffrey Seyfried-151/+182
2016-09-05Add module `ext::placeholders` with `placeholder()` and `PlaceholderExpander`.Jeffrey Seyfried-39/+9
2016-09-05Refactor `expand_invoc(.., fld)` -> `self.expand_invoc(..)`.Jeffrey Seyfried-207/+212
2016-09-05Refactor `SyntaxEnv`.Jeffrey Seyfried-44/+20
2016-09-05Refactor `expand_*` into `expander.fold_*`.Jeffrey Seyfried-214/+194
2016-09-05Clean up module processing.Jeffrey Seyfried-34/+20
2016-09-05Refactor out `expand_item` (with better semantics than before).Jeffrey Seyfried-36/+39
2016-09-05Refactor away `expand_item`.Jeffrey Seyfried-7/+3
2016-09-05Generalize `Invocation` to include modifiers/decorators.Jeffrey Seyfried-85/+138
2016-09-05Refactor `with_exts_frame` from a macro to a function.Jeffrey Seyfried-16/+10
2016-09-05Add `Invocation` and `Expansion`, remove `MacroGenerable`.Jeffrey Seyfried-212/+240
2016-09-05Remove `syntax::config::strip_unconfigured`, add `syntax::config::features`.Jeffrey Seyfried-2/+3
2016-09-05Improve `expand_type`.Jeffrey Seyfried-5/+8
2016-09-05In `Parser` and `ExtCtxt`, replace fields `filename` and `mod_path_stack`Jeffrey Seyfried-25/+18
2016-09-02rustc: Implement custom derive (macros 1.1)Alex Crichton-3/+8
2016-08-28Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrcJeffrey Seyfried-1/+0
2016-08-26Stabilize type-macrosDaniele Baracchi-12/+1
2016-08-25Refactor away `AttrMetaMethods`.Jeffrey Seyfried-1/+0
2016-08-11Auto merge of #34811 - DanielJCampbell:Expander, r=jseyfriedbors-41/+79
2016-08-10Extended expand.rs to support alternate expansion behavioursDaniel Campbell-41/+79
2016-07-25General MetaItem encapsulation rewrites.cgswords-3/+2
2016-07-17Rename `mtwt` to `hygiene`Jeffrey Seyfried-1/+1
2016-07-17Clean up and encapsulate `syntax::ext::mtwt`Jeffrey Seyfried-29/+15
2016-07-15Auto merge of #34570 - jseyfried:no_rename, r=nrcbors-558/+34