class Byebug::StepCommand

def execute

def execute
  steps, err = parse_steps(@match[2], 'Steps')
  return errmsg(err) unless steps
  @state.context.step_into(steps, parse_force(@match[1]))
  @state.proceed
end