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

Method constructor

src/ast.js:282–288  ·  view source on GitHub ↗
(object, key)

Source from the content-addressed store, hash-verified

280
281export class AccessKeyed extends Expression {
282 constructor(object, key) {
283 super();
284
285 this.object = object;
286 this.key = key;
287 this.isAssignable = true;
288 }
289
290 evaluate(scope, lookupFunctions) {
291 let instance = this.object.evaluate(scope, lookupFunctions);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected