class LanguageServer::Protocol::Interface::CodeActionClientCapabilities

Attributes

attributes[R]

Public Class Methods

new(dynamic_registration: nil, code_action_literal_support: nil, is_preferred_support: nil, disabled_support: nil, data_support: nil, resolve_support: nil, honors_change_annotations: nil) click to toggle source
# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 5
def initialize(dynamic_registration: nil, code_action_literal_support: nil, is_preferred_support: nil, disabled_support: nil, data_support: nil, resolve_support: nil, honors_change_annotations: nil)
  @attributes = {}

  @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration
  @attributes[:codeActionLiteralSupport] = code_action_literal_support if code_action_literal_support
  @attributes[:isPreferredSupport] = is_preferred_support if is_preferred_support
  @attributes[:disabledSupport] = disabled_support if disabled_support
  @attributes[:dataSupport] = data_support if data_support
  @attributes[:resolveSupport] = resolve_support if resolve_support
  @attributes[:honorsChangeAnnotations] = honors_change_annotations if honors_change_annotations

  @attributes.freeze
end

Public Instance Methods

code_action_literal_support() click to toggle source

The client supports code action literals as a valid response of the `textDocument/codeAction` request.

@return [{ codeActionKind: { valueSet: string[]; }; }]

# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 32
def code_action_literal_support
  attributes.fetch(:codeActionLiteralSupport)
end
data_support() click to toggle source

Whether code action supports the `data` property which is preserved between a `textDocument/codeAction` and a `codeAction/resolve` request.

@return [boolean]

# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 58
def data_support
  attributes.fetch(:dataSupport)
end
disabled_support() click to toggle source

Whether code action supports the `disabled` property.

@return [boolean]

# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 48
def disabled_support
  attributes.fetch(:disabledSupport)
end
dynamic_registration() click to toggle source

Whether code action supports dynamic registration.

@return [boolean]

# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 23
def dynamic_registration
  attributes.fetch(:dynamicRegistration)
end
honors_change_annotations() click to toggle source

Whether the client honors the change annotations in text edits and resource operations returned via the `CodeAction#edit` property by for example presenting the workspace edit in the user interface and asking for confirmation.

@return [boolean]

# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 79
def honors_change_annotations
  attributes.fetch(:honorsChangeAnnotations)
end
is_preferred_support() click to toggle source

Whether code action supports the `isPreferred` property.

@return [boolean]

# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 40
def is_preferred_support
  attributes.fetch(:isPreferredSupport)
end
resolve_support() click to toggle source

Whether the client supports resolving additional code action properties via a separate `codeAction/resolve` request.

@return [{ properties: string[]; }]

# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 67
def resolve_support
  attributes.fetch(:resolveSupport)
end
to_hash() click to toggle source
# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 85
def to_hash
  attributes
end
to_json(*args) click to toggle source
# File lib/language_server/protocol/interface/code_action_client_capabilities.rb, line 89
def to_json(*args)
  to_hash.to_json(*args)
end