Browse Source

According to the ilasm source code "codelabel" is a keyword as well

pull/2276/head
Siegfried Pammer 4 years ago
parent
commit
fb8603e099
  1. 2
      ICSharpCode.Decompiler/Metadata/OperandType.cs

2
ICSharpCode.Decompiler/Metadata/OperandType.cs

@ -94,7 +94,7 @@ namespace ICSharpCode.Decompiler.Metadata @@ -94,7 +94,7 @@ namespace ICSharpCode.Decompiler.Metadata
"vararg", "variant", "vector", "virtual", "void", "wchar", "winapi", "with", "wrapper",
// These are not listed as keywords in spec, but ILAsm treats them as such
"property", "type", "flags", "callconv", "strict",
"property", "type", "flags", "codelabel", "callconv", "strict",
// ILDasm uses these keywords for unsigned integers
"uint8", "uint16", "uint32", "uint64"
);

Loading…
Cancel
Save