|
|
@ -40,11 +40,19 @@ namespace ICSharpCode.Decompiler.IL |
|
|
|
public readonly InstructionCollection<Block> Blocks; |
|
|
|
public readonly InstructionCollection<Block> Blocks; |
|
|
|
|
|
|
|
|
|
|
|
public StackType ExpectedResultType { get; set; } |
|
|
|
public StackType ExpectedResultType { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int leaveCount; |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the number of 'leave' instructions that target this BlockContainer.
|
|
|
|
/// Gets the number of 'leave' instructions that target this BlockContainer.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
public int LeaveCount { get; internal set; } |
|
|
|
public int LeaveCount { |
|
|
|
|
|
|
|
get => leaveCount; |
|
|
|
|
|
|
|
internal set { |
|
|
|
|
|
|
|
leaveCount = value; |
|
|
|
|
|
|
|
InvalidateFlags(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Block entryPoint; |
|
|
|
Block entryPoint; |
|
|
|
|
|
|
|
|
|
|
|