class LanguageServer::Protocol::Interface::TypeHierarchyItem
Attributes
Public Class Methods
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 5 def initialize(name:, kind:, tags: nil, detail: nil, uri:, range:, selection_range:, data: nil) @attributes = {} @attributes[:name] = name @attributes[:kind] = kind @attributes[:tags] = tags if tags @attributes[:detail] = detail if detail @attributes[:uri] = uri @attributes[:range] = range @attributes[:selectionRange] = selection_range @attributes[:data] = data if data @attributes.freeze end
Public Instance Methods
A data entry field that is preserved between a type hierarchy prepare and supertypes or subtypes requests. It could also be used to identify the type hierarchy in the server, helping improve the performance on resolving supertypes and subtypes.
@return [LSPAny]
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 86 def data attributes.fetch(:data) end
More detail for this item, e.g. the signature of a function.
@return [string]
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 48 def detail attributes.fetch(:detail) end
The kind of this item.
@return [SymbolKind]
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 32 def kind attributes.fetch(:kind) end
The name of this item.
@return [string]
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 24 def name attributes.fetch(:name) end
The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code.
@return [Range]
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 65 def range attributes.fetch(:range) end
The range that should be selected and revealed when this symbol is being picked, e.g. the name of a function. Must be contained by the [‘range`](TypeHierarchyItem.range).
@return [Range]
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 75 def selection_range attributes.fetch(:selectionRange) end
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 92 def to_hash attributes end
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 96 def to_json(*args) to_hash.to_json(*args) end
The resource identifier of this item.
@return [string]
# File lib/language_server/protocol/interface/type_hierarchy_item.rb, line 56 def uri attributes.fetch(:uri) end