(
exprOption: ConditionalExpressionOption,
getters: ConditionalGetters
)
| 451 | private _cond: ParsedConditionInternal; |
| 452 | |
| 453 | constructor( |
| 454 | exprOption: ConditionalExpressionOption, |
| 455 | getters: ConditionalGetters |
| 456 | ) { |
| 457 | this._cond = parseOption(exprOption, getters); |
| 458 | } |
| 459 | |
| 460 | evaluate(): boolean { |
| 461 | return this._cond.evaluate(); |
nothing calls this directly
no test coverage detected