Represents programming constructs like functions or constructors in the context of call hierarchy.

Constructor

new(kind:SymbolKind, name:String, detail:String, uri:Uri, range:Range, selectionRange:Range)

Creates a new call hierarchy item.

Variables

detail:Null<String>

More detail for this item, e.g. the signature of a function.

kind:SymbolKind

The kind of this item.

name:String

The name of this item.

range:Range

The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code.

selectionRange:Range

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 {@linkcode CallHierarchyItem.range range}.

tags:Null<ReadOnlyArray<SymbolTag>>

Tags for this item.

uri:Uri

The resource identifier of this item.