(target)
| 200 | } |
| 201 | |
| 202 | getCurrentTarget(target) { |
| 203 | if (!target) return null; |
| 204 | const index = this._targets.indexOf(target); |
| 205 | if (index >= 0) return this._targets[index]; |
| 206 | return this.getCurrentTarget(target.parentElement); |
| 207 | } |
| 208 | |
| 209 | show(e) { |
| 210 | if (!this.props.isOpen) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…