mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 02:02:35 -05:00
Merge VS Code 1.31.1 (#4283)
This commit is contained in:
@@ -25,7 +25,7 @@ export const ctxReferenceSearchVisible = new RawContextKey<boolean>('referenceSe
|
||||
|
||||
export interface RequestOptions {
|
||||
getMetaTitle(model: ReferencesModel): string;
|
||||
onGoto?: (reference: Location) => Thenable<any>;
|
||||
onGoto?: (reference: Location) => Promise<any>;
|
||||
}
|
||||
|
||||
export abstract class ReferencesController implements editorCommon.IEditorContribution {
|
||||
@@ -192,7 +192,7 @@ export abstract class ReferencesController implements editorCommon.IEditorContri
|
||||
this._requestIdPool += 1; // Cancel pending requests
|
||||
}
|
||||
|
||||
private _gotoReference(ref: Location): Thenable<any> {
|
||||
private _gotoReference(ref: Location): Promise<any> {
|
||||
this._widget.hide();
|
||||
|
||||
this._ignoreModelChangeEvent = true;
|
||||
|
||||
Reference in New Issue
Block a user