(object, key)
| 280 | |
| 281 | export 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); |
nothing calls this directly
no outgoing calls
no test coverage detected