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,5 +1,5 @@
import codemap::span;
import ast::*;
use codemap::span;
use ast::*;
pure fn spanned<T>(lo: uint, hi: uint, +t: T) -> spanned<T> {
respan(mk_sp(lo, hi), t)