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,11 +1,11 @@
// Functions dealing with attributes and meta_items
import std::map;
import std::map::hashmap;
import either::Either;
import diagnostic::span_handler;
import ast_util::{spanned, dummy_spanned};
import parse::comments::{doc_comment_style, strip_doc_comment_decoration};
use std::map;
use std::map::hashmap;
use either::Either;
use diagnostic::span_handler;
use ast_util::{spanned, dummy_spanned};
use parse::comments::{doc_comment_style, strip_doc_comment_decoration};
// Constructors
export mk_name_value_item_str;