-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathresponse_message.rb
58 lines (49 loc) · 1.23 KB
/
response_message.rb
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 [any]
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