3 overrides of GetDebuggerDisplay
Microsoft.CodeAnalysis.CSharp (3)
Symbols\FunctionTypeSymbol.cs (1)
227internal override string GetDebuggerDisplay()
Symbols\Source\SourceLocalSymbol.cs (1)
102internal override string GetDebuggerDisplay()
Symbols\Synthesized\SynthesizedLocal.cs (1)
214internal sealed override string GetDebuggerDisplay()
9 references to GetDebuggerDisplay
Microsoft.CodeAnalysis.CSharp (9)
BoundTree\BoundNode.cs (3)
451Debug.Assert(false, "duplicate local " + local.GetDebuggerDisplay()); 462Debug.Assert(false, "missing local " + local.GetDebuggerDisplay()); 471Debug.Assert(false, "undeclared local " + local.GetDebuggerDisplay());
BoundTree\BoundNode_Source.cs (2)
87appendLine($"({local.GetDebuggerDisplay()});"); 415append($"({symbol.GetDebuggerDisplay()})");
FlowAnalysis\DefiniteAssignment.VariableIdentifier.cs (1)
107return $"ContainingSlot={ContainingSlot}, Symbol={Symbol.GetDebuggerDisplay()}";
Symbols\FunctionTypeSymbol.cs (1)
229return $"FunctionTypeSymbol: {GetInternalDelegateType()?.GetDebuggerDisplay()}";
Symbols\Source\SourceLocalSymbol.cs (1)
105? base.GetDebuggerDisplay()
Symbols\TypeWithState.cs (1)
77public string GetDebuggerDisplay() => $"{{Type:{Type?.GetDebuggerDisplay()}, State:{State}{"}"}";