Sha256: ace279ff1517ca280db7e7f6c923c112d2b0d4eefdd42fdeb383b9b8fd0675a4

Contents?: true

Size: 443 Bytes

Versions: 7

Compression:

Stored size: 443 Bytes

Contents

module LanguageServer
  module Protocol
    module Constants
      #
      # A document highlight kind.
      #
      module DocumentHighlightKind
        #
        # A textual occurrence.
        #
        TEXT = 1
        #
        # Read-access of a symbol, like reading a variable.
        #
        READ = 2
        #
        # Write-access of a symbol, like writing to a variable.
        #
        WRITE = 3
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
language_server-protocol-0.2.0 lib/language_server/protocol/constants/document_highlight_kind.rb
language_server-protocol-0.1.0 lib/language_server/protocol/constants/document_highlight_kind.rb
language_server-0.4.0 lib/language_server/protocol/constants/document_highlight_kind.rb
language_server-0.3.1 lib/language_server/protocol/constants/document_highlight_kind.rb
language_server-0.3.0 lib/language_server/protocol/constants/document_highlight_kind.rb
language_server-0.2.0 lib/language_server/protocol/constants/document_highlight_kind.rb
language_server-0.1.0 lib/language_server/protocol/constants/document_highlight_kind.rb