()
| 2657 | const preStartTransaction = noop; |
| 2658 | const preFinishTransaction = noop; |
| 2659 | const postFinishTransaction = () => { |
| 2660 | collClear(touchedCells); |
| 2661 | collClear(touchedValues); |
| 2662 | }; |
| 2663 | const cellChanged = (tableId, rowId, cellId, newCell, mutating, defaulted) => { |
| 2664 | setAdd( |
| 2665 | mapEnsure(mapEnsure(touchedCells, tableId, mapNew), rowId, setNew), |
nothing calls this directly
no test coverage detected
searching dependent graphs…