Class: LanguageServer::Protocol::Interface::CodeActionOptions

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(work_done_progress: nil, code_action_kinds: nil, resolve_provider: nil) ⇒ CodeActionOptions

Returns a new instance of CodeActionOptions.



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

def initialize(work_done_progress: nil, code_action_kinds: nil, resolve_provider: nil)
  @attributes = {}

  @attributes[:workDoneProgress] = work_done_progress if work_done_progress
  @attributes[:codeActionKinds] = code_action_kinds if code_action_kinds
  @attributes[:resolveProvider] = resolve_provider if resolve_provider

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



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

def attributes
  @attributes
end

Instance Method Details

#code_action_kindsstring[]

CodeActionKinds that this server may return.

The list of kinds may be generic, such as ‘CodeActionKind.Refactor`, or the server may list out every specific kind they provide.

Returns:

  • (string[])


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

def code_action_kinds
  attributes.fetch(:codeActionKinds)
end

#resolve_providerboolean

The server provides support to resolve additional information for a code action.

Returns:

  • (boolean)


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

def resolve_provider
  attributes.fetch(:resolveProvider)
end

#to_hashObject



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



46
47
48
# File 'lib/language_server/protocol/interface/code_action_options.rb', line 46

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

#work_done_progressboolean

Returns:

  • (boolean)


16
17
18
# File 'lib/language_server/protocol/interface/code_action_options.rb', line 16

def work_done_progress
  attributes.fetch(:workDoneProgress)
end