MCPcopy
hub / github.com/apache/echarts / OrConditionInternal

Class OrConditionInternal

src/util/conditionalExpression.ts:259–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

257 }
258}
259class OrConditionInternal implements ParsedConditionInternal {
260 children: ParsedConditionInternal[];
261 evaluate() {
262 const children = this.children;
263 for (let i = 0; i < children.length; i++) {
264 if (children[i].evaluate()) {
265 return true;
266 }
267 }
268 return false;
269 }
270}
271class NotConditionInternal implements ParsedConditionInternal {
272 child: ParsedConditionInternal;
273 evaluate() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…