# File cli/ruby-debug/commands/stepping.rb, line 60defexecutesteps, force = parse_stepping_args("Step", @match)
returnunlesssteps@state.context.step(steps, force)
@state.proceedend
regexp()click to toggle source
# File cli/ruby-debug/commands/stepping.rb, line 54defregexp/^\s* s(?:tep)?
([+-])?(?:\s+(\S+))?
\s*$/end
Public Class Methods
help(cmd)click to toggle source
# File cli/ruby-debug/commands/stepping.rb, line 72defhelp(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 cli/ruby-debug/commands/stepping.rb, line 68defhelp_command'step'end