| 257 | } |
| 258 | } |
| 259 | class 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 | } |
| 271 | class NotConditionInternal implements ParsedConditionInternal { |
| 272 | child: ParsedConditionInternal; |
| 273 | evaluate() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…