Sha256: c7e528d67e35dfa7dbda2ce8ddf924334d12e296dcd56ba4330424904f33e912

Contents?: true

Size: 516 Bytes

Versions: 3

Compression:

Stored size: 516 Bytes

Contents

module LanguageServer
  module Protocol
    module Constant
      #
      # A symbol kind.
      #
      module SymbolKind
        FILE = 1
        MODULE = 2
        NAMESPACE = 3
        PACKAGE = 4
        CLASS = 5
        METHOD = 6
        PROPERTY = 7
        FIELD = 8
        CONSTRUCTOR = 9
        ENUM = 10
        INTERFACE = 11
        FUNCTION = 12
        VARIABLE = 13
        CONSTANT = 14
        STRING = 15
        NUMBER = 16
        BOOLEAN = 17
        ARRAY = 18
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
language_server-protocol-0.5.0 lib/language_server/protocol/constant/symbol_kind.rb
language_server-protocol-0.4.0 lib/language_server/protocol/constant/symbol_kind.rb
language_server-protocol-0.3.0 lib/language_server/protocol/constant/symbol_kind.rb