summary refs log tree commit diff
path: root/src/libsyntax/ext/derive.rs
AgeCommit message (Collapse)AuthorLines
2017-02-12Allow using inert attributes from `proc_macro_derive`s with ↵Jeffrey Seyfried-135/+35
`#![feature(proc_macro)]`.
2017-02-12Move legacy custom derives collection into `resolver.find_attr_invoc()`.Jeffrey Seyfried-35/+1
2017-02-05Move derive macro expansion into the MacroExpanderJosh Driver-0/+218
This removes the expand_derives function, and sprinkles the functionality throughout the Invocation Collector, Expander and Resolver.