Class: LanguageServer::Protocol::Interface::CodeActionClientCapabilities
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::CodeActionClientCapabilities
- Defined in:
- lib/language_server/protocol/interface/code_action_client_capabilities.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#code_action_literal_support ⇒ { codeActionKind: { valueSet: string[]; }; }
The client supports code action literals as a valid response of the ‘textDocument/codeAction` request.
-
#data_support ⇒ boolean
Whether code action supports the ‘data` property which is preserved between a `textDocument/codeAction` and a `codeAction/resolve` request.
-
#disabled_support ⇒ boolean
Whether code action supports the ‘disabled` property.
-
#dynamic_registration ⇒ boolean
Whether code action supports dynamic registration.
-
#honors_change_annotations ⇒ boolean
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.
-
#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) ⇒ CodeActionClientCapabilities
constructor
A new instance of CodeActionClientCapabilities.
-
#is_preferred_support ⇒ boolean
Whether code action supports the ‘isPreferred` property.
-
#resolve_support ⇒ { properties: string[]; }
Whether the client supports resolving additional code action properties via a separate ‘codeAction/resolve` request.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#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) ⇒ CodeActionClientCapabilities
Returns a new instance of CodeActionClientCapabilities.
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# 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 |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
83 84 85 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 83 def attributes @attributes end |
Instance Method Details
#code_action_literal_support ⇒ { codeActionKind: { valueSet: string[]; }; }
The client supports code action literals as a valid response of the ‘textDocument/codeAction` request.
32 33 34 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 32 def code_action_literal_support attributes.fetch(:codeActionLiteralSupport) end |
#data_support ⇒ boolean
Whether code action supports the ‘data` property which is preserved between a `textDocument/codeAction` and a `codeAction/resolve` request.
58 59 60 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 58 def data_support attributes.fetch(:dataSupport) end |
#disabled_support ⇒ boolean
Whether code action supports the ‘disabled` property.
48 49 50 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 48 def disabled_support attributes.fetch(:disabledSupport) end |
#dynamic_registration ⇒ boolean
Whether code action supports dynamic registration.
23 24 25 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 23 def dynamic_registration attributes.fetch(:dynamicRegistration) end |
#honors_change_annotations ⇒ boolean
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.
79 80 81 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 79 def honors_change_annotations attributes.fetch(:honorsChangeAnnotations) end |
#is_preferred_support ⇒ boolean
Whether code action supports the ‘isPreferred` property.
40 41 42 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 40 def is_preferred_support attributes.fetch(:isPreferredSupport) end |
#resolve_support ⇒ { properties: string[]; }
Whether the client supports resolving additional code action properties via a separate ‘codeAction/resolve` request.
67 68 69 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 67 def resolve_support attributes.fetch(:resolveSupport) end |
#to_hash ⇒ Object
85 86 87 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 85 def to_hash attributes end |
#to_json(*args) ⇒ Object
89 90 91 |
# File 'lib/language_server/protocol/interface/code_action_client_capabilities.rb', line 89 def to_json(*args) to_hash.to_json(*args) end |