-
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.
* 'in' operator shouldn't narrow {} originating in unknown * Add regression test
- Loading branch information
1 parent
549e61d
commit 854d448
Showing
5 changed files
with
130 additions
and
1 deletion.
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
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,36 @@ | ||
//// [inKeywordAndUnknown.ts] | ||
// Repro from #50531 | ||
|
||
function f(x: {}, y: unknown) { | ||
if (!("a" in x)) { | ||
return; | ||
} | ||
x; // {} | ||
if (!y) { | ||
return; | ||
} | ||
y; // {} | ||
if (!("a" in y)) { | ||
return; | ||
} | ||
y; // {} | ||
} | ||
|
||
|
||
//// [inKeywordAndUnknown.js] | ||
"use strict"; | ||
// Repro from #50531 | ||
function f(x, y) { | ||
if (!("a" in x)) { | ||
return; | ||
} | ||
x; // {} | ||
if (!y) { | ||
return; | ||
} | ||
y; // {} | ||
if (!("a" in y)) { | ||
return; | ||
} | ||
y; // {} | ||
} |
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,33 @@ | ||
=== tests/cases/compiler/inKeywordAndUnknown.ts === | ||
// Repro from #50531 | ||
|
||
function f(x: {}, y: unknown) { | ||
>f : Symbol(f, Decl(inKeywordAndUnknown.ts, 0, 0)) | ||
>x : Symbol(x, Decl(inKeywordAndUnknown.ts, 2, 11)) | ||
>y : Symbol(y, Decl(inKeywordAndUnknown.ts, 2, 17)) | ||
|
||
if (!("a" in x)) { | ||
>x : Symbol(x, Decl(inKeywordAndUnknown.ts, 2, 11)) | ||
|
||
return; | ||
} | ||
x; // {} | ||
>x : Symbol(x, Decl(inKeywordAndUnknown.ts, 2, 11)) | ||
|
||
if (!y) { | ||
>y : Symbol(y, Decl(inKeywordAndUnknown.ts, 2, 17)) | ||
|
||
return; | ||
} | ||
y; // {} | ||
>y : Symbol(y, Decl(inKeywordAndUnknown.ts, 2, 17)) | ||
|
||
if (!("a" in y)) { | ||
>y : Symbol(y, Decl(inKeywordAndUnknown.ts, 2, 17)) | ||
|
||
return; | ||
} | ||
y; // {} | ||
>y : Symbol(y, Decl(inKeywordAndUnknown.ts, 2, 17)) | ||
} | ||
|
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,42 @@ | ||
=== tests/cases/compiler/inKeywordAndUnknown.ts === | ||
// Repro from #50531 | ||
|
||
function f(x: {}, y: unknown) { | ||
>f : (x: {}, y: unknown) => void | ||
>x : {} | ||
>y : unknown | ||
|
||
if (!("a" in x)) { | ||
>!("a" in x) : boolean | ||
>("a" in x) : boolean | ||
>"a" in x : boolean | ||
>"a" : "a" | ||
>x : {} | ||
|
||
return; | ||
} | ||
x; // {} | ||
>x : {} | ||
|
||
if (!y) { | ||
>!y : boolean | ||
>y : unknown | ||
|
||
return; | ||
} | ||
y; // {} | ||
>y : {} | ||
|
||
if (!("a" in y)) { | ||
>!("a" in y) : boolean | ||
>("a" in y) : boolean | ||
>"a" in y : boolean | ||
>"a" : "a" | ||
>y : {} | ||
|
||
return; | ||
} | ||
y; // {} | ||
>y : {} | ||
} | ||
|
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,18 @@ | ||
// @strict: true | ||
|
||
// Repro from #50531 | ||
|
||
function f(x: {}, y: unknown) { | ||
if (!("a" in x)) { | ||
return; | ||
} | ||
x; // {} | ||
if (!y) { | ||
return; | ||
} | ||
y; // {} | ||
if (!("a" in y)) { | ||
return; | ||
} | ||
y; // {} | ||
} |