@@ -136,6 +136,7 @@ pub trait LateLintPass: LintPass {
136136 fn check_mod ( & mut self , _: & LateContext , _: & hir:: Mod , _: Span , _: ast:: NodeId ) { }
137137 fn check_foreign_item ( & mut self , _: & LateContext , _: & hir:: ForeignItem ) { }
138138 fn check_item ( & mut self , _: & LateContext , _: & hir:: Item ) { }
139+ fn check_item_post ( & mut self , _: & LateContext , _: & hir:: Item ) { }
139140 fn check_local ( & mut self , _: & LateContext , _: & hir:: Local ) { }
140141 fn check_block ( & mut self , _: & LateContext , _: & hir:: Block ) { }
141142 fn check_block_post ( & mut self , _: & LateContext , _: & hir:: Block ) { }
@@ -180,6 +181,7 @@ pub trait EarlyLintPass: LintPass {
180181 fn check_mod ( & mut self , _: & EarlyContext , _: & ast:: Mod , _: Span , _: ast:: NodeId ) { }
181182 fn check_foreign_item ( & mut self , _: & EarlyContext , _: & ast:: ForeignItem ) { }
182183 fn check_item ( & mut self , _: & EarlyContext , _: & ast:: Item ) { }
184+ fn check_item_post ( & mut self , _: & EarlyContext , _: & ast:: Item ) { }
183185 fn check_local ( & mut self , _: & EarlyContext , _: & ast:: Local ) { }
184186 fn check_block ( & mut self , _: & EarlyContext , _: & ast:: Block ) { }
185187 fn check_block_post ( & mut self , _: & EarlyContext , _: & ast:: Block ) { }
0 commit comments