rustc-ap-rustc_session 642.0.0

Automatically published version of the package `rustc_session` in the rust-lang/rust repository from commit a29424a2265411dda7d7446516ac5fd7499e2b55 The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
Documentation
#![feature(crate_visibility_modifier)]
#![feature(rustc_private, test)]

// Use the test crate here so we depend on getopts through it. This allow tools to link to both
// librustc_session and libtest.
extern crate getopts;
extern crate test as _;

pub mod cgu_reuse_tracker;
pub mod utils;
#[macro_use]
pub mod lint;
pub mod parse;

mod code_stats;
#[macro_use]
pub mod config;
pub mod filesearch;
mod options;
pub mod search_paths;

mod session;
pub use session::*;