3 overrides of GetDebuggerDisplay
Microsoft.CodeAnalysis.CSharp (3)
Symbols\FunctionTypeSymbol.cs (1)
233internal override string GetDebuggerDisplay()
Symbols\Source\SourceLocalSymbol.cs (1)
101internal override string GetDebuggerDisplay()
Symbols\Synthesized\SynthesizedLocal.cs (1)
217internal sealed override string GetDebuggerDisplay()
9 references to GetDebuggerDisplay
Microsoft.CodeAnalysis.CSharp (9)
BoundTree\BoundNode.cs (3)
506Debug.Assert(false, "duplicate local " + local.GetDebuggerDisplay()); 517Debug.Assert(false, "missing local " + local.GetDebuggerDisplay()); 526Debug.Assert(false, "undeclared local " + local.GetDebuggerDisplay());
BoundTree\BoundNode_Source.cs (2)
102appendLine($"({local.GetDebuggerDisplay()});"); 436append($"({symbol.GetDebuggerDisplay()})");
FlowAnalysis\DefiniteAssignment.VariableIdentifier.cs (1)
107return $"ContainingSlot={ContainingSlot}, Symbol={Symbol.GetDebuggerDisplay()}";
Symbols\FunctionTypeSymbol.cs (1)
235return $"FunctionTypeSymbol: {GetInternalDelegateType()?.GetDebuggerDisplay()}";
Symbols\Source\SourceLocalSymbol.cs (1)
104? base.GetDebuggerDisplay()
Symbols\TypeWithState.cs (1)
77public string GetDebuggerDisplay() => $"{{Type:{Type?.GetDebuggerDisplay()}, State:{State}{"}"}";