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,7 +1,7 @@
import std::map::{hashmap};
import ast_util::spanned;
import parser::parser;
import lexer::reader;
use std::map::{hashmap};
use ast_util::spanned;
use parser::parser;
use lexer::reader;
type seq_sep = {
sep: Option<token::token>,