You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -5415,12 +5415,12 @@ type ValueOf<T> = T[keyof T];
5415
5415
* The position will be {@link TextDocument.validatePosition adjusted}.
5416
5416
*
5417
5417
* @param position A position.
5418
-
* @returns A valid zero-based offset.
5418
+
* @returns A valid zero-based offset in UTF-16 [code units](https://developer.mozilla.org/en-US/docs/Glossary/Code_unit).
5419
5419
*/ offsetAt(position: Position): number;
5420
5420
/**
5421
5421
* Converts a zero-based offset to a position.
5422
5422
*
5423
-
* @param offset A zero-based offset.
5423
+
* @param offset A zero-based offset into the document. This offset is in UTF-16 [code units](https://developer.mozilla.org/en-US/docs/Glossary/Code_unit).
5424
5424
* @returns A valid {@link Position}.
5425
5425
*/ positionAt(offset: number): Position;
5426
5426
/**
@@ -5474,6 +5474,8 @@ type ValueOf<T> = T[keyof T];
5474
5474
*/ readonly line: number;
5475
5475
/**
5476
5476
* The zero-based character value.
5477
+
*
5478
+
* Character offsets are expressed using UTF-16 [code units](https://developer.mozilla.org/en-US/docs/Glossary/Code_unit).
5477
5479
*/ readonly character: number;
5478
5480
/**
5479
5481
* Check if this position is before `other`.
@@ -6412,6 +6414,9 @@ type ValueOf<T> = T[keyof T];
6412
6414
/**
6413
6415
* A human-readable string which is rendered prominent. Supports rendering of {@link ThemeIcon theme icons} via
6414
6416
* the `$(<name>)`-syntax.
6417
+
*
6418
+
* Note: When {@link QuickPickItem.kind kind} is set to {@link QuickPickItemKind.Default} (so a regular item
6419
+
* instead of a separator), it supports rendering of {@link ThemeIcon theme icons} via the `$(<name>)`-syntax.
6415
6420
*/ label: string;
6416
6421
/**
6417
6422
* The kind of QuickPickItem that will determine how this item is rendered in the quick pick. When not specified,
@@ -9955,6 +9960,16 @@ type ValueOf<T> = T[keyof T];
9955
9960
* For more information on events that can send data see "DEC Private Mode Set (DECSET)" on
Copy file name to clipboardExpand all lines: mod.ts
+26-11Lines changed: 26 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -5524,7 +5524,7 @@ Returns VSCodeApi only within the vscode extension.
5524
5524
* used to represent line coverage.
5525
5525
* @param branchCoverage Branch coverage information
5526
5526
* @param declarationCoverage Declaration coverage information
5527
-
* @param includesTests Test cases included in this coverage report, see {@link includesTests}
5527
+
* @param includesTests Test cases included in this coverage report, see {@link FileCoverage.includesTests}
5528
5528
*/ new (
5529
5529
uri: Uri,
5530
5530
statementCoverage: TestCoverageCount,
@@ -6105,12 +6105,12 @@ type ValueOf<T> = T[keyof T];
6105
6105
* The position will be {@link TextDocument.validatePosition adjusted}.
6106
6106
*
6107
6107
* @param position A position.
6108
-
* @returns A valid zero-based offset.
6108
+
* @returns A valid zero-based offset in UTF-16 [code units](https://developer.mozilla.org/en-US/docs/Glossary/Code_unit).
6109
6109
*/ offsetAt(position: Position): number;
6110
6110
/**
6111
6111
* Converts a zero-based offset to a position.
6112
6112
*
6113
-
* @param offset A zero-based offset.
6113
+
* @param offset A zero-based offset into the document. This offset is in UTF-16 [code units](https://developer.mozilla.org/en-US/docs/Glossary/Code_unit).
6114
6114
* @returns A valid {@link Position}.
6115
6115
*/ positionAt(offset: number): Position;
6116
6116
/**
@@ -6167,6 +6167,8 @@ type ValueOf<T> = T[keyof T];
6167
6167
*/ readonly line: number;
6168
6168
/**
6169
6169
* The zero-based character value.
6170
+
*
6171
+
* Character offsets are expressed using UTF-16 [code units](https://developer.mozilla.org/en-US/docs/Glossary/Code_unit).
6170
6172
*/ readonly character: number;
6171
6173
/**
6172
6174
* Check if this position is before `other`.
@@ -7133,6 +7135,9 @@ type ValueOf<T> = T[keyof T];
7133
7135
/**
7134
7136
* A human-readable string which is rendered prominent. Supports rendering of {@link ThemeIcon theme icons} via
7135
7137
* the `$(<name>)`-syntax.
7138
+
*
7139
+
* Note: When {@link QuickPickItem.kind kind} is set to {@link QuickPickItemKind.Default} (so a regular item
7140
+
* instead of a separator), it supports rendering of {@link ThemeIcon theme icons} via the `$(<name>)`-syntax.
7136
7141
*/ label: string;
7137
7142
/**
7138
7143
* The kind of QuickPickItem that will determine how this item is rendered in the quick pick. When not specified,
@@ -10966,6 +10971,16 @@ type ValueOf<T> = T[keyof T];
10966
10971
* For more information on events that can send data see "DEC Private Mode Set (DECSET)" on
0 commit comments