Sha256: 5fb3d276c8ff969e0d1ee22b8cdef8fcaa2cea8a96f6d3ff351ac3f4a07e4687
Contents?: true
Size: 757 Bytes
Versions: 110
Compression:
Stored size: 757 Bytes
Contents
module LanguageServer module Protocol module Interface class PartialResultParams def initialize(partial_result_token: nil) @attributes = {} @attributes[:partialResultToken] = partial_result_token if partial_result_token @attributes.freeze end # # An optional token that a server can use to report partial results (e.g. # streaming) to the client. # # @return [ProgressToken] def partial_result_token attributes.fetch(:partialResultToken) 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
110 entries across 110 versions & 15 rubygems