(tableCallback)
| 3746 | const getParamValue = (queryId, paramId) => paramStore.getCell(PARAMS_TABLE, queryId, paramId); |
| 3747 | const addQueryIdsListener = (listener) => addQueryIdsListenerImpl(() => listener(queries)); |
| 3748 | const forEachResultTable = (tableCallback) => forEachQuery( |
| 3749 | (queryId) => getResultStore(queryId).hasTable(queryId) ? tableCallback( |
| 3750 | queryId, |
| 3751 | (rowCallback) => queries.forEachResultRow(queryId, rowCallback) |
| 3752 | ) : 0 |
| 3753 | ); |
| 3754 | const addParamValuesListener = (queryId, listener) => PARAM_LISTENER_PREFIX + paramStore.addRowListener( |
| 3755 | PARAMS_TABLE, |
| 3756 | queryId, |
nothing calls this directly
no test coverage detected
searching dependent graphs…