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 1447e94 commit f9612ceCopy full SHA for f9612ce
src/PowerShellEditorServices/Services/DebugAdapter/Debugging/VariableDetails.cs
@@ -446,7 +446,10 @@ internal class VariableDetailsRawView : VariableDetails
446
{
447
private const string RawViewName = "Raw View";
448
449
- public VariableDetailsRawView(object value) : base(RawViewName, value) { }
+ public VariableDetailsRawView(object value) : base(RawViewName, value)
450
+ {
451
+ }
452
+
453
public override VariableDetailsBase[] GetChildren(ILogger logger)
454
455
List<VariableDetails> childVariables = new();
0 commit comments