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

Method constructor

src/binding-expression.js:32–39  ·  view source on GitHub ↗
(observerLocator, sourceExpression, target, targetProperty, mode, lookupFunctions)

Source from the content-addressed store, hash-verified

30@connectable()
31export class Binding {
32 constructor(observerLocator, sourceExpression, target, targetProperty, mode, lookupFunctions) {
33 this.observerLocator = observerLocator;
34 this.sourceExpression = sourceExpression;
35 this.target = target;
36 this.targetProperty = targetProperty;
37 this.mode = mode;
38 this.lookupFunctions = lookupFunctions;
39 }
40
41 updateTarget(value) {
42 this.targetObserver.setValue(value, this.target, this.targetProperty);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected