(htmlCellId: HTMLCellId)
| 57 | return `cell-${cellId}`; |
| 58 | }, |
| 59 | parse(htmlCellId: HTMLCellId): CellId { |
| 60 | return htmlCellId.slice(5) as CellId; |
| 61 | }, |
| 62 | /** |
| 63 | * Get the cell container ancestor of `element`, if any. |
| 64 | */ |
no test coverage detected
searching dependent graphs…