-------------------------------------------------------------------------
| 73 | |
| 74 | //------------------------------------------------------------------------- |
| 75 | bool UnifiedDiffCoverageFilter::IsLineSelected(const std::filesystem::path& path, int lineNumber) |
| 76 | { |
| 77 | auto file = SearchFile(path); |
| 78 | |
| 79 | if (!file) |
| 80 | return false; |
| 81 | |
| 82 | return file->IsLineSelected(lineNumber); |
| 83 | } |
| 84 | |
| 85 | //------------------------------------------------------------------------- |
| 86 | File* UnifiedDiffCoverageFilter::SearchFile(const std::filesystem::path& path) |
nothing calls this directly
no outgoing calls
no test coverage detected