(object, name)
| 241 | |
| 242 | export 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); |
nothing calls this directly
no outgoing calls
no test coverage detected