(otherTableHashes: TableHashes)
| 518 | }; |
| 519 | |
| 520 | const getMergeableRowHashes = (otherTableHashes: TableHashes): RowHashes => { |
| 521 | const rowHashes: RowHashes = {}; |
| 522 | objForEach(otherTableHashes, (otherTableHash, tableId) => |
| 523 | ifNotUndefined( |
| 524 | mapGet(contentStampMap[0][0], tableId), |
| 525 | ([rowStampMaps, , tableHash]) => |
| 526 | tableHash != otherTableHash |
| 527 | ? mapForEach( |
| 528 | rowStampMaps, |
| 529 | (rowId, [, , rowHash]) => |
| 530 | (objEnsure(rowHashes, tableId, objNew)[rowId] = rowHash), |
| 531 | ) |
| 532 | : 0, |
| 533 | ), |
| 534 | ); |
| 535 | return rowHashes; |
| 536 | }; |
| 537 | |
| 538 | const getMergeableRowDiff = ( |
| 539 | otherTableRowHashes: RowHashes, |
nothing calls this directly
no test coverage detected
searching dependent graphs…