Skip to content

Commit 5cc9414

Browse files
author
Kanchalai Tanglertsampan
committed
Update baselines
1 parent 43cb2f5 commit 5cc9414

20 files changed

+447
-24
lines changed

tests/baselines/reference/emitter.asyncGenerators.classMethods.es2015.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class C7 {
8080
>C7 : C7
8181

8282
async * f() {
83-
>f : () => AsyncIterableIterator<any>
83+
>f : () => AsyncIterableIterator<1>
8484

8585
return 1;
8686
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.classMethods.es5.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class C7 {
8080
>C7 : C7
8181

8282
async * f() {
83-
>f : () => AsyncIterableIterator<any>
83+
>f : () => AsyncIterableIterator<1>
8484

8585
return 1;
8686
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.classMethods.esnext.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class C7 {
8080
>C7 : C7
8181

8282
async * f() {
83-
>f : () => AsyncIterableIterator<any>
83+
>f : () => AsyncIterableIterator<1>
8484

8585
return 1;
8686
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.functionDeclarations.es2015.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async function * f6() {
5353
}
5454
=== tests/cases/conformance/emitter/es2015/asyncGenerators/F7.ts ===
5555
async function * f7() {
56-
>f7 : () => AsyncIterableIterator<any>
56+
>f7 : () => AsyncIterableIterator<1>
5757

5858
return 1;
5959
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.functionDeclarations.es5.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async function * f6() {
5353
}
5454
=== tests/cases/conformance/emitter/es5/asyncGenerators/F7.ts ===
5555
async function * f7() {
56-
>f7 : () => AsyncIterableIterator<any>
56+
>f7 : () => AsyncIterableIterator<1>
5757

5858
return 1;
5959
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.functionDeclarations.esnext.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async function * f6() {
5353
}
5454
=== tests/cases/conformance/emitter/esnext/asyncGenerators/F7.ts ===
5555
async function * f7() {
56-
>f7 : () => AsyncIterableIterator<any>
56+
>f7 : () => AsyncIterableIterator<1>
5757

5858
return 1;
5959
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.functionExpressions.es2015.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ const f6 = async function * () {
5959
}
6060
=== tests/cases/conformance/emitter/es2015/asyncGenerators/F7.ts ===
6161
const f7 = async function * () {
62-
>f7 : () => AsyncIterableIterator<any>
63-
>async function * () { return 1;} : () => AsyncIterableIterator<any>
62+
>f7 : () => AsyncIterableIterator<1>
63+
>async function * () { return 1;} : () => AsyncIterableIterator<1>
6464

6565
return 1;
6666
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.functionExpressions.es5.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ const f6 = async function * () {
5959
}
6060
=== tests/cases/conformance/emitter/es5/asyncGenerators/F7.ts ===
6161
const f7 = async function * () {
62-
>f7 : () => AsyncIterableIterator<any>
63-
>async function * () { return 1;} : () => AsyncIterableIterator<any>
62+
>f7 : () => AsyncIterableIterator<1>
63+
>async function * () { return 1;} : () => AsyncIterableIterator<1>
6464

6565
return 1;
6666
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.functionExpressions.esnext.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ const f6 = async function * () {
5959
}
6060
=== tests/cases/conformance/emitter/esnext/asyncGenerators/F7.ts ===
6161
const f7 = async function * () {
62-
>f7 : () => AsyncIterableIterator<any>
63-
>async function * () { return 1;} : () => AsyncIterableIterator<any>
62+
>f7 : () => AsyncIterableIterator<1>
63+
>async function * () { return 1;} : () => AsyncIterableIterator<1>
6464

6565
return 1;
6666
>1 : 1

tests/baselines/reference/emitter.asyncGenerators.objectLiteralMethods.es2015.types

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ const o6 = {
8383
}
8484
=== tests/cases/conformance/emitter/es2015/asyncGenerators/O7.ts ===
8585
const o7 = {
86-
>o7 : { f(): AsyncIterableIterator<any>; }
87-
>{ async * f() { return 1; }} : { f(): AsyncIterableIterator<any>; }
86+
>o7 : { f(): AsyncIterableIterator<1>; }
87+
>{ async * f() { return 1; }} : { f(): AsyncIterableIterator<1>; }
8888

8989
async * f() {
90-
>f : () => AsyncIterableIterator<any>
90+
>f : () => AsyncIterableIterator<1>
9191

9292
return 1;
9393
>1 : 1

0 commit comments

Comments
 (0)