MCPcopy Index your code
hub / github.com/microsoft/SandDance / run

Method run

packages/search-expression/src/exec.ts:165–179  ·  view source on GitHub ↗
(datum: object)

Source from the content-addressed store, hash-verified

163 }
164
165 run(datum: object) {
166 let accumulator = this.runGroup(datum, this.groups[0]);
167 for (let i = 1; i < this.groups.length; i++) {
168 const group = this.groups[i];
169 switch (group.clause) {
170 case '&&':
171 accumulator = accumulator && this.runGroup(datum, group);
172 break;
173 case '||':
174 accumulator = accumulator || this.runGroup(datum, group);
175 break;
176 }
177 }
178 return accumulator;
179 }
180}

Callers 7

createUserSelectionMethod · 0.95
updateMethod · 0.45
constructorMethod · 0.45
vegaTimeFormatFunction · 0.45
transformDataMethod · 0.45
updateFunction · 0.45

Calls 1

runGroupMethod · 0.95

Tested by 1

updateMethod · 0.36