@@ -136,6 +136,7 @@ pub trait LateLintPass: LintPass {
136
136
fn check_mod ( & mut self , _: & LateContext , _: & hir:: Mod , _: Span , _: ast:: NodeId ) { }
137
137
fn check_foreign_item ( & mut self , _: & LateContext , _: & hir:: ForeignItem ) { }
138
138
fn check_item ( & mut self , _: & LateContext , _: & hir:: Item ) { }
139
+ fn check_item_post ( & mut self , _: & LateContext , _: & hir:: Item ) { }
139
140
fn check_local ( & mut self , _: & LateContext , _: & hir:: Local ) { }
140
141
fn check_block ( & mut self , _: & LateContext , _: & hir:: Block ) { }
141
142
fn check_block_post ( & mut self , _: & LateContext , _: & hir:: Block ) { }
@@ -180,6 +181,7 @@ pub trait EarlyLintPass: LintPass {
180
181
fn check_mod ( & mut self , _: & EarlyContext , _: & ast:: Mod , _: Span , _: ast:: NodeId ) { }
181
182
fn check_foreign_item ( & mut self , _: & EarlyContext , _: & ast:: ForeignItem ) { }
182
183
fn check_item ( & mut self , _: & EarlyContext , _: & ast:: Item ) { }
184
+ fn check_item_post ( & mut self , _: & EarlyContext , _: & ast:: Item ) { }
183
185
fn check_local ( & mut self , _: & EarlyContext , _: & ast:: Local ) { }
184
186
fn check_block ( & mut self , _: & EarlyContext , _: & ast:: Block ) { }
185
187
fn check_block_post ( & mut self , _: & EarlyContext , _: & ast:: Block ) { }
0 commit comments