Class: DSP::StepInTargetsArguments
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface StepInTargetsArguments {
/** The stack frame for which to retrieve the possible stepIn targets. */
frameId: number;
}
Instance Attribute Summary collapse
-
#frameId ⇒ Object
type: number.
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#frameId ⇒ Object
type: number
3153 3154 3155 |
# File 'lib/dsp/dsp_protocol.rb', line 3153 def frameId @frameId end |
Instance Method Details
#from_h!(value) ⇒ Object
3155 3156 3157 3158 3159 |
# File 'lib/dsp/dsp_protocol.rb', line 3155 def from_h!(value) value = {} if value.nil? self.frameId = value['frameId'] self end |