(text: string, tooltip: string)
| 199 | } |
| 200 | |
| 201 | function showStatusBar(text: string, tooltip: string): void { |
| 202 | if (!statusBarItem) { |
| 203 | statusBarItem = window.createStatusBarItem( |
| 204 | StatusBarAlignment.Left, |
| 205 | 100, |
| 206 | ); |
| 207 | } |
| 208 | statusBarItem.text = text; |
| 209 | statusBarItem.tooltip = tooltip; |
| 210 | statusBarItem.show(); |
| 211 | } |
| 212 | |
| 213 | function updateStatusBar(state: State): void { |
| 214 | switch (state) { |
no outgoing calls
no test coverage detected