Class: DSP::SetFunctionBreakpointsArguments
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface SetFunctionBreakpointsArguments {
/** The function names of the breakpoints. */
breakpoints: FunctionBreakpoint[];
}
Instance Attribute Summary collapse
-
#breakpoints ⇒ Object
type: FunctionBreakpoint[].
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#breakpoints ⇒ Object
type: FunctionBreakpoint[]
1481 1482 1483 |
# File 'lib/dsp/dsp_protocol.rb', line 1481 def breakpoints @breakpoints end |
Instance Method Details
#from_h!(value) ⇒ Object
1483 1484 1485 1486 1487 |
# File 'lib/dsp/dsp_protocol.rb', line 1483 def from_h!(value) value = {} if value.nil? self.breakpoints = to_typed_aray(value['breakpoints'], FunctionBreakpoint) self end |