summary refs log tree commit diff
path: root/src/libproc_macro_plugin/qquote.rs
AgeCommit message (Collapse)AuthorLines
2017-01-23Remove `open_span` and `close_span` from `Delimited`.Jeffrey Seyfried-4/+0
2017-01-22Refactor `TokenStream`.Jeffrey Seyfried-399/+159
2017-01-16proc macros/qquote: Handle empty delimited tokensNick Cameron-40/+43
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-24/+28
2016-10-28Split up libproc_macro_pluginNick Cameron-12/+6
Separate the plugin code from non-plugin code to break a potential cycle in crates. This will allow us to merge the new libproc_macro_tokens into libproc_macro.
2016-10-06rustc: Rename rustc_macro to proc_macroAlex Crichton-0/+470
This commit blanket renames the `rustc_macro` infrastructure to `proc_macro`, which reflects the general consensus of #35900. A follow up PR to Cargo will be required to purge the `rustc-macro` name as well.