(tableId, rowId, row)
| 3133 | const willSetTables = (tables) => reduceCallbacks(willSetTablesCallbacks, tables); |
| 3134 | const willSetTable = (tableId, table) => reduceCallbacks(willSetTableCallbacks, table, tableId); |
| 3135 | const willSetRow = (tableId, rowId, row) => reduceCallbacks(willSetRowCallbacks, row, tableId, rowId); |
| 3136 | const willSetCell = (tableId, rowId, cellId, cell) => reduceCallbacks(willSetCellCallbacks, cell, tableId, rowId, cellId); |
| 3137 | const willSetValues = (values) => reduceCallbacks(willSetValuesCallbacks, values); |
| 3138 | const willSetValue = (valueId, value) => reduceCallbacks(willSetValueCallbacks, value, valueId); |
no test coverage detected
searching dependent graphs…