(col)
| 29 | return this.cells[col] || this.createCell(col); |
| 30 | }, |
| 31 | createCell(col) { |
| 32 | const address = colCache.encodeAddress(this.number, col); |
| 33 | const column = sheetMock.getColumn(col); |
| 34 | return (this.cells[col] = new Cell(this, column, address)); |
| 35 | }, |
| 36 | number: num, |
| 37 | get worksheet() { |
| 38 | return sheetMock; |
nothing calls this directly
no test coverage detected
searching dependent graphs…