File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Extension/src/LanguageServer Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export class CopilotHoverProvider implements vscode.HoverProvider {
9595 public async getRequestInfo ( document : vscode . TextDocument , position : vscode . Position ) : Promise < string > {
9696 let requestInfo = "" ;
9797 const params : GetCopilotHoverInfoParams = {
98- uri : document . uri . toString ( ) ,
98+ textDocument : { uri : document . uri . toString ( ) } ,
9999 position : Position . create ( position . line , position . character )
100100 } ;
101101
Original file line number Diff line number Diff line change @@ -535,7 +535,7 @@ export interface GetIncludesResult {
535535}
536536
537537export interface GetCopilotHoverInfoParams {
538- uri : string ;
538+ textDocument : TextDocumentIdentifier ;
539539 position : Position ;
540540}
541541
You can’t perform that action at this time.
0 commit comments