MCPcopy Index your code
hub / github.com/sql-js/sql.js / removeRunDependency

Function removeRunDependency

js/sql-debug.js:1410–1426  ·  view source on GitHub ↗
(id)

Source from the content-addressed store, hash-verified

1408Module["addRunDependency"] = addRunDependency;
1409
1410function removeRunDependency(id) {
1411 runDependencies--;
1412 if (Module['monitorRunDependencies']) {
1413 Module['monitorRunDependencies'](runDependencies);
1414 }
1415 if (runDependencies == 0) {
1416 if (runDependencyWatcher !== null) {
1417 clearInterval(runDependencyWatcher);
1418 runDependencyWatcher = null;
1419 }
1420 if (dependenciesFulfilled) {
1421 var callback = dependenciesFulfilled;
1422 dependenciesFulfilled = null;
1423 callback(); // can add another dependenciesFulfilled
1424 }
1425 }
1426}
1427Module["removeRunDependency"] = removeRunDependency;
1428
1429Module["preloadedImages"] = {}; // maps url to image data

Callers 3

finishFunction · 0.70
processDataFunction · 0.70
applyMemoryInitializerFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…