-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Proposing a protocol extension for call hierarchy.
Adds the `textDocument/callHierarchy` request sent from the client to the server to request the call hierarchy for a symbol at the given text document position. LSP issue: language-server-protocol#468 Signed-off-by: Alex Tugarev <alex.tugarev@typefox.io>
- Loading branch information
1 parent
1631753
commit b6887d8
Showing
3 changed files
with
310 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
|
||
#### Call Hierarchy | ||
|
||
The LSP provides retrieving the call hierachy information with the following request. | ||
|
||
_Client Capabilities_: | ||
|
||
```ts | ||
CallHierarchyClientCapabilities { | ||
/** | ||
* The text document client capabilities | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to the `textDocument/callHierarchy` | ||
*/ | ||
callHierarchy?: { | ||
/** | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
}; | ||
} | ||
``` | ||
_Server Capabilities_: | ||
```ts | ||
CallHierarchyServerCapabilities { | ||
/** | ||
* The server provides Call Hierarchy support. | ||
*/ | ||
callHierarchyProvider?: boolean | (TextDocumentRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
``` | ||
##### Call Hierarchy Request | ||
_Request_: | ||
The `textDocument/callHierarchy` request is sent from the client to the server to request the call hierarchy for a symbol at the given text document position. | ||
Returns a call hierarchy item for the requested call direction. | ||
* method: ‘textDocument/callHierarchy' | ||
* params: `CallHierarchyParams` defined as follows: | ||
```ts | ||
export interface CallHierarchyParams extends TextDocumentPositionParams { | ||
resolve?: number; | ||
direction?: 'incoming' | 'outgoing'; | ||
} | ||
``` | ||
_Response_: | ||
The server will send a `CallHierarchyItem` object containing the information about the targeted symbol. The item will be undefined, if no such symbol is found. | ||
The item is _unresolved_ if the lists of callers and callees are undefined. Unresolved items can be resolved via `callHierarchy/resolve` requests. | ||
The resolved item includes callers or callees again of type `CallHierarchyItem`. The caller/callee object provide the actual location of the call (`CallHierarchyItem.callLocation`). | ||
* result: `CallHierarchyItem` defined as follows: | ||
```ts | ||
export interface CallHierarchyItem { | ||
/** | ||
* The name of the symbol targeted by the call hierarchy request. | ||
*/ | ||
name: string; | ||
/** | ||
* More detail for this symbol, e.g the signature of a function. | ||
*/ | ||
detail?: string; | ||
/** | ||
* The kind of this symbol. | ||
*/ | ||
kind: SymbolKind; | ||
/** | ||
* URI of the document containing the symbol. | ||
*/ | ||
uri: string; | ||
/** | ||
* The range enclosing this symbol not including leading/trailing whitespace but everything else | ||
* like comments. This information is typically used to determine if the the clients cursor is | ||
* inside the symbol to reveal in the symbol in the UI. | ||
*/ | ||
range: 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 the `range`. | ||
*/ | ||
selectionRange: Range; | ||
|
||
/** | ||
* The actual location of the call. | ||
* | ||
* Must be defined in resolved callers/callees. | ||
*/ | ||
callLocation?: Location; | ||
|
||
/** | ||
* List of incoming calls. | ||
* | ||
* *Note*: The items is _unresolved_ if `callers` and `callees` is undefined. | ||
*/ | ||
callers?: CallHierarchyItem[]; | ||
/** | ||
* List of outgoing calls. | ||
* | ||
* *Note*: The items is _unresolved_ if `callers` and `callees` is undefined. | ||
*/ | ||
callees?: CallHierarchyItem[]; | ||
/** | ||
* Optional data to identify an item in a resolve request. | ||
*/ | ||
data?: any; | ||
} | ||
``` | ||
_Request_: | ||
The `callHierarchy/resolve` request is sent from the client to the server to resolve a call hierarchy item. | ||
Returns a resolved call hierarchy item for the requested call direction. | ||
* method: callHierarchy/resolve' | ||
* params: `CallHierarchyParams` defined as follows: | ||
```ts | ||
export interface ResolveCallHierarchyItemParams { | ||
item: CallHierarchyItem; | ||
resolve: number; | ||
direction: 'incoming' | 'outgoing'; | ||
} | ||
``` | ||
_Response_: | ||
The server will send a resolved `CallHierarchyItem` object. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
/* -------------------------------------------------------------------------------------------- | ||
* Copyright (c) TypeFox and others. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
* ------------------------------------------------------------------------------------------ */ | ||
'use strict'; | ||
|
||
import { RequestType, RequestHandler } from 'vscode-jsonrpc'; | ||
import { Location, SymbolKind, Range } from 'vscode-languageserver-types'; | ||
import { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams } from './protocol'; | ||
|
||
export interface CallHierarchyClientCapabilities { | ||
/** | ||
* The text document client capabilities | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to the `textDocument/callHierarchy` | ||
*/ | ||
callHierarchy?: { | ||
/** | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
}; | ||
} | ||
} | ||
|
||
export interface CallHierarchyServerCapabilities { | ||
/** | ||
* The server provides Call Hierarchy support. | ||
*/ | ||
callHierarchyProvider?: boolean | (TextDocumentRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
|
||
/** | ||
* Request to request the call hierarchy at a given text document position. | ||
* | ||
* The request's parameter is of type [CallHierarchyParams](#CallHierarchyParams). The response | ||
* is of type [CallHierarchyItem](#CallHierarchyItem) or a Thenable that resolves to such. | ||
* | ||
* The optional request's parameter defines the maximum number of levels to [resolve](#CallHierarchyParams.resolve) by this request. | ||
* Unresolved items can be resolved in subsequent `callHierarchy/resolve` requests. | ||
*/ | ||
export namespace CallHierarchyRequest { | ||
export const type = new RequestType<CallHierarchyParams, CallHierarchyItem, void, TextDocumentRegistrationOptions>('textDocument/callHierarchy'); | ||
export type HandlerSignature = RequestHandler<CallHierarchyParams, CallHierarchyItem | null, void>; | ||
} | ||
|
||
/** | ||
* Request to resolve a call hierarchy item. | ||
* | ||
* The request's parameter is of type [ResolveCallHierarchyItemParams](#ResolveCallHierarchyItemParams). The response | ||
* is of type [CallHierarchyItem](#CallHierarchyItem) or a Thenable that resolves to such. | ||
*/ | ||
export namespace CallHierarchyResolveRequest { | ||
export const type = new RequestType<ResolveCallHierarchyItemParams, CallHierarchyItem, void, void>('callHierarchy/resolve'); | ||
export type HandlerSignature = RequestHandler<ResolveCallHierarchyItemParams, CallHierarchyItem | null, void>; | ||
} | ||
|
||
/** | ||
* The parameters of a `textDocument/callHierarchy` request. | ||
*/ | ||
export interface CallHierarchyParams extends TextDocumentPositionParams { | ||
/** | ||
* The number of levels to resolve. | ||
*/ | ||
resolve?: number; | ||
/** | ||
* Outgoing direction for callees. | ||
* The default is incoming for callers. | ||
*/ | ||
direction?: 'incoming' | 'outgoing'; | ||
} | ||
|
||
/** | ||
* The parameters of a `callHierarchy/resolve` request. | ||
*/ | ||
export interface ResolveCallHierarchyItemParams { | ||
/** | ||
* Unresolved item. | ||
*/ | ||
item: CallHierarchyItem; | ||
/** | ||
* The number of levels to resolve. | ||
*/ | ||
resolve: number; | ||
/** | ||
* Outgoing direction for callees. | ||
* The default is incoming for callers. | ||
*/ | ||
direction: 'incoming' | 'outgoing'; | ||
} | ||
|
||
/** | ||
* The result of a `textDocument/callHierarchy` request. | ||
*/ | ||
export interface CallHierarchyItem { | ||
/** | ||
* The name of the symbol targeted by the call hierarchy request. | ||
*/ | ||
name: string; | ||
/** | ||
* More detail for this symbol, e.g the signature of a function. | ||
*/ | ||
detail?: string; | ||
/** | ||
* The kind of this symbol. | ||
*/ | ||
kind: SymbolKind; | ||
/** | ||
* URI of the document containing the symbol. | ||
*/ | ||
uri: string; | ||
/** | ||
* The range enclosing this symbol not including leading/trailing whitespace but everything else | ||
* like comments. This information is typically used to determine if the the clients cursor is | ||
* inside the symbol to reveal in the symbol in the UI. | ||
*/ | ||
range: 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 the `range`. | ||
*/ | ||
selectionRange: Range; | ||
|
||
/** | ||
* The actual location of the call. | ||
* | ||
* **Must be defined** in resolved callers/callees. | ||
*/ | ||
callLocation?: Location; | ||
|
||
/** | ||
* List of incoming calls. | ||
* | ||
* *Note*: The items is _unresolved_ if `callers` and `callees` is undefined. | ||
*/ | ||
callers?: CallHierarchyItem[]; | ||
/** | ||
* List of outgoing calls. | ||
* | ||
* *Note*: The items is _unresolved_ if `callers` and `callees` is undefined. | ||
*/ | ||
callees?: CallHierarchyItem[]; | ||
/** | ||
* Optional data to identify an item in a resolve request. | ||
*/ | ||
data?: any; | ||
} |