Class: DSP::ScopesArguments
Overview
interface ScopesArguments {
/** Retrieve the scopes for this stackframe. */
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
2336 2337 2338 |
# File 'lib/dsp/dsp_protocol.rb', line 2336 def frameId @frameId end |
Instance Method Details
#from_h!(value) ⇒ Object
2338 2339 2340 2341 2342 |
# File 'lib/dsp/dsp_protocol.rb', line 2338 def from_h!(value) value = {} if value.nil? self.frameId = value['frameId'] self end |