Mono.Cecil.Fluent.Analyzer.CodePath.CodePath C# (CSharp) Method

CodePath() private method

private CodePath ( Instruction start, Instruction end, Instruction next, Instruction alternative, MethodBody body ) : System
start Mono.Cecil.Cil.Instruction
end Mono.Cecil.Cil.Instruction
next Mono.Cecil.Cil.Instruction
alternative Mono.Cecil.Cil.Instruction
body Mono.Cecil.Cil.MethodBody
return System
		internal CodePath(Instruction start, Instruction end, Instruction next, Instruction alternative, MethodBody body)
		{
			IncomingPaths = new List<CodePath>();
			StartInstruction = start;
			EndInstruction = end;
			MethodBody = body;
			Next = next;
			Alternatives = alternative == null ? new Instruction[0] : new[] { alternative };
		}