(id: Id, tableId: Id)
| 97 | }); |
| 98 | |
| 99 | const setDefinition = (id: Id, tableId: Id): void => { |
| 100 | mapSet(tableIds, id, tableId); |
| 101 | if (!collHas(things, id)) { |
| 102 | mapSet(things, id, getDefaultThing()); |
| 103 | mapSet(allRowValues, id, mapNew()); |
| 104 | mapSet(allSortKeys, id, mapNew()); |
| 105 | callListeners(thingIdListeners); |
| 106 | } |
| 107 | }; |
| 108 | |
| 109 | const setDefinitionAndListen = ( |
| 110 | id: Id, |
no test coverage detected
searching dependent graphs…