| 76 | } |
| 77 | |
| 78 | void grepPath(SearchParameters const& search, String path) { |
| 79 | if (File::isFile(path)) { |
| 80 | grepMap(search, path); |
| 81 | } else if (File::isDirectory(path)) { |
| 82 | grepDirectory(search, path); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | MatchCriteria parseMatchCriteria(String const& criteriaStr) { |
| 87 | if (criteriaStr.contains("=")) { |
no test coverage detected