rustc_typeck: export modules and fields for sub-passes.

This commit is contained in:
Eduard Burtescu 2015-05-14 02:04:56 +03:00
parent 222cd73b8a
commit 65f3067b52

View file

@ -117,13 +117,13 @@ use std::cell::RefCell;
// registered before they are used.
pub mod diagnostics;
mod check;
pub mod check;
mod rscope;
mod astconv;
mod collect;
pub mod collect;
mod constrained_type_params;
mod coherence;
mod variance;
pub mod coherence;
pub mod variance;
pub struct TypeAndSubsts<'tcx> {
pub substs: subst::Substs<'tcx>,
@ -132,13 +132,13 @@ pub struct TypeAndSubsts<'tcx> {
pub struct CrateCtxt<'a, 'tcx: 'a> {
// A mapping from method call sites to traits that have that method.
trait_map: ty::TraitMap,
pub trait_map: ty::TraitMap,
/// A vector of every trait accessible in the whole crate
/// (i.e. including those from subcrates). This is used only for
/// error reporting, and so is lazily initialised and generally
/// shouldn't taint the common path (hence the RefCell).
all_traits: RefCell<Option<check::method::AllTraitsVec>>,
tcx: &'a ty::ctxt<'tcx>,
pub all_traits: RefCell<Option<check::method::AllTraitsVec>>,
pub tcx: &'a ty::ctxt<'tcx>,
}
// Functions that write types into the node type table