File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -422,6 +422,16 @@ pub trait VisitorMut {
422
422
ControlFlow :: Continue ( ( ) )
423
423
}
424
424
425
+ /// Invoked for any Identifier that appear in the AST before visiting children
426
+ fn pre_visit_ident ( & mut self , _ident : & mut Ident ) -> ControlFlow < Self :: Break > {
427
+ ControlFlow :: Continue ( ( ) )
428
+ }
429
+
430
+ /// Invoked for any Identifier that appear in the AST after visiting children
431
+ fn post_visit_ident ( & mut self , _ident : & mut Ident ) -> ControlFlow < Self :: Break > {
432
+ ControlFlow :: Continue ( ( ) )
433
+ }
434
+
425
435
/// Invoked for any functions that appear in the AST before visiting children
426
436
fn pre_visit_function ( & mut self , _function : & mut Function ) -> ControlFlow < Self :: Break > {
427
437
ControlFlow :: Continue ( ( ) )
You can’t perform that action at this time.
0 commit comments