()
| 133 | } |
| 134 | |
| 135 | function openInTab() { |
| 136 | const refs = state.references; |
| 137 | const sym = state.symbolName; |
| 138 | hide(); |
| 139 | openReferencesTab({ |
| 140 | symbolName: sym, |
| 141 | references: refs, |
| 142 | }); |
| 143 | } |
| 144 | |
| 145 | function toggleFile(uri) { |
| 146 | if (state.collapsedFiles.has(uri)) { |
nothing calls this directly
no test coverage detected