Skip to content

Commit

Permalink
Add unstable_options method
Browse files Browse the repository at this point in the history
  • Loading branch information
sanxiyn committed Dec 27, 2014
1 parent c43efee commit 9554794
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/librustc/session/mod.rs
Expand Up @@ -202,6 +202,9 @@ impl Session {
pub fn show_span(&self) -> bool {
self.debugging_opt(config::SHOW_SPAN)
}
pub fn unstable_options(&self) -> bool {
self.debugging_opt(config::UNSTABLE_OPTIONS)
}
pub fn sysroot<'a>(&'a self) -> &'a Path {
match self.opts.maybe_sysroot {
Some (ref sysroot) => sysroot,
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_driver/lib.rs
Expand Up @@ -143,7 +143,7 @@ fn run_compiler(args: &[String]) {
pretty::parse_pretty(&sess, a.as_slice(), false)
});
let pretty = if pretty.is_none() &&
sess.debugging_opt(config::UNSTABLE_OPTIONS) {
sess.unstable_options() {
matches.opt_str("xpretty").map(|a| {
// extended with unstable pretty-print variants
pretty::parse_pretty(&sess, a.as_slice(), true)
Expand Down

0 comments on commit 9554794

Please sign in to comment.