Browse Source

Merge pull request #3111 from ElektroKill/fix/debug-customdebuginfo-browser

pull/3122/head
Siegfried Pammer 2 years ago committed by GitHub
parent
commit
4b609782aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      ILSpy/Metadata/DebugTables/CustomDebugInformationTableTreeNode.cs

8
ILSpy/Metadata/DebugTables/CustomDebugInformationTableTreeNode.cs

@ -1,4 +1,4 @@
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team // Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy of this // Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software // software and associated documentation files (the "Software"), to deal in the Software
@ -141,11 +141,11 @@ namespace ICSharpCode.ILSpy.Metadata
} }
if (KnownGuids.DynamicLocalVariables == guid) if (KnownGuids.DynamicLocalVariables == guid)
{ {
return CustomDebugInformationKind.StateMachineHoistedLocalScopes; return CustomDebugInformationKind.DynamicLocalVariables;
} }
if (KnownGuids.DefaultNamespaces == guid) if (KnownGuids.DefaultNamespaces == guid)
{ {
return CustomDebugInformationKind.StateMachineHoistedLocalScopes; return CustomDebugInformationKind.DefaultNamespaces;
} }
if (KnownGuids.EditAndContinueLocalSlotMap == guid) if (KnownGuids.EditAndContinueLocalSlotMap == guid)
{ {
@ -341,4 +341,4 @@ namespace ICSharpCode.ILSpy.Metadata
language.WriteCommentLine(output, "CustomDebugInformation"); language.WriteCommentLine(output, "CustomDebugInformation");
} }
} }
} }

Loading…
Cancel
Save