rust/src/libsyntax/show_span.rs

40 lines
1.2 KiB
Rust
Raw Normal View History

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-07-24 21:44:24 -05:00
use ast;
use diagnostic;
use visit;
use visit::Visitor;
2014-02-07 04:50:07 -06:00
2014-03-05 08:36:01 -06:00
struct ShowSpanVisitor<'a> {
2014-07-24 21:44:24 -05:00
span_diagnostic: &'a diagnostic::SpanHandler,
2014-02-07 04:50:07 -06:00
}
2014-09-16 18:58:11 -05:00
impl<'a, 'v> Visitor<'v> for ShowSpanVisitor<'a> {
fn visit_expr(&mut self, e: &ast::Expr) {
2014-07-24 21:44:24 -05:00
self.span_diagnostic.span_note(e.span, "expression");
2014-09-16 18:58:11 -05:00
visit::walk_expr(self, e);
2014-02-07 04:50:07 -06:00
}
fn visit_mac(&mut self, macro: &ast::Mac) {
visit::walk_mac(self, macro);
}
2014-02-07 04:50:07 -06:00
}
2014-07-24 21:44:24 -05:00
pub fn run(span_diagnostic: &diagnostic::SpanHandler, krate: &ast::Crate) {
let mut v = ShowSpanVisitor { span_diagnostic: span_diagnostic };
visit::walk_crate(&mut v, krate);
2014-02-07 04:50:07 -06:00
}