(id: number)
| 221 | const row = p.row + rowOffset |
| 222 | if (row < 0 || row >= screen.height) return false |
| 223 | const transform = (id: number) => stylePool.withCurrentMatch(id) |
| 224 | const rowOff = row * screen.width |
| 225 | for (let col = p.col; col < p.col + p.len; col++) { |
| 226 | if (col < 0 || col >= screen.width) continue |
no test coverage detected