(addressStr)
| 69 | |
| 70 | // get all the names of a cell |
| 71 | getNames(addressStr) { |
| 72 | return this.getNamesEx(colCache.decodeEx(addressStr)); |
| 73 | } |
| 74 | |
| 75 | getNamesEx(address) { |
| 76 | return _.map(this.matrixMap, (matrix, name) => matrix.findCellEx(address) && name).filter( |
nothing calls this directly
no test coverage detected