(scope, expression, observerLocator, lookupFunctions)
| 5 | @subscriberCollection() |
| 6 | export class ExpressionObserver { |
| 7 | constructor(scope, expression, observerLocator, lookupFunctions) { |
| 8 | this.scope = scope; |
| 9 | this.expression = expression; |
| 10 | this.observerLocator = observerLocator; |
| 11 | this.lookupFunctions = lookupFunctions; |
| 12 | } |
| 13 | |
| 14 | getValue() { |
| 15 | return this.expression.evaluate(this.scope, this.lookupFunctions); |
nothing calls this directly
no outgoing calls
no test coverage detected