2014-02-07 04:50:07 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-02-07 05:13:07 -06:00
|
|
|
//! Span debugger
|
|
|
|
//!
|
|
|
|
//! This module shows spans for all expressions in the crate
|
|
|
|
//! to help with compiler debugging.
|
|
|
|
|
2014-02-07 04:50:07 -06:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::visit;
|
|
|
|
use syntax::visit::Visitor;
|
|
|
|
|
|
|
|
use driver::session::Session;
|
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
struct ShowSpanVisitor<'a> {
|
|
|
|
sess: &'a Session
|
2014-02-07 04:50:07 -06:00
|
|
|
}
|
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
impl<'a> Visitor<()> for ShowSpanVisitor<'a> {
|
2014-02-07 04:50:07 -06:00
|
|
|
fn visit_expr(&mut self, e: &ast::Expr, _: ()) {
|
|
|
|
self.sess.span_note(e.span, "expression");
|
|
|
|
visit::walk_expr(self, e, ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
pub fn run(sess: &Session, krate: &ast::Crate) {
|
2014-02-07 04:50:07 -06:00
|
|
|
let mut v = ShowSpanVisitor { sess: sess };
|
2014-02-05 15:15:24 -06:00
|
|
|
visit::walk_crate(&mut v, krate, ());
|
2014-02-07 04:50:07 -06:00
|
|
|
}
|