Interface CallHierarchyPrepareParams

The parameter of a textDocument/prepareCallHierarchy request.

3.16.0

interface CallHierarchyPrepareParams {
    position: Position;
    textDocument: TextDocumentIdentifier;
    workDoneToken?: ProgressToken;
}

Hierarchy (View Summary)

Properties

position: Position

The position inside the text document.

The text document.

workDoneToken?: ProgressToken

An optional token that a server can use to report work done progress.