diff options
| author | Taiki Endo <te316e89@gmail.com> | 2019-02-07 02:33:01 +0900 |
|---|---|---|
| committer | Taiki Endo <te316e89@gmail.com> | 2019-02-07 02:33:01 +0900 |
| commit | 7bb082d27fe472f52b103de0ae9fc6fa7e6546cc (patch) | |
| tree | dfed08e00fc6e88022fd7249bd5017e5d57110a7 /src/libsyntax/config.rs | |
| parent | 2596bc1368d1e3d34c9a7841ad87a3100f01cbad (diff) | |
| download | rust-7bb082d27fe472f52b103de0ae9fc6fa7e6546cc.tar.gz rust-7bb082d27fe472f52b103de0ae9fc6fa7e6546cc.zip | |
libsyntax => 2018
Diffstat (limited to 'src/libsyntax/config.rs')
| -rw-r--r-- | src/libsyntax/config.rs | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/libsyntax/config.rs b/src/libsyntax/config.rs index fce2601e3aa..bfc4457f054 100644 --- a/src/libsyntax/config.rs +++ b/src/libsyntax/config.rs @@ -1,20 +1,21 @@ -use attr::HasAttrs; -use feature_gate::{ +use crate::attr::HasAttrs; +use crate::feature_gate::{ feature_err, EXPLAIN_STMT_ATTR_SYNTAX, Features, get_features, GateIssue, }; -use attr; -use ast; -use edition::Edition; -use errors::Applicability; -use mut_visit::*; -use parse::{token, ParseSess}; -use ptr::P; +use crate::attr; +use crate::ast; +use crate::edition::Edition; +use crate::errors::Applicability; +use crate::mut_visit::*; +use crate::parse::{token, ParseSess}; +use crate::ptr::P; +use crate::util::map_in_place::MapInPlace; + use smallvec::SmallVec; -use util::map_in_place::MapInPlace; /// A folder that strips out items that do not belong in the current configuration. pub struct StripUnconfigured<'a> { |
