noMatch returns the regexpInfo describing a regexp that matches no strings at all.
()
| 401 | // noMatch returns the regexpInfo describing a regexp that |
| 402 | // matches no strings at all. |
| 403 | func noMatch() regexpInfo { |
| 404 | return regexpInfo{ |
| 405 | match: noneQuery, |
| 406 | } |
| 407 | } |
| 408 | |
| 409 | // emptyString returns the regexpInfo describing a regexp that |
| 410 | // matches only the empty string. |
no outgoing calls
no test coverage detected
searching dependent graphs…