Sha256: 97ef56e462d83603df331d66832296efa0326474aefb5b4fe6c3b83e60e5fee7

Contents?: true

Size: 1.15 KB

Versions: 104

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

104 entries across 104 versions & 13 rubygems

Version Path
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/execute_command_params.rb
language_server-protocol-3.17.0.3 lib/language_server/protocol/interface/execute_command_params.rb
language_server-protocol-3.17.0.2 lib/language_server/protocol/interface/execute_command_params.rb
language_server-protocol-3.17.0.1 lib/language_server/protocol/interface/execute_command_params.rb