( row: PlannedReviewRow, options: PlannedReviewRowLayoutOptions, )
| 69 | |
| 70 | /** Check whether a planned row will produce any visible output at all. */ |
| 71 | export function plannedReviewRowVisible( |
| 72 | row: PlannedReviewRow, |
| 73 | options: PlannedReviewRowLayoutOptions, |
| 74 | ) { |
| 75 | return plannedReviewRowHeight(row, options) > 0; |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Walk one file's planned rows and derive section geometry plus hunk-local bounds. |
no test coverage detected