Skip to content

Commit 9033596

Browse files
committed
Update baselines
1 parent 7bc2793 commit 9033596

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9694,7 +9694,7 @@ declare namespace ts {
96949694
}
96959695
function readBuilderProgram(compilerOptions: CompilerOptions, host: ReadBuildProgramHost): EmitAndSemanticDiagnosticsBuilderProgram | undefined;
96969696
function createIncrementalCompilerHost(options: CompilerOptions, system?: System): CompilerHost;
9697-
function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgram>({ rootNames, options, configFileParsingDiagnostics, projectReferences, host, createProgram }: IncrementalProgramOptions<T>): T;
9697+
function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgram>({ rootNames, options, configFileParsingDiagnostics, projectReferences, host, createProgram, }: IncrementalProgramOptions<T>): T;
96989698
/**
96999699
* Create the watch compiler host for either configFile or fileNames and its options
97009700
*/

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5641,7 +5641,7 @@ declare namespace ts {
56415641
}
56425642
function readBuilderProgram(compilerOptions: CompilerOptions, host: ReadBuildProgramHost): EmitAndSemanticDiagnosticsBuilderProgram | undefined;
56435643
function createIncrementalCompilerHost(options: CompilerOptions, system?: System): CompilerHost;
5644-
function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgram>({ rootNames, options, configFileParsingDiagnostics, projectReferences, host, createProgram }: IncrementalProgramOptions<T>): T;
5644+
function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgram>({ rootNames, options, configFileParsingDiagnostics, projectReferences, host, createProgram, }: IncrementalProgramOptions<T>): T;
56455645
/**
56465646
* Create the watch compiler host for either configFile or fileNames and its options
56475647
*/

tests/baselines/reference/goToTypeDefinition_Pick.baseline.jsonc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// user2
1010

1111
// === lib.d.ts ===
12-
// --- (line: 1588) skipped ---
12+
// --- (line: 1586) skipped ---
1313
// /**
1414
// * From T, pick a set of properties whose keys are in the union K
1515
// */
@@ -19,7 +19,7 @@
1919
//
2020
// /**
2121
// * Construct a type with a set of properties K of type T
22-
// --- (line: 1598) skipped ---
22+
// --- (line: 1596) skipped ---
2323

2424
// === Details ===
2525
[
@@ -58,7 +58,7 @@
5858
// /*GOTO TYPE*/user2
5959

6060
// === lib.d.ts ===
61-
// --- (line: 1588) skipped ---
61+
// --- (line: 1586) skipped ---
6262
// /**
6363
// * From T, pick a set of properties whose keys are in the union K
6464
// */
@@ -68,7 +68,7 @@
6868
//
6969
// /**
7070
// * Construct a type with a set of properties K of type T
71-
// --- (line: 1598) skipped ---
71+
// --- (line: 1596) skipped ---
7272

7373
// === Details ===
7474
[

tests/baselines/reference/goToTypeDefinition_arrayType.baseline.jsonc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// --- (line: 7) skipped ---
1010

1111
// === lib.d.ts ===
12-
// --- (line: 1310) skipped ---
12+
// --- (line: 1309) skipped ---
1313
// slice(start?: number, end?: number): T[];
1414
// }
1515
//
@@ -198,18 +198,18 @@
198198
// }|>
199199
//
200200
// interface ArrayConstructor {
201-
// new(arrayLength?: number): any[];
202-
// --- (line: 1500) skipped ---
201+
// new (arrayLength?: number): any[];
202+
// --- (line: 1499) skipped ---
203203

204-
// --- (line: 1505) skipped ---
204+
// --- (line: 1504) skipped ---
205205
// readonly prototype: any[];
206206
// }
207207
//
208208
// <|declare var [|{| defId: 2 |}Array|]: ArrayConstructor;|>
209209
//
210210
// interface TypedPropertyDescriptor<T> {
211211
// enumerable?: boolean;
212-
// --- (line: 1513) skipped ---
212+
// --- (line: 1512) skipped ---
213213

214214
// === Details ===
215215
[
@@ -262,7 +262,7 @@
262262
// users3
263263

264264
// === lib.d.ts ===
265-
// --- (line: 1310) skipped ---
265+
// --- (line: 1309) skipped ---
266266
// slice(start?: number, end?: number): T[];
267267
// }
268268
//
@@ -451,18 +451,18 @@
451451
// }|>
452452
//
453453
// interface ArrayConstructor {
454-
// new(arrayLength?: number): any[];
455-
// --- (line: 1500) skipped ---
454+
// new (arrayLength?: number): any[];
455+
// --- (line: 1499) skipped ---
456456

457-
// --- (line: 1505) skipped ---
457+
// --- (line: 1504) skipped ---
458458
// readonly prototype: any[];
459459
// }
460460
//
461461
// <|declare var [|{| defId: 2 |}Array|]: ArrayConstructor;|>
462462
//
463463
// interface TypedPropertyDescriptor<T> {
464464
// enumerable?: boolean;
465-
// --- (line: 1513) skipped ---
465+
// --- (line: 1512) skipped ---
466466

467467
// === Details ===
468468
[

tests/baselines/reference/goToTypeDefinition_promiseType.baseline.jsonc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// export {}
99

1010
// === lib.d.ts ===
11-
// --- (line: 1531) skipped ---
11+
// --- (line: 1530) skipped ---
1212
// /**
1313
// * Represents the completion of an asynchronous operation
1414
// */
@@ -31,7 +31,7 @@
3131
//
3232
// /**
3333
// * Recursively unwraps the "awaited type" of a type. Non-promise "thenables" should resolve to `never`. This emulates the behavior of `await`.
34-
// --- (line: 1554) skipped ---
34+
// --- (line: 1553) skipped ---
3535

3636
// === Details ===
3737
[
@@ -69,7 +69,7 @@
6969
// export {}
7070

7171
// === lib.d.ts ===
72-
// --- (line: 1531) skipped ---
72+
// --- (line: 1530) skipped ---
7373
// /**
7474
// * Represents the completion of an asynchronous operation
7575
// */
@@ -92,7 +92,7 @@
9292
//
9393
// /**
9494
// * Recursively unwraps the "awaited type" of a type. Non-promise "thenables" should resolve to `never`. This emulates the behavior of `await`.
95-
// --- (line: 1554) skipped ---
95+
// --- (line: 1553) skipped ---
9696

9797
// === Details ===
9898
[

0 commit comments

Comments
 (0)