| 142 | } |
| 143 | |
| 144 | inline bool checkIsSourceInclude() const { |
| 145 | return checkIsIncludePattern() && String::startsWith( patterns[1], "source." ); |
| 146 | } |
| 147 | |
| 148 | inline bool checkIsRepositoryInclude() const { |
| 149 | return checkIsIncludePattern() && patterns[1][0] == '#'; |
nothing calls this directly
no test coverage detected