(node Node)
| 90 | // See also: Walk(), Inspect(), Inspector |
| 91 | type Visitor interface { |
| 92 | Visit(node Node) (w Visitor, err error) |
| 93 | } |
| 94 | |
| 95 | // Walk traverses an AST in depth-first order using the visitor pattern. |
no outgoing calls
no test coverage detected