-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 Pick PR #54208 (Properly handle
typeof this.xxx
i...) into releas…
…e-5.1 (#54413) Co-authored-by: Anders Hejlsberg <andersh@microsoft.com>
- Loading branch information
1 parent
42e7839
commit 898edb5
Showing
4 changed files
with
71 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
tests/baselines/reference/typeofThisInMethodSignature.symbols
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
=== tests/cases/compiler/typeofThisInMethodSignature.ts === | ||
// Repro from #54167 | ||
|
||
export class A { | ||
>A : Symbol(A, Decl(typeofThisInMethodSignature.ts, 0, 0)) | ||
|
||
x = 1 | ||
>x : Symbol(A.x, Decl(typeofThisInMethodSignature.ts, 2, 16)) | ||
|
||
a(x: typeof this.x): void {} | ||
>a : Symbol(A.a, Decl(typeofThisInMethodSignature.ts, 3, 6)) | ||
>x : Symbol(x, Decl(typeofThisInMethodSignature.ts, 4, 3)) | ||
>this.x : Symbol(A.x, Decl(typeofThisInMethodSignature.ts, 2, 16)) | ||
>this : Symbol(A, Decl(typeofThisInMethodSignature.ts, 0, 0)) | ||
>x : Symbol(A.x, Decl(typeofThisInMethodSignature.ts, 2, 16)) | ||
} | ||
|
||
const a = new A().a(1); | ||
>a : Symbol(a, Decl(typeofThisInMethodSignature.ts, 7, 5)) | ||
>new A().a : Symbol(A.a, Decl(typeofThisInMethodSignature.ts, 3, 6)) | ||
>A : Symbol(A, Decl(typeofThisInMethodSignature.ts, 0, 0)) | ||
>a : Symbol(A.a, Decl(typeofThisInMethodSignature.ts, 3, 6)) | ||
|
27 changes: 27 additions & 0 deletions
27
tests/baselines/reference/typeofThisInMethodSignature.types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
=== tests/cases/compiler/typeofThisInMethodSignature.ts === | ||
// Repro from #54167 | ||
|
||
export class A { | ||
>A : A | ||
|
||
x = 1 | ||
>x : number | ||
>1 : 1 | ||
|
||
a(x: typeof this.x): void {} | ||
>a : (x: typeof this.x) => void | ||
>x : number | ||
>this.x : number | ||
>this : this | ||
>x : number | ||
} | ||
|
||
const a = new A().a(1); | ||
>a : void | ||
>new A().a(1) : void | ||
>new A().a : (x: number) => void | ||
>new A() : A | ||
>A : typeof A | ||
>a : (x: number) => void | ||
>1 : 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// @strict: true | ||
// @noEmit: true | ||
|
||
// Repro from #54167 | ||
|
||
export class A { | ||
x = 1 | ||
a(x: typeof this.x): void {} | ||
} | ||
|
||
const a = new A().a(1); |