(cell, row)
| 117 | } |
| 118 | |
| 119 | function insertCell(cell, row) { |
| 120 | let x = 0; |
| 121 | while (x < row.length && row[x].x < cell.x) { |
| 122 | x++; |
| 123 | } |
| 124 | row.splice(x, 0, cell); |
| 125 | } |
| 126 | |
| 127 | function fillInTable(table) { |
| 128 | let h_max = maxHeight(table); |
no outgoing calls
no test coverage detected
searching dependent graphs…