Class: Debugger::NextCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/ruby-debug/commands/stepping.rb

Overview

:nodoc:

Constant Summary

Constants inherited from Command

Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, inherited, #initialize, load_commands, #match, method_missing, options

Constructor Details

This class inherits a constructor from Debugger::Command

Class Method Details

.help(cmd) ⇒ Object



18
19
20
21
22
# File 'lib/ruby-debug/commands/stepping.rb', line 18

def help(cmd)
  %{
    n[ext][ nnn]\tgo over one line or till line nnn
  }
end

.help_commandObject



14
15
16
# File 'lib/ruby-debug/commands/stepping.rb', line 14

def help_command
  'next'
end

Instance Method Details

#executeObject



7
8
9
10
11
# File 'lib/ruby-debug/commands/stepping.rb', line 7

def execute
  steps = @match[1] ? @match[1].to_i : 1
  @state.context.step_over steps, @state.context.frames.size - @state.frame_pos
  @state.proceed
end

#regexpObject



3
4
5
# File 'lib/ruby-debug/commands/stepping.rb', line 3

def regexp
  /^\s*n(?:ext)?(?:\s+(\d+))?$/
end