MCPcopy Create free account
hub / github.com/aurelia/binding / constructor

Method constructor

src/ast.js:392–397  ·  view source on GitHub ↗
(func, args)

Source from the content-addressed store, hash-verified

390
391export 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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected