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

Method constructor

src/ast.js:26–32  ·  view source on GitHub ↗
(expression, name, args)

Source from the content-addressed store, hash-verified

24
25export class BindingBehavior extends Expression {
26 constructor(expression, name, args) {
27 super();
28
29 this.expression = expression;
30 this.name = name;
31 this.args = args;
32 }
33
34 evaluate(scope, lookupFunctions) {
35 return this.expression.evaluate(scope, lookupFunctions);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected