Browse Source

fix code mappings for IL

pull/191/merge
Eusebiu Marcu 15 years ago
parent
commit
e184c73f2d
  1. 1
      ICSharpCode.Decompiler/Disassembler/ReflectionDisassembler.cs

1
ICSharpCode.Decompiler/Disassembler/ReflectionDisassembler.cs

@ -316,6 +316,7 @@ namespace ICSharpCode.Decompiler.Disassembler @@ -316,6 +316,7 @@ namespace ICSharpCode.Decompiler.Disassembler
public void DisassembleType(TypeDefinition type)
{
// create IL code mappings - used for debugger
if (this.CodeMappings == null)
this.CodeMappings = new Tuple<string, List<MemberMapping>>(type.FullName, new List<MemberMapping>());
// start writing IL

Loading…
Cancel
Save