Sha256: bb3a70cec85c9399d5a3edc724955abbd0321c82c19bc3144761d38711331f29
Contents?: true
Size: 741 Bytes
Versions: 106
Compression:
Stored size: 741 Bytes
Contents
module LanguageServer module Protocol module Constant # # Moniker uniqueness level to define scope of the moniker. # module UniquenessLevel # # The moniker is only unique inside a document # DOCUMENT = 'document' # # The moniker is unique inside a project for which a dump got created # PROJECT = 'project' # # The moniker is unique inside the group to which a project belongs # GROUP = 'group' # # The moniker is unique inside the moniker scheme. # SCHEME = 'scheme' # # The moniker is globally unique # GLOBAL = 'global' end end end end
Version data entries
106 entries across 106 versions & 15 rubygems