Sha256: e817da085b833101023440282e97c9df41789dcd1f2afbc43b06ce8ee11ce75e
Contents?: true
Size: 843 Bytes
Versions: 106
Compression:
Stored size: 843 Bytes
Contents
module LanguageServer module Protocol module Interface # # General text document registration options. # class TextDocumentRegistrationOptions def initialize(document_selector:) @attributes = {} @attributes[:documentSelector] = document_selector @attributes.freeze end # # A document selector to identify the scope of the registration. If set to # null the document selector provided on the client side will be used. # # @return [DocumentSelector] def document_selector attributes.fetch(:documentSelector) end attr_reader :attributes def to_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
106 entries across 106 versions & 12 rubygems