Browse Source

Fix missing VariableKind in ILVariable.WriteDefinitionTo

pull/863/head
Siegfried Pammer 8 years ago
parent
commit
1ac501acc9
  1. 3
      ICSharpCode.Decompiler/IL/ILVariable.cs

3
ICSharpCode.Decompiler/IL/ILVariable.cs

@ -298,6 +298,9 @@ namespace ICSharpCode.Decompiler.IL
case VariableKind.StackSlot:
output.Write("stack ");
break;
case VariableKind.InitializerTarget:
output.Write("initializer ");
break;
default:
throw new ArgumentOutOfRangeException();
}

Loading…
Cancel
Save