()
| 10 | |
| 11 | class ReactComponentPicker { |
| 12 | constructor() { |
| 13 | this.isActive = false; |
| 14 | this.overlay = null; |
| 15 | this.tooltip = null; |
| 16 | this.currentElement = null; |
| 17 | this.boundMouseOver = this.handleMouseOver.bind(this); |
| 18 | this.boundClick = this.handleClick.bind(this); |
| 19 | this.boundKeyDown = this.handleKeyDown.bind(this); |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Activate selection mode |
nothing calls this directly
no outgoing calls
no test coverage detected