mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
make sure to gc-track commands of code lens objects
This commit is contained in:
@@ -882,7 +882,11 @@ export interface CodeActionDto {
|
||||
|
||||
export type LinkDto = ObjectIdentifier & modes.ILink;
|
||||
|
||||
export type CodeLensDto = ObjectIdentifier & modes.ICodeLensSymbol;
|
||||
export interface CodeLensDto extends ObjectIdentifier {
|
||||
range: IRange;
|
||||
id?: string;
|
||||
command?: CommandDto;
|
||||
}
|
||||
|
||||
export interface ExtHostLanguageFeaturesShape {
|
||||
$provideDocumentSymbols(handle: number, resource: UriComponents, token: CancellationToken): Promise<modes.DocumentSymbol[]>;
|
||||
|
||||
Reference in New Issue
Block a user