Sha256: c2cba63c706914e5bca201d3aba92b785d46afff24d89f6101d8300921f6fcdd

Contents?: true

Size: 999 Bytes

Versions: 103

Compression:

Stored size: 999 Bytes

Contents

module LanguageServer
  module Protocol
    module Interface
      class InlineValueContext
        def initialize(frame_id:, stopped_location:)
          @attributes = {}

          @attributes[:frameId] = frame_id
          @attributes[:stoppedLocation] = stopped_location

          @attributes.freeze
        end

        #
        # The stack frame (as a DAP Id) where the execution has stopped.
        #
        # @return [number]
        def frame_id
          attributes.fetch(:frameId)
        end

        #
        # The document range where execution has stopped.
        # Typically the end position of the range denotes the line where the
        # inline values are shown.
        #
        # @return [Range]
        def stopped_location
          attributes.fetch(:stoppedLocation)
        end

        attr_reader :attributes

        def to_hash
          attributes
        end

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

Version data entries

103 entries across 103 versions & 13 rubygems

Version Path
language_server-protocol-3.17.0.3 lib/language_server/protocol/interface/inline_value_context.rb
language_server-protocol-3.17.0.2 lib/language_server/protocol/interface/inline_value_context.rb
language_server-protocol-3.17.0.1 lib/language_server/protocol/interface/inline_value_context.rb