class LanguageServer::Protocol::Interface::InlineValueContext

def frame_id

Returns:
  • (number) -
def frame_id
  attributes.fetch(:frameId)
end

def initialize(frame_id:, stopped_location:)

def initialize(frame_id:, stopped_location:)
  @attributes = {}
  @attributes[:frameId] = frame_id
  @attributes[:stoppedLocation] = stopped_location
  @attributes.freeze
end

def stopped_location

Returns:
  • (Range) -
def stopped_location
  attributes.fetch(:stoppedLocation)
end

def to_hash

def to_hash
  attributes
end

def to_json(*args)

def to_json(*args)
  to_hash.to_json(*args)
end