(operation, left, right)
| 426 | |
| 427 | export class Binary extends Expression { |
| 428 | constructor(operation, left, right) { |
| 429 | super(); |
| 430 | |
| 431 | this.operation = operation; |
| 432 | this.left = left; |
| 433 | this.right = right; |
| 434 | } |
| 435 | |
| 436 | evaluate(scope, lookupFunctions) { |
| 437 | let left = this.left.evaluate(scope, lookupFunctions); |
nothing calls this directly
no outgoing calls
no test coverage detected