()
| 1926 | getTransactionChangesImpl(true); |
| 1927 | |
| 1928 | const getTransactionLog = (): TransactionLog => [ |
| 1929 | !collIsEmpty(changedCells), |
| 1930 | !collIsEmpty(changedValues), |
| 1931 | mapToObj3(changedCells, pairClone, pairIsEqual), |
| 1932 | mapToObj3(invalidCells), |
| 1933 | mapToObj(changedValues, pairClone, pairIsEqual), |
| 1934 | mapToObj(invalidValues), |
| 1935 | mapToObj(changedTableIds), |
| 1936 | mapToObj2(changedRowIds), |
| 1937 | mapToObj3(changedCellIds), |
| 1938 | mapToObj(changedValueIds), |
| 1939 | ]; |
| 1940 | |
| 1941 | const finishTransaction = (doRollback?: DoRollback): Store => { |
| 1942 | if (transactions > 0) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…