Class: LanguageServer::Protocol::Interface::InitializeError

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

Overview

Known error codes for an ‘InitializeError`;

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(retry:) ⇒ InitializeError

Returns a new instance of InitializeError.



8
9
10
11
12
13
14
# File 'lib/language_server/protocol/interface/initialize_error.rb', line 8

def initialize(retry:)
  @attributes = {}

  @attributes[:retry] = binding.local_variable_get(:retry)

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



27
28
29
# File 'lib/language_server/protocol/interface/initialize_error.rb', line 27

def attributes
  @attributes
end

Instance Method Details

#retryboolean

Indicates whether the client execute the following retry logic: (1) show the message provided by the ResponseError to the user (2) user selects retry or cancel (3) if user selected retry the initialize method is sent again.

Returns:

  • (boolean)


23
24
25
# File 'lib/language_server/protocol/interface/initialize_error.rb', line 23

def retry
  attributes.fetch(:retry)
end

#to_hashObject



29
30
31
# File 'lib/language_server/protocol/interface/initialize_error.rb', line 29

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



33
34
35
# File 'lib/language_server/protocol/interface/initialize_error.rb', line 33

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