Class: DSP::ContinuedEvent
Overview
interface ContinuedEvent extends Event {
body: {
/** The thread which was continued. */
threadId: number;
/** If 'allThreadsContinued' is true, a debug adapter can announce that all threads have continued. */
allThreadsContinued?: boolean;
};
}
Instance Attribute Summary collapse
-
#body ⇒ Object
type: {.
-
#event ⇒ Object
/** The thread which was continued.
-
#seq ⇒ Object
type: {.
-
#type ⇒ Object
type: {.
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#body ⇒ Object
type: {
306 307 308 |
# File 'lib/dsp/dsp_protocol.rb', line 306 def body @body end |
#event ⇒ Object
/** The thread which was continued. */
threadId: number;
/** If 'allThreadsContinued' is true, a debug adapter can announce that all threads have continued. */
allThreadsContinued?: boolean;
}
312 313 314 |
# File 'lib/dsp/dsp_protocol.rb', line 312 def event @event end |
#seq ⇒ Object
type: {
306 307 308 |
# File 'lib/dsp/dsp_protocol.rb', line 306 def seq @seq end |
#type ⇒ Object
type: {
306 307 308 |
# File 'lib/dsp/dsp_protocol.rb', line 306 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
314 315 316 317 318 319 320 321 |
# File 'lib/dsp/dsp_protocol.rb', line 314 def from_h!(value) value = {} if value.nil? self.body = value['body'] # Unknown type self.event = value['event'] self.seq = value['seq'] self.type = value['type'] self end |