* @param lineIdx the 0-based line number of the tested line in the whole diff * @returns true if the line is part of the diff and false otherwise * @note: Returns true also for the header line (the one starting with `@@`) */
| 58 | * @note: Returns true also for the header line (the one starting with `@@`) |
| 59 | */ |
| 60 | bool containsDiffLine(uint lineIdx) const { return headingLineIdx <= lineIdx && lineIdx <= lastLineIdx(); } |
| 61 | |
| 62 | /** |
| 63 | * Returns the index of the line within the hunk |
no outgoing calls
no test coverage detected