Class: Rubinius::Debugger::Command::StepInto

Inherits:
Next show all
Defined in:
lib/rubinius/debugger/commands.rb

Instance Method Summary collapse

Methods inherited from Next

#goto_between, #next_interesting, #set_breakpoints_between, #step_over_by, #step_to_parent

Methods inherited from Rubinius::Debugger::Command

commands, #current_frame, #current_method, descriptor, ext_help, help, #initialize, #listen, match?, pattern, #run_code, #variables

Methods included from Display

#ask, #crit, #display, #error, #info, #section

Constructor Details

This class inherits a constructor from Rubinius::Debugger::Command

Instance Method Details

#run(args) ⇒ Object



352
353
354
355
356
357
358
359
360
# File 'lib/rubinius/debugger/commands.rb', line 352

def run(args)
  max = step_over_by(1)

  listen(true)

  # We remove the max position breakpoint no matter what
  max.remove! if max

end