()
| 51 | return { |
| 52 | dom: tooltipContainer, |
| 53 | mount() { |
| 54 | channel.on('tsserver:cell:quickinfo:response', callback); |
| 55 | channel.push('tsserver:cell:quickinfo:request', { |
| 56 | cellId: cell.id, |
| 57 | request: { location: mapCMLocationToTsServer(cell.source, pos) }, |
| 58 | }); |
| 59 | }, |
| 60 | destroy() { |
| 61 | channel.off('tsserver:cell:quickinfo:response', callback); |
| 62 | }, |
nothing calls this directly
no test coverage detected