# File cli/ruby-debug/commands/stepping.rb, line 27defexecutesteps, force = parse_stepping_args("Next", @match)
returnunlesssteps@state.context.step_oversteps, @state.frame_pos, force@state.proceedend
regexp()click to toggle source
# File cli/ruby-debug/commands/stepping.rb, line 21defregexp/^\s* n(?:ext)?
([+-])?(?:\s+(\S+))?
\s*$/end
Public Class Methods
help(cmd)click to toggle source
# File cli/ruby-debug/commands/stepping.rb, line 39defhelp(cmd)
%{
n[ext][+-]?[ nnn]\tstep over 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 35defhelp_command'next'end