emptyStringMatcher matches an empty string.
| 794 | |
| 795 | // emptyStringMatcher matches an empty string. |
| 796 | type emptyStringMatcher struct{} |
| 797 | |
| 798 | func (emptyStringMatcher) Matches(s string) bool { |
| 799 | return s == "" |
nothing calls this directly
no outgoing calls
no test coverage detected