(observerLocator, targetProperty, sourceExpression,
mode, lookupFunctions, attribute)
| 5 | |
| 6 | export 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( |
nothing calls this directly
no outgoing calls
no test coverage detected