1
Fork 0

Normalize syntax::symbol imports.

This commit is contained in:
Mazdak Farrokhzad 2020-01-01 19:30:57 +01:00
parent 75e4783f63
commit 4ff12ce4c1
174 changed files with 188 additions and 184 deletions

View file

@ -6,15 +6,14 @@ pub use TokenKind::*;
use crate::ast;
use crate::ptr::P;
use crate::symbol::kw;
use crate::tokenstream::TokenTree;
use rustc_span::symbol::Symbol;
use rustc_span::{self, Span, DUMMY_SP};
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
use rustc_data_structures::sync::Lrc;
use rustc_macros::HashStable_Generic;
use rustc_span::symbol::kw;
use rustc_span::symbol::Symbol;
use rustc_span::{self, Span, DUMMY_SP};
use std::fmt;
use std::mem;