Sha256: 681b0405410543942808480ab23ca7927bf851a6af9e2095625b92b8574d8aeb

Contents?: true

Size: 272 Bytes

Versions: 2

Compression:

Stored size: 272 Bytes

Contents

module Byebug::DAP
  class Command::Continue < ContextualCommand
    # "The request starts the debuggee to run again.

    register!

    def execute_in_context
      :stop
    end

    private

    def forward_to_context(ctx)
      super
      respond!
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
byebug-dap-0.1.4 lib/byebug/dap/commands/continue.rb
byebug-dap-0.1.3 lib/byebug/dap/commands/continue.rb