@github/copilot-language-server 1.318.0 → 1.320.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/types.d.ts +2 -0
- package/dist/main.js +498 -460
- package/dist/main.js.map +3 -3
- package/native/darwin-arm64/copilot-language-server +0 -0
- package/native/darwin-x64/copilot-language-server +0 -0
- package/native/linux-arm64/copilot-language-server +0 -0
- package/native/linux-x64/copilot-language-server +0 -0
- package/native/win32-x64/copilot-language-server.exe +0 -0
- package/package.json +2 -2
package/dist/api/types.d.ts
CHANGED
|
@@ -96,6 +96,8 @@ export interface DocumentContext {
|
|
|
96
96
|
uri: DocumentUri;
|
|
97
97
|
languageId: string;
|
|
98
98
|
version: number;
|
|
99
|
+
// Position and offset are relative to the provided version of the document.
|
|
100
|
+
// The position after an edit is applied is found in ProposedTextEdit.positionAfterEdit.
|
|
99
101
|
/**
|
|
100
102
|
* @deprecated Use `position` instead.
|
|
101
103
|
*/
|