| 239 | evaluate(): boolean; |
| 240 | } |
| 241 | class ConstConditionInternal implements ParsedConditionInternal { |
| 242 | value: boolean; |
| 243 | evaluate(): boolean { |
| 244 | return this.value; |
| 245 | } |
| 246 | } |
| 247 | class AndConditionInternal implements ParsedConditionInternal { |
| 248 | children: ParsedConditionInternal[]; |
| 249 | evaluate() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…