28 lines
400 B
C#
28 lines
400 B
C#
|
// dnlib: See LICENSE.txt for more info
|
||
|
|
||
|
namespace dnlib.DotNet.Emit {
|
||
|
/// <summary>
|
||
|
/// CIL opcode flow control
|
||
|
/// </summary>
|
||
|
public enum FlowControl {
|
||
|
/// <summary/>
|
||
|
Branch,
|
||
|
/// <summary/>
|
||
|
Break,
|
||
|
/// <summary/>
|
||
|
Call,
|
||
|
/// <summary/>
|
||
|
Cond_Branch,
|
||
|
/// <summary/>
|
||
|
Meta,
|
||
|
/// <summary/>
|
||
|
Next,
|
||
|
/// <summary/>
|
||
|
Phi,
|
||
|
/// <summary/>
|
||
|
Return,
|
||
|
/// <summary/>
|
||
|
Throw,
|
||
|
}
|
||
|
}
|