Interface CallHierarchyItem

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

3.16.0

interface CallHierarchyItem {
    data?: any;
    detail?: string;
    kind: SymbolKind;
    name: string;
    range: Range;
    selectionRange: Range;
    tags?: 1[];
    uri: string;
}

Properties

data?: any

A data entry field that is preserved between a call hierarchy prepare and incoming calls or outgoing calls requests.

detail?: string

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

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 range.

tags?: 1[]

Tags for this item.

uri: string

The resource identifier of this item.