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

Method constructor

src/binding-expression.js:7–16  ·  view source on GitHub ↗
(observerLocator, targetProperty, sourceExpression,
    mode, lookupFunctions, attribute)

Source from the content-addressed store, hash-verified

5
6export class BindingExpression {
7 constructor(observerLocator, targetProperty, sourceExpression,
8 mode, lookupFunctions, attribute) {
9 this.observerLocator = observerLocator;
10 this.targetProperty = targetProperty;
11 this.sourceExpression = sourceExpression;
12 this.mode = mode;
13 this.lookupFunctions = lookupFunctions;
14 this.attribute = attribute;
15 this.discrete = false;
16 }
17
18 createBinding(target) {
19 return new Binding(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected