IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
OperandType.cs
Go to the documentation of this file.
1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3
4using System;
5
7{
11 internal enum OperandType
12 {
13 InlineBrTarget = 0,
14 InlineField = 1,
15 InlineI = 2,
16 InlineI8 = 3,
17 InlineMethod = 4,
18 InlineNone = 5,
19 [Obsolete("OperandType.InlinePhi has been deprecated and is not supported.")]
20 InlinePhi = 6,
21 InlineR = 7,
22 InlineSig = 9,
23 InlineString = 10,
24 InlineSwitch = 11,
25 InlineTok = 12,
26 InlineType = 13,
27 InlineVar = 14,
28 ShortInlineBrTarget = 15,
29 ShortInlineI = 16,
30 ShortInlineR = 17,
31 ShortInlineVar = 18,
32 }
33}