1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
module LanguageServer
module Protocol
module Interface
class ResponseMessage
def initialize(jsonrpc:, id:, result: nil, error: nil)
@attributes = {}
@attributes[:jsonrpc] = jsonrpc
@attributes[:id] = id
@attributes[:result] = result if result
@attributes[:error] = error if error
@attributes.freeze
end
# @return [string]
def jsonrpc
attributes.fetch(:jsonrpc)
end
#
# The request id.
#
# @return [string | number]
def id
attributes.fetch(:id)
end
#
# The result of a request. This member is REQUIRED on success.
# This member MUST NOT exist if there was an error invoking the method.
#
# @return [string | number | boolean | object]
def result
attributes.fetch(:result)
end
#
# The error object in case a request fails.
#
# @return [ResponseError]
def error
attributes.fetch(:error)
end
attr_reader :attributes
def to_hash
attributes
end
def to_json(*args)
to_hash.to_json(*args)
end
end
end
end
end
|