invalidMatcher is a Matcher that always fails to match.
| 197 | |
| 198 | // invalidMatcher is a Matcher that always fails to match. |
| 199 | type invalidMatcher struct{} |
| 200 | |
| 201 | func (invalidMatcher) Match(n *html.Node) bool { return false } |
| 202 | func (invalidMatcher) MatchAll(n *html.Node) []*html.Node { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected