add expression field to help access non-root variables (#205400)

This commit is contained in:
Aaron Munger
2024-02-16 12:46:29 -08:00
committed by GitHub
parent 49f6e8bf9e
commit 6077d59e42
3 changed files with 6 additions and 1 deletions

View File

@@ -39,6 +39,9 @@ declare module 'vscode' {
*/
value: string;
/** The code that represents how the variable would be accessed in the runtime environment */
expression?: string;
/** The type of the variable's value */
type?: string;