We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f257e7 commit b51a268Copy full SHA for b51a268
src/PowerShellEditorServices/Services/DebugAdapter/Debugging/VariableDetails.cs
@@ -436,7 +436,10 @@ internal class VariableDetailsRawView : VariableDetails
436
{
437
private const string RawViewName = "Raw View";
438
439
- public VariableDetailsRawView(object value) : base(RawViewName, value) { }
+ public VariableDetailsRawView(object value) : base(RawViewName, value)
440
+ {
441
+ }
442
+
443
public override VariableDetailsBase[] GetChildren(ILogger logger)
444
445
List<VariableDetails> childVariables = new();
0 commit comments