1
Fork 0
rust/src/libsyntax/show_span.rs

71 lines
1.6 KiB
Rust
Raw Normal View History

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;
2019-02-07 02:33:01 +09:00
use crate::ast;
use crate::visit;
use crate::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,
2019-12-22 17:42:04 -05:00
_ => 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
}
impl<'a> Visitor<'a> for ShowSpanVisitor<'a> {
fn visit_expr(&mut self, e: &'a 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
}
fn visit_pat(&mut self, p: &'a ast::Pat) {
2014-12-27 21:00:48 +09:00
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: &'a ast::Ty) {
2014-12-27 21:00:48 +09:00
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);
}
fn visit_mac(&mut self, mac: &'a ast::Mac) {
2015-01-05 19:13:38 -08:00
visit::walk_mac(self, mac);
}
2014-02-07 19:50:07 +09:00
}
2019-12-22 17:42:04 -05:00
pub fn run(span_diagnostic: &errors::Handler, mode: &str, krate: &ast::Crate) {
let mode = match mode.parse().ok() {
2014-12-27 21:00:48 +09:00
Some(mode) => mode,
2019-12-22 17:42:04 -05:00
None => return,
2014-12-27 21:00:48 +09:00
};
2019-12-22 17:42:04 -05:00
let mut v = ShowSpanVisitor { span_diagnostic, mode };
visit::walk_crate(&mut v, krate);
2014-02-07 19:50:07 +09:00
}