We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28052d2 commit d1a3891Copy full SHA for d1a3891
src/s2_analysis/visitor.rs
@@ -27,10 +27,6 @@ pub trait Visitor<'a> {
27
28
fn enter_component_declaration(&mut self, _comp: &'a ast::ComponentDeclaration) {}
29
fn exit_component_declaration(&mut self, _comp: &'a ast::ComponentDeclaration) {}
30
-
31
- fn walk<T: Visitable<'a> + ?Sized>(&'a mut self, node: &'a T) {
32
- node.accept(self);
33
- }
34
}
35
36
pub trait Visitable<'a> {
0 commit comments