mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
Fixes #42649
This commit is contained in:
@@ -1197,6 +1197,12 @@ export interface IOutgoingCallDto {
|
||||
to: ICallHierarchyItemDto;
|
||||
}
|
||||
|
||||
export interface ILanguageWordDefinitionDto {
|
||||
languageId: string;
|
||||
regexSource: string;
|
||||
regexFlags: string
|
||||
}
|
||||
|
||||
export interface ExtHostLanguageFeaturesShape {
|
||||
$provideDocumentSymbols(handle: number, resource: UriComponents, token: CancellationToken): Promise<modes.DocumentSymbol[] | undefined>;
|
||||
$provideCodeLenses(handle: number, resource: UriComponents, token: CancellationToken): Promise<ICodeLensListDto | undefined>;
|
||||
@@ -1239,6 +1245,7 @@ export interface ExtHostLanguageFeaturesShape {
|
||||
$provideCallHierarchyIncomingCalls(handle: number, sessionId: string, itemId: string, token: CancellationToken): Promise<IIncomingCallDto[] | undefined>;
|
||||
$provideCallHierarchyOutgoingCalls(handle: number, sessionId: string, itemId: string, token: CancellationToken): Promise<IOutgoingCallDto[] | undefined>;
|
||||
$releaseCallHierarchy(handle: number, sessionId: string): void;
|
||||
$setWordDefinitions(wordDefinitions: ILanguageWordDefinitionDto[]): void;
|
||||
}
|
||||
|
||||
export interface ExtHostQuickOpenShape {
|
||||
|
||||
Reference in New Issue
Block a user