(builder: (arg: ExpressionBuilder) => AstFactory<Expression>)
| 292 | return this; |
| 293 | } |
| 294 | setRight(builder: (arg: ExpressionBuilder) => AstFactory<Expression>) { |
| 295 | this.right = builder(ExpressionBuilder()); |
| 296 | this.update({ |
| 297 | right: this.right!, |
| 298 | }); |
| 299 | return this; |
| 300 | } |
| 301 | setLeft(builder: (arg: ExpressionBuilder) => AstFactory<Expression>) { |
| 302 | this.left = builder(ExpressionBuilder()); |
| 303 | this.update({ |
nothing calls this directly
no test coverage detected