You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/PowerShellEditorServices.Protocol/DebugAdapter/Variable.cs
+6
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,11 @@ public class Variable
12
12
// /** The variable's value. For structured objects this can be a multi line text, e.g. for a function the body of a function. */
13
13
publicstringValue{get;set;}
14
14
15
+
/// <summary>
16
+
/// Gets or sets the evaluatable name for the variable that will be evaluated by the debugger.
17
+
/// </summary>
18
+
publicstringEvaluateName{get;set;}
19
+
15
20
// /** If variablesReference is > 0, the variable is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. */
16
21
publicintVariablesReference{get;set;}
17
22
@@ -21,6 +26,7 @@ public static Variable Create(VariableDetailsBase variable)
0 commit comments