Sha256: 97ef56e462d83603df331d66832296efa0326474aefb5b4fe6c3b83e60e5fee7
Contents?: true
Size: 1.15 KB
Versions: 103
Compression:
Stored size: 1.15 KB
Contents
module LanguageServer module Protocol module Interface class ExecuteCommandParams def initialize(work_done_token: nil, command:, arguments: nil) @attributes = {} @attributes[:workDoneToken] = work_done_token if work_done_token @attributes[:command] = command @attributes[:arguments] = arguments if arguments @attributes.freeze end # # An optional token that a server can use to report work done progress. # # @return [ProgressToken] def work_done_token attributes.fetch(:workDoneToken) end # # The identifier of the actual command handler. # # @return [string] def command attributes.fetch(:command) end # # Arguments that the command should be invoked with. # # @return [LSPAny[]] def arguments attributes.fetch(:arguments) 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
103 entries across 103 versions & 13 rubygems