rust/src/libsyntax/show_span.rs

87 lines
2.1 KiB
Rust
Raw Normal View History

2014-02-07 19:50:07 +09: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 20:13:07 +09:00
//! Span debugger
//!
//! This module shows spans for all expressions in the crate
//! to help with compiler debugging.
2014-12-27 21:00:48 +09:00
use std::str::FromStr;
2014-07-25 14:44:24 +12:00
use ast;
use errors;
2014-07-25 14:44:24 +12:00
use visit;
use visit::Visitor;
2014-02-07 19:50:07 +09:00
2014-12-27 21:00:48 +09:00
enum Mode {
Expression,
Pattern,
Type,
}
impl FromStr for Mode {
type Err = ();
fn from_str(s: &str) -> Result<Mode, ()> {
2014-12-27 21:00:48 +09:00
let mode = match s {
"expr" => Mode::Expression,
"pat" => Mode::Pattern,
"ty" => Mode::Type,
_ => return Err(())
2014-12-27 21:00:48 +09:00
};
Ok(mode)
2014-12-27 21:00:48 +09:00
}
}
2014-03-05 16:36:01 +02:00
struct ShowSpanVisitor<'a> {
span_diagnostic: &'a errors::Handler,
2014-12-27 21:00:48 +09:00
mode: Mode,
2014-02-07 19:50:07 +09:00
}
2014-09-17 11:58:11 +12:00
impl<'a, 'v> Visitor<'v> for ShowSpanVisitor<'a> {
fn visit_expr(&mut self, e: &ast::Expr) {
2014-12-27 21:00:48 +09:00
if let Mode::Expression = self.mode {
2015-12-21 10:00:43 +13:00
self.span_diagnostic.span_warn(e.span, "expression");
2014-12-27 21:00:48 +09:00
}
2014-09-17 11:58:11 +12:00
visit::walk_expr(self, e);
2014-02-07 19:50:07 +09:00
}
2014-12-27 21:00:48 +09:00
fn visit_pat(&mut self, p: &ast::Pat) {
if let Mode::Pattern = self.mode {
2015-12-21 10:00:43 +13:00
self.span_diagnostic.span_warn(p.span, "pattern");
2014-12-27 21:00:48 +09:00
}
visit::walk_pat(self, p);
}
fn visit_ty(&mut self, t: &ast::Ty) {
if let Mode::Type = self.mode {
2015-12-21 10:00:43 +13:00
self.span_diagnostic.span_warn(t.span, "type");
2014-12-27 21:00:48 +09:00
}
visit::walk_ty(self, t);
}
2015-01-05 19:13:38 -08:00
fn visit_mac(&mut self, mac: &ast::Mac) {
visit::walk_mac(self, mac);
}
2014-02-07 19:50:07 +09:00
}
pub fn run(span_diagnostic: &errors::Handler,
2014-12-27 21:00:48 +09:00
mode: &str,
krate: &ast::Crate) {
let mode = match mode.parse().ok() {
2014-12-27 21:00:48 +09: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 19:50:07 +09:00
}