Class: LanguageServer::Protocol::Interface::ResponseMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/language_server/protocol/interface/response_message.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id:, result: nil, error: nil) ⇒ ResponseMessage



5
6
7
8
9
10
11
12
13
# File 'lib/language_server/protocol/interface/response_message.rb', line 5

def initialize(id:, result: nil, error: nil)
  @attributes = {}

  @attributes[:id] = id
  @attributes[:result] = result if result
  @attributes[:error] = error if error

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



40
41
42
# File 'lib/language_server/protocol/interface/response_message.rb', line 40

def attributes
  @attributes
end

Instance Method Details

#errorResponseError<any>

The error object in case a request fails.



36
37
38
# File 'lib/language_server/protocol/interface/response_message.rb', line 36

def error
  attributes.fetch(:error)
end

#idstring | number

The request id.



19
20
21
# File 'lib/language_server/protocol/interface/response_message.rb', line 19

def id
  attributes.fetch(:id)
end

#resultany

The result of a request. This can be omitted in the case of an error.



28
29
30
# File 'lib/language_server/protocol/interface/response_message.rb', line 28

def result
  attributes.fetch(:result)
end

#to_json(*args) ⇒ Object



42
43
44
# File 'lib/language_server/protocol/interface/response_message.rb', line 42

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