()
| 346 | } |
| 347 | |
| 348 | public getTreeItem(): TreeItem | Promise<TreeItem> { |
| 349 | const state = TreeItemCollapsibleState.None; |
| 350 | const tmp = 'Hint: Use & Enable "liveWatch" in your launch.json to enable this panel'; |
| 351 | const label: vscode.TreeItemLabel = { |
| 352 | label: tmp + (this.empty ? ', and use the \'+\' button above to add new expressions' : '') |
| 353 | }; |
| 354 | const item = new TreeItem(label, state); |
| 355 | item.contextValue = this.isRootChild() ? 'expression' : 'field'; |
| 356 | item.tooltip = '~' + label.label + '~'; |
| 357 | return item; |
| 358 | } |
| 359 | |
| 360 | public getChildren(): LiveVariableNode[] { |
| 361 | return []; |
nothing calls this directly
no test coverage detected