MCPcopy Create free account
hub / github.com/sql-js/sql.js / postRun

Function postRun

js/sql-debug.js:1263–1272  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1261}
1262
1263function postRun() {
1264 // compatibility - merge in anything from Module['postRun'] at this time
1265 if (Module['postRun']) {
1266 if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']];
1267 while (Module['postRun'].length) {
1268 addOnPostRun(Module['postRun'].shift());
1269 }
1270 }
1271 callRuntimeCallbacks(__ATPOSTRUN__);
1272}
1273
1274function addOnPreRun(cb) {
1275 __ATPRERUN__.unshift(cb);

Callers 1

doRunFunction · 0.70

Calls 2

addOnPostRunFunction · 0.70
callRuntimeCallbacksFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…