libsyntax: "import" -> "use"

This commit is contained in:
Patrick Walton
2012-09-04 11:37:29 -07:00
parent 3f92cf2659
commit 8ff18acc82
44 changed files with 203 additions and 208 deletions

View File

@@ -1,10 +1,10 @@
import std::map;
import std::map::hashmap;
import ast::*;
import print::pprust;
import ast_util::{path_to_ident, stmt_id};
import diagnostic::span_handler;
import parse::token::ident_interner;
use std::map;
use std::map::hashmap;
use ast::*;
use print::pprust;
use ast_util::{path_to_ident, stmt_id};
use diagnostic::span_handler;
use parse::token::ident_interner;
enum path_elt {
path_mod(ident),