diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-06-14 20:15:31 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-06-14 20:15:31 +0530 |
commit | 3cdc412a4cf76a1ec77219381966e0f0fc11d732 (patch) | |
tree | b82665e2811cc84afeb674ed215d4b418dfec4d4 /components/plugins/utils.rs | |
parent | 9fbffff604ba16a1a5905267fb87342b18522f29 (diff) | |
download | servo-3cdc412a4cf76a1ec77219381966e0f0fc11d732.tar.gz servo-3cdc412a4cf76a1ec77219381966e0f0fc11d732.zip |
Upgrade plugins
Diffstat (limited to 'components/plugins/utils.rs')
-rw-r--r-- | components/plugins/utils.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/plugins/utils.rs b/components/plugins/utils.rs index e7f4c36cde2..9d98f568a6c 100644 --- a/components/plugins/utils.rs +++ b/components/plugins/utils.rs @@ -2,11 +2,12 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use rustc::ast_map; use rustc::lint::Context; use rustc::middle::{ty, def}; use syntax::ptr::P; -use syntax::{ast, ast_map}; +use syntax::ast; use syntax::ast::{TyPath, Path, AngleBracketedParameters, PathSegment, Ty}; use syntax::attr::mark_used; |