Browse Source

Fix tooltip of embedded source custom debug info.

pull/1967/head
Siegfried Pammer 6 years ago
parent
commit
5161f191c0
  1. 2
      ILSpy/Metadata/DebugTables/CustomDebugInformationTableTreeNode.cs

2
ILSpy/Metadata/DebugTables/CustomDebugInformationTableTreeNode.cs

@ -120,7 +120,7 @@ namespace ICSharpCode.ILSpy.Metadata @@ -120,7 +120,7 @@ namespace ICSharpCode.ILSpy.Metadata
return "Edit And Continue Lambda And Closure Map (C# / VB) [" + guid + "]";
}
if (KnownGuids.EmbeddedSource == guid) {
return "State Machine Hoisted Local Scopes (C# / VB) [" + guid + "]";
return "Embedded Source (C# / VB) [" + guid + "]";
}
if (KnownGuids.SourceLink == guid) {
return "Source Link (C# / VB) [" + guid + "]";

Loading…
Cancel
Save