Class: DSP::SetFunctionBreakpointsArguments

Inherits:
DSPBase
  • Object
show all
Defined in:
lib/dsp/dsp_protocol.rb

Overview

interface SetFunctionBreakpointsArguments {

    /** The function names of the breakpoints. */
    breakpoints: FunctionBreakpoint[];
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DSPBase

#initialize, #to_h, #to_json

Constructor Details

This class inherits a constructor from DSP::DSPBase

Instance Attribute Details

#breakpointsObject

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