1
Fork 0

librustc: Make use statements crate-relative by default. r=brson

This commit is contained in:
Patrick Walton 2012-12-13 13:05:22 -08:00
parent 3c8dca429a
commit 4c2e4c37ce
226 changed files with 1324 additions and 1140 deletions

View file

@ -19,16 +19,9 @@ use ast_util::dummy_sp;
use util::interner;
use ext::base::ext_ctxt;
use parse::*;
use proto::*;
use quote::rt::*;
use ast_builder::{append_types, path};
// Transitional reexports so qquote can find the paths it is looking for
mod syntax {
#[legacy_exports];
pub use ext;
pub use parse;
}
use ext::pipes::proto::*;
use ext::quote::rt::*;
use ext::pipes::ast_builder::{append_types, path};
trait gen_send {
fn gen_send(cx: ext_ctxt, try: bool) -> @ast::item;