(observerLocator, sourceExpression, target, targetProperty, mode, lookupFunctions)
| 30 | @connectable() |
| 31 | export 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); |
nothing calls this directly
no outgoing calls
no test coverage detected