class Byebug::StepCommand

def execute

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