Visitor is a function that processes, observes, or otherwise transforms the given node
func(*FileNode) error
| 188 | |
| 189 | // Visitor is a function that processes, observes, or otherwise transforms the given node |
| 190 | type Visitor func(*FileNode) error |
| 191 | |
| 192 | // VisitEvaluator is a function that indicates whether the given node should be visited by a Visitor. |
| 193 | type VisitEvaluator func(*FileNode) bool |
nothing calls this directly
no outgoing calls
no test coverage detected