(tableId: Id)
| 876 | }; |
| 877 | |
| 878 | const getOrCreateTable = (tableId: Id) => |
| 879 | mapEnsure(tablesMap, tableId, () => { |
| 880 | tableIdsChanged(tableId, 1); |
| 881 | mapSet(tablePoolFunctions, tableId, getPoolFunctions()); |
| 882 | mapSet(tableCellIds, tableId, mapNew()); |
| 883 | return mapNew(); |
| 884 | }); |
| 885 | |
| 886 | const delValidTable = (tableId: Id): TableMap => { |
| 887 | if (whileMutating(() => middleware[8]?.(tableId)) ?? true) { |
no test coverage detected
searching dependent graphs…