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

Method constructor

src/ast.js:214–220  ·  view source on GitHub ↗
(name, ancestor)

Source from the content-addressed store, hash-verified

212
213export class AccessScope extends Expression {
214 constructor(name, ancestor) {
215 super();
216
217 this.name = name;
218 this.ancestor = ancestor;
219 this.isAssignable = true;
220 }
221
222 evaluate(scope, lookupFunctions) {
223 let context = getContextFor(this.name, scope, this.ancestor);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected