Parent

Debugger::StepCommand

Implements debugger “step” command.

Public Class Methods

help(cmd) click to toggle source
# File lib/ruby-debug/commands/stepping.rb, line 72
def help(cmd)
  %{
    s[tep][+-]?[ nnn]\tstep (into methods) once or nnn times
    \t\t'+' forces to move to another line.
    \t\t'-' is the opposite of '+' and disables the force_stepping setting.
  }
end
help_command() click to toggle source
# File lib/ruby-debug/commands/stepping.rb, line 68
def help_command
  'step'
end

Public Instance Methods

execute() click to toggle source
# File lib/ruby-debug/commands/stepping.rb, line 60
def execute
  steps, force = parse_stepping_args("Step", @match)
  return unless steps
  @state.context.step(steps, force)
  @state.proceed
end
regexp() click to toggle source
# File lib/ruby-debug/commands/stepping.rb, line 54
def regexp
  /^\s* s(?:tep)?
    ([+-])?(?:\s+(\S+))?
    \s*$/
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.