File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ macro_rules! visit_nodes {
37
37
/// use plc_ast::ast::AstNode;
38
38
/// use plc_ast::visitor::Walker;
39
39
/// use plc_ast::visitor::AstVisitor;
40
- ///
40
+ ///
41
41
/// struct MyAssignment {
42
42
/// left: AstNode,
43
43
/// right: AstNode,
44
44
/// }
45
- ///
45
+ ///
46
46
/// impl Walker for MyAssignment {
47
47
/// fn walk<V>(&self, visitor: &mut V)
48
48
/// where
@@ -60,8 +60,6 @@ pub trait Walker {
60
60
V : AstVisitor ;
61
61
}
62
62
63
-
64
-
65
63
/// The `AstVisitor` trait provides a set of methods for visiting different types of AST nodes.
66
64
/// Implementors can individually override the methods they are interested in. When overriding a method,
67
65
/// make sure to call `walk` on the visited statement to visit its children. DO NOT call walk on
You can’t perform that action at this time.
0 commit comments