(builder: (arg: ExpressionBuilder) => AstFactory<Expression>)
| 299 | return this; |
| 300 | } |
| 301 | setLeft(builder: (arg: ExpressionBuilder) => AstFactory<Expression>) { |
| 302 | this.left = builder(ExpressionBuilder()); |
| 303 | this.update({ |
| 304 | left: this.left!, |
| 305 | }); |
| 306 | return this; |
| 307 | } |
| 308 | } |
nothing calls this directly
no test coverage detected