rust/src/libsyntax/show_span.rs

87 lines
2.1 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-12-27 06:00:48 -06:00
use std::str::FromStr;
2014-07-24 21:44:24 -05:00
use ast;
use errors;
2014-07-24 21:44:24 -05:00
use visit;
use visit::Visitor;
2014-02-07 04:50:07 -06:00
2014-12-27 06:00:48 -06:00
enum Mode {
Expression,
Pattern,
Type,
}
impl FromStr for Mode {
type Err = ();
fn from_str(s: &str) -> Result<Mode, ()> {
2014-12-27 06:00:48 -06:00
let mode = match s {
"expr" => Mode::Expression,
"pat" => Mode::Pattern,
"ty" => Mode::Type,
_ => return Err(())
2014-12-27 06:00:48 -06:00
};
Ok(mode)
2014-12-27 06:00:48 -06:00
}
}
2014-03-05 08:36:01 -06:00
struct ShowSpanVisitor<'a> {
span_diagnostic: &'a errors::Handler,
2014-12-27 06:00:48 -06:00
mode: Mode,
2014-02-07 04:50:07 -06:00
}
impl<'a> Visitor for ShowSpanVisitor<'a> {
2014-09-16 18:58:11 -05:00
fn visit_expr(&mut self, e: &ast::Expr) {
2014-12-27 06:00:48 -06:00
if let Mode::Expression = self.mode {
2015-12-20 15:00:43 -06:00
self.span_diagnostic.span_warn(e.span, "expression");
2014-12-27 06:00:48 -06:00
}
2014-09-16 18:58:11 -05:00
visit::walk_expr(self, e);
2014-02-07 04:50:07 -06:00
}
2014-12-27 06:00:48 -06:00
fn visit_pat(&mut self, p: &ast::Pat) {
if let Mode::Pattern = self.mode {
2015-12-20 15:00:43 -06:00
self.span_diagnostic.span_warn(p.span, "pattern");
2014-12-27 06:00:48 -06:00
}
visit::walk_pat(self, p);
}
fn visit_ty(&mut self, t: &ast::Ty) {
if let Mode::Type = self.mode {
2015-12-20 15:00:43 -06:00
self.span_diagnostic.span_warn(t.span, "type");
2014-12-27 06:00:48 -06:00
}
visit::walk_ty(self, t);
}
2015-01-05 21:13:38 -06:00
fn visit_mac(&mut self, mac: &ast::Mac) {
visit::walk_mac(self, mac);
}
2014-02-07 04:50:07 -06:00
}
pub fn run(span_diagnostic: &errors::Handler,
2014-12-27 06:00:48 -06:00
mode: &str,
krate: &ast::Crate) {
let mode = match mode.parse().ok() {
2014-12-27 06:00:48 -06:00
Some(mode) => mode,
None => return
};
let mut v = ShowSpanVisitor {
span_diagnostic: span_diagnostic,
mode: mode,
};
visit::walk_crate(&mut v, krate);
2014-02-07 04:50:07 -06:00
}