Sha256: d0f9cc4d8ebfca27f64f0ebf46ed46f8b84ef9e39f20fd041853e8065d69d5e6
Contents?: true
Size: 603 Bytes
Versions: 1
Compression:
Stored size: 603 Bytes
Contents
module Byebug module DAP # `childSpawned` is a custom DAP event used to notify the client that a # child process has spawned. # @api private class ChildSpawnedEventBody < Protocol::Base Protocol::Event.bodies[:childSpawned] = self # The child process's name # @return [std:String] # @!attribute [r] property :name # The child's process ID # @return [std:Integer] # @!attribute [r] property :pid # The debug socket to connect to # @return [std:String] # @!attribute [r] property :socket end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
byebug-dap-0.1.4 | lib/byebug/dap/helpers/child_spawned_event_body.rb |