| 3 | import "github.com/sqlc-dev/sqlc/internal/sql/ast" |
| 4 | |
| 5 | type nodeSearch struct { |
| 6 | list *ast.List |
| 7 | check func(ast.Node) bool |
| 8 | } |
| 9 | |
| 10 | func (s *nodeSearch) Visit(node ast.Node) Visitor { |
| 11 | if s.check(node) { |
nothing calls this directly
no outgoing calls
no test coverage detected