diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-10-11 12:46:32 +0200 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-11-07 13:50:12 +0100 |
| commit | 9d6768a478b8a6afa1e16dfebe9d79bd3f508cdf (patch) | |
| tree | e1ac4f40d23f1b1600d24362bc53f1536eb977c7 /src/libsyntax_expand/proc_macro.rs | |
| parent | 53a50d4e4fdb0b242d637142d0b2d64e7054c35b (diff) | |
syntax::parser::token -> syntax::token
Diffstat (limited to 'src/libsyntax_expand/proc_macro.rs')
| -rw-r--r-- | src/libsyntax_expand/proc_macro.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax_expand/proc_macro.rs b/src/libsyntax_expand/proc_macro.rs index 1f4c481e3ea..51c368bbaa6 100644 --- a/src/libsyntax_expand/proc_macro.rs +++ b/src/libsyntax_expand/proc_macro.rs @@ -4,8 +4,9 @@ use crate::proc_macro_server; use syntax::ast::{self, ItemKind, Attribute, Mac}; use syntax::attr::{mark_used, mark_known}; use syntax::errors::{Applicability, FatalError}; -use syntax::parse::{self, token}; +use syntax::parse; use syntax::symbol::sym; +use syntax::token; use syntax::tokenstream::{self, TokenStream}; use syntax::visit::Visitor; |
