lib/solargraph/language_server/message/text_document/code_action.rb



# frozen_string_literal: true


require 'open3'

module Solargraph
  module LanguageServer
    module Message
      module TextDocument
        class CodeAction < Base
          def process
            # @todo Find code actions

          end
        end
      end
    end
  end
end