public bool IsCatchEnd(Instruction instruction) => Catch.Any(c => methodInstructionComparer.Equals(instruction, c.End));
public bool IsCatchStart(Instruction instruction) => Catch.Any(c => methodInstructionComparer.Equals(instruction, c.Start));