|
24 | 24 | // because getting it wrong can lead to nested `HygieneData::with` calls that
|
25 | 25 | // trigger runtime aborts. (Fortunately these are obvious and easy to fix.)
|
26 | 26 |
|
| 27 | +use crate::def_id::{CrateNum, DefId, StableCrateId, CRATE_DEF_ID, LOCAL_CRATE}; |
27 | 28 | use crate::edition::Edition;
|
28 | 29 | use crate::symbol::{kw, sym, Symbol};
|
29 |
| -use crate::with_session_globals; |
30 |
| -use crate::{HashStableContext, Span, DUMMY_SP}; |
31 |
| - |
32 |
| -use crate::def_id::{CrateNum, DefId, StableCrateId, CRATE_DEF_ID, LOCAL_CRATE}; |
| 30 | +use crate::{with_session_globals, HashStableContext, Span, DUMMY_SP}; |
33 | 31 | use rustc_data_structures::fingerprint::Fingerprint;
|
34 | 32 | use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
35 |
| -use rustc_data_structures::stable_hasher::HashingControls; |
36 |
| -use rustc_data_structures::stable_hasher::{Hash64, HashStable, StableHasher}; |
| 33 | +use rustc_data_structures::stable_hasher::{Hash64, HashStable, HashingControls, StableHasher}; |
37 | 34 | use rustc_data_structures::sync::{Lock, Lrc, WorkerLocal};
|
38 | 35 | use rustc_data_structures::unhash::UnhashMap;
|
39 | 36 | use rustc_index::IndexVec;
|
|
0 commit comments