(operator: UnaryOperator<any> | BinaryOperator<any>)
| 34 | } |
| 35 | |
| 36 | addOperator(operator: UnaryOperator<any> | BinaryOperator<any>): void { |
| 37 | this.#checkNotFinalized() |
| 38 | this.#operators.push(operator) |
| 39 | } |
| 40 | |
| 41 | finalize() { |
| 42 | this.#checkNotFinalized() |
no test coverage detected