Sha256: 60ccb799983349da03899d602c670aef9dcb667130c24407dfa765196439dc56

Contents?: true

Size: 286 Bytes

Versions: 2

Compression:

Stored size: 286 Bytes

Contents

module Byebug::DAP
  class Command::Attach < Command
    # "The attach request is sent from the client to the debug adapter to attach to a debuggee that is already running.

    register!

    def execute
      stopped!
      @session.start!(:attached)
      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/attach.rb
byebug-dap-0.1.3 lib/byebug/dap/commands/attach.rb