get children when node expands (#201909)

* get children when node expands

* switch to asynchronous tree for more natural lazy loading

* store variables by ID so we can look up the correct instance
This commit is contained in:
Aaron Munger
2024-01-05 15:44:43 -08:00
committed by GitHub
parent bff3ef7651
commit f88bce8fe6
13 changed files with 164 additions and 94 deletions

View File

@@ -16,7 +16,7 @@ declare module 'vscode' {
interface VariablesResult {
variable: Variable;
namedChildrenCount: number;
hasNamedChildren: boolean;
indexedChildrenCount: number;
}