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

Method constructor

src/ast.js:243–249  ·  view source on GitHub ↗
(object, name)

Source from the content-addressed store, hash-verified

241
242export class AccessMember extends Expression {
243 constructor(object, name) {
244 super();
245
246 this.object = object;
247 this.name = name;
248 this.isAssignable = true;
249 }
250
251 evaluate(scope, lookupFunctions) {
252 let instance = this.object.evaluate(scope, lookupFunctions);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected