Sha256: 2e359289b021e048829a1abea0ae9be39a73b212b06d3a5c08cd049164b2b983
Contents?: true
Size: 601 Bytes
Versions: 106
Compression:
Stored size: 601 Bytes
Contents
module LanguageServer module Protocol module Constant # # The moniker kind. # module MonikerKind # # The moniker represent a symbol that is imported into a project # IMPORT = 'import' # # The moniker represents a symbol that is exported from a project # EXPORT = 'export' # # The moniker represents a symbol that is local to a project (e.g. a local # variable of a function, a class not visible outside the project, ...) # LOCAL = 'local' end end end end
Version data entries
106 entries across 106 versions & 15 rubygems