Class: DSP::GotoArguments
Overview
interface GotoArguments {
/** Set the goto target for this thread. */
threadId: number;
/** The location where the debuggee will continue to run. */
targetId: number;
}
Instance Attribute Summary collapse
-
#targetId ⇒ Object
type: number # type: number.
-
#threadId ⇒ Object
type: number # type: number.
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#targetId ⇒ Object
type: number # type: number
2144 2145 2146 |
# File 'lib/dsp/dsp_protocol.rb', line 2144 def targetId @targetId end |
#threadId ⇒ Object
type: number # type: number
2144 2145 2146 |
# File 'lib/dsp/dsp_protocol.rb', line 2144 def threadId @threadId end |
Instance Method Details
#from_h!(value) ⇒ Object
2146 2147 2148 2149 2150 2151 |
# File 'lib/dsp/dsp_protocol.rb', line 2146 def from_h!(value) value = {} if value.nil? self.threadId = value['threadId'] self.targetId = value['targetId'] self end |