aboutsummaryrefslogtreecommitdiffstats
path: root/components/script_plugins
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2020-03-04 15:08:18 -0500
committerJosh Matthews <josh@joshmatthews.net>2020-03-10 10:09:07 -0400
commit51145cfd83b9c2f0b4ebd68403f29a6ed955d902 (patch)
tree89ecd7f51bc7c347a750413821cf694aea638170 /components/script_plugins
parent70101786915ffbe0ec8141f125af855613b1a00c (diff)
downloadservo-51145cfd83b9c2f0b4ebd68403f29a6ed955d902.tar.gz
servo-51145cfd83b9c2f0b4ebd68403f29a6ed955d902.zip
Update to 3/4 nightly rustc.
Diffstat (limited to 'components/script_plugins')
-rw-r--r--components/script_plugins/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs
index 035ce326480..752a1343db0 100644
--- a/components/script_plugins/lib.rs
+++ b/components/script_plugins/lib.rs
@@ -20,14 +20,15 @@
#![cfg(feature = "unrooted_must_root_lint")]
extern crate rustc;
+extern crate rustc_ast;
extern crate rustc_driver;
extern crate rustc_hir;
extern crate rustc_lint;
extern crate rustc_session;
extern crate rustc_span;
-extern crate syntax;
use rustc::ty;
+use rustc_ast::ast::{AttrKind, Attribute};
use rustc_driver::plugin::Registry;
use rustc_hir::def_id::DefId;
use rustc_hir::intravisit as visit;
@@ -38,7 +39,6 @@ use rustc_span::source_map;
use rustc_span::source_map::{ExpnKind, MacroKind, Span};
use rustc_span::symbol::sym;
use rustc_span::symbol::Symbol;
-use syntax::ast::{AttrKind, Attribute};
#[allow(deprecated)]
#[plugin_registrar]