class Byebug::DAP::Command::StepIn

Public Instance Methods

execute_in_context() click to toggle source
# File lib/byebug/dap/commands/step_in.rb, line 12
def execute_in_context
  @context.step_into(1, @context.frame.pos)
  :stop
end

Private Instance Methods

forward_to_context(ctx) click to toggle source
Calls superclass method
# File lib/byebug/dap/commands/step_in.rb, line 19
def forward_to_context(ctx)
  super
  respond!
end