(name)
| 22517 | } |
| 22518 | |
| 22519 | get(name) { |
| 22520 | if (this.locals && name in this.locals) { |
| 22521 | return this.locals[name]; |
| 22522 | } |
| 22523 | if (name in this.globals) { |
| 22524 | return this.globals[name]; |
| 22525 | } |
| 22526 | return undefined; |
| 22527 | } |
| 22528 | |
| 22529 | get target() { |
| 22530 | this._target = this._target || []; |
no outgoing calls
no test coverage detected