(col: number, row: number, cellIsBlank: boolean)
| 30 | readonly cellIsBlank: boolean |
| 31 | |
| 32 | constructor(col: number, row: number, cellIsBlank: boolean) { |
| 33 | super() |
| 34 | this.col = col |
| 35 | this.row = row |
| 36 | this.cellIsBlank = cellIsBlank |
| 37 | } |
| 38 | } |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected