Sha256: cb32e553bb38db31b2294c7e34d1565d6d04b76578bf954adcd166ba3d55f624
Contents?: true
Size: 933 Bytes
Versions: 106
Compression:
Stored size: 933 Bytes
Contents
module LanguageServer module Protocol module Constant module SemanticTokenTypes NAMESPACE = 'namespace' # # Represents a generic type. Acts as a fallback for types which # can't be mapped to a specific type like class or enum. # TYPE = 'type' CLASS = 'class' ENUM = 'enum' INTERFACE = 'interface' STRUCT = 'struct' TYPE_PARAMETER = 'typeParameter' PARAMETER = 'parameter' VARIABLE = 'variable' PROPERTY = 'property' ENUM_MEMBER = 'enumMember' EVENT = 'event' FUNCTION = 'function' METHOD = 'method' MACRO = 'macro' KEYWORD = 'keyword' MODIFIER = 'modifier' COMMENT = 'comment' STRING = 'string' NUMBER = 'number' REGEXP = 'regexp' OPERATOR = 'operator' DECORATOR = 'decorator' end end end end
Version data entries
106 entries across 106 versions & 15 rubygems