anyChar returns the regexpInfo describing a regexp that matches any single character.
()
| 391 | // anyChar returns the regexpInfo describing a regexp that |
| 392 | // matches any single character. |
| 393 | func anyChar() regexpInfo { |
| 394 | return regexpInfo{ |
| 395 | prefix: []string{""}, |
| 396 | suffix: []string{""}, |
| 397 | match: allQuery, |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | // noMatch returns the regexpInfo describing a regexp that |
| 402 | // matches no strings at all. |
no outgoing calls
no test coverage detected
searching dependent graphs…