| 236 | } |
| 237 | |
| 238 | interface ParsedConditionInternal { |
| 239 | evaluate(): boolean; |
| 240 | } |
| 241 | class ConstConditionInternal implements ParsedConditionInternal { |
| 242 | value: boolean; |
| 243 | evaluate(): boolean { |
no outgoing calls
no test coverage detected
searching dependent graphs…