(func, args)
| 390 | |
| 391 | export class CallFunction extends Expression { |
| 392 | constructor(func, args) { |
| 393 | super(); |
| 394 | |
| 395 | this.func = func; |
| 396 | this.args = args; |
| 397 | } |
| 398 | |
| 399 | evaluate(scope, lookupFunctions, mustEvaluate) { |
| 400 | let func = this.func.evaluate(scope, lookupFunctions); |
nothing calls this directly
no outgoing calls
no test coverage detected