class Byebug::StepCommand


in a different frame. Use step to step into method calls or blocks.
Allows the user the continue execution until the next instruction, possibily
Implements the step functionality.

def description

def description
  %{s[tep][+-]?[ nnn]
    Steps (into methods) once or nnn times.
      '+' forces to move to another line.
      '-' is the opposite of '+' and disables the :forcestep setting.}
end

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

def names

def names
  %w(step)
end

def regexp

def regexp
  /^\s* s(?:tep)?([+-]) ?(?:\s+(\S+))? \s*$/x
end