Sha256: 0b3ee9917a349ec930a3b9eefac81fcf02f58141c1980d05285b3274f8854568

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

module LanguageServer
  module Protocol
    module Interfaces
      class DocumentOnTypeFormattingParams
        def initialize(text_document:, position:, ch:, options:)
          @attributes = {}

          @attributes[:textDocument] = text_document
          @attributes[:position] = position
          @attributes[:ch] = ch
          @attributes[:options] = options

          @attributes.freeze
        end

        #
        # The document to format.
        #
        # @return [TextDocumentIdentifier]
        def text_document
          attributes.fetch(:textDocument)
        end

        #
        # The position at which this request was sent.
        #
        # @return [Position]
        def position
          attributes.fetch(:position)
        end

        #
        # The character that has been typed.
        #
        # @return [string]
        def ch
          attributes.fetch(:ch)
        end

        #
        # The format options.
        #
        # @return [FormattingOptions]
        def options
          attributes.fetch(:options)
        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/document_on_type_formatting_params.rb
language_server-protocol-0.1.0 lib/language_server/protocol/interfaces/document_on_type_formatting_params.rb
language_server-0.4.0 lib/language_server/protocol/interfaces/document_on_type_formatting_params.rb
language_server-0.3.1 lib/language_server/protocol/interfaces/document_on_type_formatting_params.rb
language_server-0.3.0 lib/language_server/protocol/interfaces/document_on_type_formatting_params.rb
language_server-0.2.0 lib/language_server/protocol/interfaces/document_on_type_formatting_params.rb
language_server-0.1.0 lib/language_server/protocol/interfaces/document_on_type_formatting_params.rb