Class: Byebug::DAP::ChildSpawnedEventBody Private
- Inherits:
-
Protocol::Base
- Object
- Protocol::Base
- Byebug::DAP::ChildSpawnedEventBody
- Defined in:
- lib/byebug/dap/helpers/child_spawned_event_body.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
‘childSpawned` is a custom DAP event used to notify the client that a child process has spawned.
Instance Attribute Summary collapse
-
#name ⇒ std:String
readonly
The child process’s name.
-
#pid ⇒ std:Integer
readonly
The child’s process ID.
-
#socket ⇒ std:String
readonly
The debug socket to connect to.
Instance Attribute Details
#name ⇒ std:String (readonly)
The child process’s name
12 |
# File 'lib/byebug/dap/helpers/child_spawned_event_body.rb', line 12 property :name |
#pid ⇒ std:Integer (readonly)
The child’s process ID
17 |
# File 'lib/byebug/dap/helpers/child_spawned_event_body.rb', line 17 property :pid |
#socket ⇒ std:String (readonly)
The debug socket to connect to
22 |
# File 'lib/byebug/dap/helpers/child_spawned_event_body.rb', line 22 property :socket |