class LanguageServer::Protocol::Interface::TypeDefinitionClientCapabilities
Attributes
attributes[R]
Public Class Methods
new(dynamic_registration: nil, link_support: nil)
click to toggle source
# File lib/language_server/protocol/interface/type_definition_client_capabilities.rb, line 5 def initialize(dynamic_registration: nil, link_support: nil) @attributes = {} @attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration @attributes[:linkSupport] = link_support if link_support @attributes.freeze end
Public Instance Methods
dynamic_registration()
click to toggle source
Whether implementation supports dynamic registration. If this is set to `true` the client supports the new `TypeDefinitionRegistrationOptions` return value for the corresponding server capability as well.
@return [boolean]
# File lib/language_server/protocol/interface/type_definition_client_capabilities.rb, line 20 def dynamic_registration attributes.fetch(:dynamicRegistration) end
link_support()
click to toggle source
The client supports additional metadata in the form of definition links.
@return [boolean]
# File lib/language_server/protocol/interface/type_definition_client_capabilities.rb, line 28 def link_support attributes.fetch(:linkSupport) end
to_hash()
click to toggle source
# File lib/language_server/protocol/interface/type_definition_client_capabilities.rb, line 34 def to_hash attributes end
to_json(*args)
click to toggle source
# File lib/language_server/protocol/interface/type_definition_client_capabilities.rb, line 38 def to_json(*args) to_hash.to_json(*args) end