about summary refs log tree commit diff
path: root/src/rustc/metadata/creader.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-09-04 11:54:36 -0700
committerPatrick Walton <pcwalton@mimiga.net>2012-09-04 11:54:36 -0700
commita26837c47872066b8bfb4e455fcf75fc573e862f (patch)
treed599c4ebf2df9b66176f881e8e4c64a87475ca47 /src/rustc/metadata/creader.rs
parent8ff18acc8221a0157d94cd714b448b6a596fad40 (diff)
downloadrust-a26837c47872066b8bfb4e455fcf75fc573e862f.tar.gz
rust-a26837c47872066b8bfb4e455fcf75fc573e862f.zip
rustc: "import" -> "use"
Diffstat (limited to 'src/rustc/metadata/creader.rs')
-rw-r--r--src/rustc/metadata/creader.rs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/rustc/metadata/creader.rs b/src/rustc/metadata/creader.rs
index 4f3df6cac70..df02a8640dc 100644
--- a/src/rustc/metadata/creader.rs
+++ b/src/rustc/metadata/creader.rs
@@ -1,16 +1,16 @@
 //! Validates all used crates and extern libraries and loads their metadata
 
-import syntax::diagnostic::span_handler;
-import syntax::{ast, ast_util};
-import syntax::attr;
-import syntax::visit;
-import syntax::codemap::span;
-import std::map::{hashmap, int_hash};
-import syntax::print::pprust;
-import filesearch::filesearch;
-import common::*;
-import dvec::DVec;
-import syntax::parse::token::ident_interner;
+use syntax::diagnostic::span_handler;
+use syntax::{ast, ast_util};
+use syntax::attr;
+use syntax::visit;
+use syntax::codemap::span;
+use std::map::{hashmap, int_hash};
+use syntax::print::pprust;
+use filesearch::filesearch;
+use common::*;
+use dvec::DVec;
+use syntax::parse::token::ident_interner;
 
 export read_crates;