MCPcopy
hub / github.com/microsoft/SandDance / run

Method run

docs/app/js/sanddance-app.js:6330–6344  ·  view source on GitHub ↗
(datum)

Source from the content-addressed store, hash-verified

6328 return accumulator;
6329 }
6330 run(datum) {
6331 let accumulator = this.runGroup(datum, this.groups[0]);
6332 for(let i = 1; i < this.groups.length; i++){
6333 let group = this.groups[i];
6334 switch(group.clause){
6335 case "&&":
6336 accumulator = accumulator && this.runGroup(datum, group);
6337 break;
6338 case "||":
6339 accumulator = accumulator || this.runGroup(datum, group);
6340 break;
6341 }
6342 }
6343 return accumulator;
6344 }
6345}
6346
6347},{"./group":"1mCdR","@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"aV5tK":[function(require,module,exports) {

Callers 11

constructorMethod · 0.45
transformDataMethod · 0.45
createUserSelectionMethod · 0.45
drainQueueFunction · 0.45
sanddance-app.jsFile · 0.45
debounceFunction · 0.45
sendFunction · 0.45
evaluateFunction · 0.45
rerunFunction · 0.45
resizeViewFunction · 0.45
modifyFunction · 0.45

Calls 1

runGroupMethod · 0.95

Tested by

no test coverage detected