Sha256: 4eac46e1fc8e6226f328407681225a49ff0033b4c37ea7dcbe8863cc1308f233

Contents?: true

Size: 1015 Bytes

Versions: 7

Compression:

Stored size: 1015 Bytes

Contents

module LanguageServer
  module Protocol
    module Interfaces
      class Command
        def initialize(title:, command:, arguments: nil)
          @attributes = {}

          @attributes[:title] = title
          @attributes[:command] = command
          @attributes[:arguments] = arguments if arguments

          @attributes.freeze
        end

        #
        # Title of the command, like `save`.
        #
        # @return [string]
        def title
          attributes.fetch(:title)
        end

        #
        # The identifier of the actual command handler.
        #
        # @return [string]
        def command
          attributes.fetch(:command)
        end

        #
        # Arguments that the command handler should be
        # invoked with.
        #
        # @return [any[]]
        def arguments
          attributes.fetch(:arguments)
        end

        attr_reader :attributes

        def to_json(*args)
          attributes.to_json(*args)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
language_server-protocol-0.2.0 lib/language_server/protocol/interfaces/command.rb
language_server-protocol-0.1.0 lib/language_server/protocol/interfaces/command.rb
language_server-0.4.0 lib/language_server/protocol/interfaces/command.rb
language_server-0.3.1 lib/language_server/protocol/interfaces/command.rb
language_server-0.3.0 lib/language_server/protocol/interfaces/command.rb
language_server-0.2.0 lib/language_server/protocol/interfaces/command.rb
language_server-0.1.0 lib/language_server/protocol/interfaces/command.rb