Skip to content

Commit a658211

Browse files
author
Ariel Ben-Yehuda
authored
Rollup merge of rust-lang#40315 - oli-obk:lint_body, r=eddyb
Allow lints to check Bodys directly r? @eddyb babysteps towards fixing https://github.com/Manishearth/rust-clippy/issues/1580 (disable certain lints in const environments, since they make no sense there (yet))
2 parents 66d9eba + b959d13 commit a658211

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/librustc/lint/context.rs

+6
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,12 @@ impl<'a, 'tcx> hir_visit::Visitor<'tcx> for LateContext<'a, 'tcx> {
806806
self.tables = old_tables;
807807
}
808808

809+
fn visit_body(&mut self, body: &'tcx hir::Body) {
810+
run_lints!(self, check_body, late_passes, body);
811+
hir_visit::walk_body(self, body);
812+
run_lints!(self, check_body_post, late_passes, body);
813+
}
814+
809815
fn visit_item(&mut self, it: &'tcx hir::Item) {
810816
self.with_lint_attrs(&it.attrs, |cx| {
811817
run_lints!(cx, check_item, late_passes, it);

src/librustc/lint/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ pub trait LintPass {
133133
// FIXME: eliminate the duplication with `Visitor`. But this also
134134
// contains a few lint-specific methods with no equivalent in `Visitor`.
135135
pub trait LateLintPass<'a, 'tcx>: LintPass {
136+
fn check_body(&mut self, _: &LateContext, _: &'tcx hir::Body) { }
137+
fn check_body_post(&mut self, _: &LateContext, _: &'tcx hir::Body) { }
136138
fn check_name(&mut self, _: &LateContext, _: Span, _: ast::Name) { }
137139
fn check_crate(&mut self, _: &LateContext<'a, 'tcx>, _: &'tcx hir::Crate) { }
138140
fn check_crate_post(&mut self, _: &LateContext<'a, 'tcx>, _: &'tcx hir::Crate) { }

0 commit comments

Comments
 (0)