Class: Byebug::DAP::Command::StepIn

Inherits:
Byebug::DAP::ContextualCommand show all
Defined in:
lib/byebug/dap/commands/step_in.rb

Constant Summary

Constants inherited from Byebug::DAP::Command

EVAL_ERROR

Instance Method Summary collapse

Methods inherited from Byebug::DAP::ContextualCommand

#execute, #initialize, resolve!

Methods inherited from Byebug::DAP::Command

command, execute, #execute_on_thread, #initialize, #log, register!, resolve!, #safe_execute, #started!, #stopped!

Methods included from SafeHelpers

#safe

Constructor Details

This class inherits a constructor from Byebug::DAP::ContextualCommand

Instance Method Details

#execute_in_contextObject



12
13
14
15
# File 'lib/byebug/dap/commands/step_in.rb', line 12

def execute_in_context
  @context.step_into(1, @context.frame.pos)
  :stop
end