lib/language_server/protocol/interface/log_trace_params.rb



module LanguageServer
  module Protocol
    module Interface
      class LogTraceParams
        def initialize(message:, verbose: nil)
          @attributes = {}

          @attributes[:message] = message
          @attributes[:verbose] = verbose if verbose

          @attributes.freeze
        end

        #
        # The message to be logged.
        #
        # @return [string]
        def message
          attributes.fetch(:message)
        end

        #
        # Additional information that can be computed if the `trace` configuration
        # is set to `'verbose'`
        #
        # @return [string]
        def verbose
          attributes.fetch(:verbose)
        end

        attr_reader :attributes

        def to_hash
          attributes
        end

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