(name, ancestor)
| 212 | |
| 213 | export 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); |
nothing calls this directly
no outgoing calls
no test coverage detected