C# Class Cilador.Clone.MultiplexedConstructor.InstructionGroup

This type is used to gather groups of instructions that are potential calls to base or chained constructors.
Show file Open project: rileywhite/Cilador

Public Methods

Method Description
TryGetNext ( IList sourceInstructions, int firstIndex, InstructionGroup &instructionGroup ) : bool

Grabs the next group of instructions that could potentially be a base or chained construtor call.

Private Methods

Method Description
InstructionGroup ( int firstIndex, int lastIndex, List instructions ) : System

Creates a new InstructionGroup.

Method Details

TryGetNext() public static method

Grabs the next group of instructions that could potentially be a base or chained construtor call.
public static TryGetNext ( IList sourceInstructions, int firstIndex, InstructionGroup &instructionGroup ) : bool
sourceInstructions IList Source instructions to look at.
firstIndex int Index of the first instruction to look at.
instructionGroup InstructionGroup Output parameter to contain the results.
return bool