min static method

Implementation

static Breakpoint min(Breakpoint a, Breakpoint b) {
  if (a < b) return a;
  return b;
}