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

Method constructor

src/expression-observer.js:7–12  ·  view source on GitHub ↗
(scope, expression, observerLocator, lookupFunctions)

Source from the content-addressed store, hash-verified

5@subscriberCollection()
6export 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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected