(name)
| 5605 | return this.parent && this.parent.find_owner(name); |
| 5606 | } |
| 5607 | has(name) { |
| 5608 | return this.declarations.has(name) || !!this.parent && this.parent.has(name); |
| 5609 | } |
| 5610 | }; |
| 5611 | function extract_names(param) { |
| 5612 | return extract_identifiers(param).map((node2) => node2.name); |
no outgoing calls
no test coverage detected