Sha256: 10af024584d26e1856f15476f5af6444c6b12757cb9cf93afc8893ac19749356

Contents?: true

Size: 1.48 KB

Versions: 6

Compression:

Stored size: 1.48 KB

Contents

# typed: strict
# frozen_string_literal: true

require "shellwords"

require "ruby_lsp/listeners/code_lens"

module RubyLsp
  module Requests
    # ![Code lens demo](../../code_lens.gif)
    #
    # The
    # [code lens](https://microsoft.github.io/language-server-protocol/specification#textDocument_codeLens)
    # request informs the editor of runnable commands such as testing and debugging
    #
    # # Example
    #
    # ```ruby
    # # Run | Run in Terminal | Debug
    # class Test < Minitest::Test
    # end
    # ```
    class CodeLens < Request
      extend T::Sig

      class << self
        extend T::Sig

        sig { returns(Interface::CodeLensOptions) }
        def provider
          Interface::CodeLensOptions.new(resolve_provider: false)
        end
      end

      sig do
        params(
          uri: URI::Generic,
          dispatcher: Prism::Dispatcher,
        ).void
      end
      def initialize(uri, dispatcher)
        @response_builder = T.let(
          ResponseBuilders::CollectionResponseBuilder[Interface::CodeLens].new,
          ResponseBuilders::CollectionResponseBuilder[Interface::CodeLens],
        )
        super()
        Listeners::CodeLens.new(@response_builder, uri, dispatcher)

        Addon.addons.each do |addon|
          addon.create_code_lens_listener(@response_builder, uri, dispatcher)
        end
      end

      sig { override.returns(T::Array[Interface::CodeLens]) }
      def perform
        @response_builder.response
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-lsp-0.14.6 lib/ruby_lsp/requests/code_lens.rb
ruby-lsp-0.14.5 lib/ruby_lsp/requests/code_lens.rb
ruby-lsp-0.14.4 lib/ruby_lsp/requests/code_lens.rb
ruby-lsp-0.14.3 lib/ruby_lsp/requests/code_lens.rb
ruby-lsp-0.14.2 lib/ruby_lsp/requests/code_lens.rb
ruby-lsp-0.14.1 lib/ruby_lsp/requests/code_lens.rb