diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-01-01 19:25:28 +0100 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-01-02 13:57:04 +0100 |
| commit | 75e4783f63fc7a788d8dff47504b29dcd63d97fe (patch) | |
| tree | ad3199f1bb8f8e6a1a7b68ff7d1994017f8ef914 /src/libsyntax/ast.rs | |
| parent | 766fba3fdca8fe075c370a63d2f76f8407483af5 (diff) | |
| download | rust-75e4783f63fc7a788d8dff47504b29dcd63d97fe.tar.gz rust-75e4783f63fc7a788d8dff47504b29dcd63d97fe.zip | |
Normalize `syntax::source_map` imports.
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 7bf7ea0a424..47070261385 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -25,19 +25,18 @@ pub use UnsafeSource::*; pub use rustc_span::symbol::{Ident, Symbol as Name}; use crate::ptr::P; -use crate::source_map::{dummy_spanned, respan, Spanned}; use crate::token::{self, DelimToken}; use crate::tokenstream::{DelimSpan, TokenStream, TokenTree}; -use rustc_span::symbol::{kw, sym, Symbol}; -use rustc_span::{Span, DUMMY_SP}; - use rustc_data_structures::stable_hasher::{HashStable, StableHasher}; use rustc_data_structures::sync::Lrc; use rustc_data_structures::thin_vec::ThinVec; use rustc_index::vec::Idx; use rustc_macros::HashStable_Generic; use rustc_serialize::{self, Decoder, Encoder}; +use rustc_span::source_map::{dummy_spanned, respan, Spanned}; +use rustc_span::symbol::{kw, sym, Symbol}; +use rustc_span::{Span, DUMMY_SP}; use std::fmt; use std::iter; |
