Class: DSP::BreakpointLocationsRequest
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface BreakpointLocationsRequest extends Request {
arguments?: BreakpointLocationsArguments;
}
Instance Attribute Summary collapse
-
#arguments ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string.
-
#command ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string.
-
#seq ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string.
-
#type ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string.
Instance Method Summary collapse
- #from_h!(value) ⇒ Object
-
#initialize(initial_hash = nil) ⇒ BreakpointLocationsRequest
constructor
A new instance of BreakpointLocationsRequest.
Methods inherited from DSPBase
Constructor Details
#initialize(initial_hash = nil) ⇒ BreakpointLocationsRequest
Returns a new instance of BreakpointLocationsRequest.
1304 1305 1306 1307 |
# File 'lib/dsp/dsp_protocol.rb', line 1304 def initialize(initial_hash = nil) super @optional_method_names = %i[arguments] end |
Instance Attribute Details
#arguments ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string
1302 1303 1304 |
# File 'lib/dsp/dsp_protocol.rb', line 1302 def arguments @arguments end |
#command ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string
1302 1303 1304 |
# File 'lib/dsp/dsp_protocol.rb', line 1302 def command @command end |
#seq ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string
1302 1303 1304 |
# File 'lib/dsp/dsp_protocol.rb', line 1302 def seq @seq end |
#type ⇒ Object
type: BreakpointLocationsArguments # type: string # type: number # type: string
1302 1303 1304 |
# File 'lib/dsp/dsp_protocol.rb', line 1302 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
1309 1310 1311 1312 1313 1314 1315 1316 |
# File 'lib/dsp/dsp_protocol.rb', line 1309 def from_h!(value) value = {} if value.nil? self.arguments = BreakpointLocationsArguments.new(value['arguments']) unless value['arguments'].nil? self.command = value['command'] self.seq = value['seq'] self.type = value['type'] self end |