rust/src/rustc/metadata.rs
Brian Anderson 736ff34e8a rustc: Move filesearch into metadata mod
It's not that related to metadata, but metadata needs it and it will
probably be useful for doing dynamic loading.
2012-05-29 20:38:49 -07:00

28 lines
425 B
Rust

// Define the rustc API's that the metadata module has access to
// Over time we will reduce these dependencies and, once metadata has
// no dependencies on rustc it can move into its own crate.
mod middle {
import ty = middle_::ty;
export ty;
}
mod front {
}
mod back {
}
mod driver {
}
mod util {
import ppaux = util_::ppaux;
export ppaux;
}
mod lib {
import llvm = lib_::llvm;
export llvm;
}