| 269 | } |
| 270 | } |
| 271 | class NotConditionInternal implements ParsedConditionInternal { |
| 272 | child: ParsedConditionInternal; |
| 273 | evaluate() { |
| 274 | return !this.child.evaluate(); |
| 275 | } |
| 276 | } |
| 277 | class RelationalConditionInternal implements ParsedConditionInternal { |
| 278 | valueGetterParam: ValueGetterParam; |
| 279 | valueParser: ReturnType<typeof getRawValueParser>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…