forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-pick PR microsoft#50691 into release-4.8
Component commits: 3644959 Add test case 17f6e57 Revert removal of nonInferrableAnyType cafebee Rename test
- Loading branch information
1 parent
ea348f6
commit fde22e9
Showing
5 changed files
with
234 additions
and
2 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
41 changes: 41 additions & 0 deletions
41
tests/baselines/reference/inferStringLiteralUnionForBindingElement.js
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,41 @@ | ||
//// [inferStringLiteralUnionForBindingElement.ts] | ||
declare function func<T extends string>(arg: { keys: T[] }): { readonly keys: T[]; readonly firstKey: T; }; | ||
|
||
function func1() { | ||
const { firstKey } = func({keys: ["aa", "bb"]}) | ||
const a: "aa" | "bb" = firstKey; | ||
|
||
const { keys } = func({keys: ["aa", "bb"]}) | ||
const b: ("aa" | "bb")[] = keys; | ||
} | ||
|
||
function func2() { | ||
const { keys, firstKey } = func({keys: ["aa", "bb"]}) | ||
const a: "aa" | "bb" = firstKey; | ||
const b: ("aa" | "bb")[] = keys; | ||
} | ||
|
||
function func3() { | ||
const x = func({keys: ["aa", "bb"]}) | ||
const a: "aa" | "bb" = x.firstKey; | ||
const b: ("aa" | "bb")[] = x.keys; | ||
} | ||
|
||
|
||
//// [inferStringLiteralUnionForBindingElement.js] | ||
function func1() { | ||
var firstKey = func({ keys: ["aa", "bb"] }).firstKey; | ||
var a = firstKey; | ||
var keys = func({ keys: ["aa", "bb"] }).keys; | ||
var b = keys; | ||
} | ||
function func2() { | ||
var _a = func({ keys: ["aa", "bb"] }), keys = _a.keys, firstKey = _a.firstKey; | ||
var a = firstKey; | ||
var b = keys; | ||
} | ||
function func3() { | ||
var x = func({ keys: ["aa", "bb"] }); | ||
var a = x.firstKey; | ||
var b = x.keys; | ||
} |
73 changes: 73 additions & 0 deletions
73
tests/baselines/reference/inferStringLiteralUnionForBindingElement.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,73 @@ | ||
=== tests/cases/compiler/inferStringLiteralUnionForBindingElement.ts === | ||
declare function func<T extends string>(arg: { keys: T[] }): { readonly keys: T[]; readonly firstKey: T; }; | ||
>func : Symbol(func, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 0)) | ||
>T : Symbol(T, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 22)) | ||
>arg : Symbol(arg, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 40)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 46)) | ||
>T : Symbol(T, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 22)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 62)) | ||
>T : Symbol(T, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 22)) | ||
>firstKey : Symbol(firstKey, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 82)) | ||
>T : Symbol(T, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 22)) | ||
|
||
function func1() { | ||
>func1 : Symbol(func1, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 107)) | ||
|
||
const { firstKey } = func({keys: ["aa", "bb"]}) | ||
>firstKey : Symbol(firstKey, Decl(inferStringLiteralUnionForBindingElement.ts, 3, 11)) | ||
>func : Symbol(func, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 0)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 3, 31)) | ||
|
||
const a: "aa" | "bb" = firstKey; | ||
>a : Symbol(a, Decl(inferStringLiteralUnionForBindingElement.ts, 4, 9)) | ||
>firstKey : Symbol(firstKey, Decl(inferStringLiteralUnionForBindingElement.ts, 3, 11)) | ||
|
||
const { keys } = func({keys: ["aa", "bb"]}) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 6, 11)) | ||
>func : Symbol(func, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 0)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 6, 27)) | ||
|
||
const b: ("aa" | "bb")[] = keys; | ||
>b : Symbol(b, Decl(inferStringLiteralUnionForBindingElement.ts, 7, 9)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 6, 11)) | ||
} | ||
|
||
function func2() { | ||
>func2 : Symbol(func2, Decl(inferStringLiteralUnionForBindingElement.ts, 8, 1)) | ||
|
||
const { keys, firstKey } = func({keys: ["aa", "bb"]}) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 11, 11)) | ||
>firstKey : Symbol(firstKey, Decl(inferStringLiteralUnionForBindingElement.ts, 11, 17)) | ||
>func : Symbol(func, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 0)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 11, 37)) | ||
|
||
const a: "aa" | "bb" = firstKey; | ||
>a : Symbol(a, Decl(inferStringLiteralUnionForBindingElement.ts, 12, 9)) | ||
>firstKey : Symbol(firstKey, Decl(inferStringLiteralUnionForBindingElement.ts, 11, 17)) | ||
|
||
const b: ("aa" | "bb")[] = keys; | ||
>b : Symbol(b, Decl(inferStringLiteralUnionForBindingElement.ts, 13, 9)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 11, 11)) | ||
} | ||
|
||
function func3() { | ||
>func3 : Symbol(func3, Decl(inferStringLiteralUnionForBindingElement.ts, 14, 1)) | ||
|
||
const x = func({keys: ["aa", "bb"]}) | ||
>x : Symbol(x, Decl(inferStringLiteralUnionForBindingElement.ts, 17, 9)) | ||
>func : Symbol(func, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 0)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 17, 20)) | ||
|
||
const a: "aa" | "bb" = x.firstKey; | ||
>a : Symbol(a, Decl(inferStringLiteralUnionForBindingElement.ts, 18, 9)) | ||
>x.firstKey : Symbol(firstKey, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 82)) | ||
>x : Symbol(x, Decl(inferStringLiteralUnionForBindingElement.ts, 17, 9)) | ||
>firstKey : Symbol(firstKey, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 82)) | ||
|
||
const b: ("aa" | "bb")[] = x.keys; | ||
>b : Symbol(b, Decl(inferStringLiteralUnionForBindingElement.ts, 19, 9)) | ||
>x.keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 62)) | ||
>x : Symbol(x, Decl(inferStringLiteralUnionForBindingElement.ts, 17, 9)) | ||
>keys : Symbol(keys, Decl(inferStringLiteralUnionForBindingElement.ts, 0, 62)) | ||
} | ||
|
89 changes: 89 additions & 0 deletions
89
tests/baselines/reference/inferStringLiteralUnionForBindingElement.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,89 @@ | ||
=== tests/cases/compiler/inferStringLiteralUnionForBindingElement.ts === | ||
declare function func<T extends string>(arg: { keys: T[] }): { readonly keys: T[]; readonly firstKey: T; }; | ||
>func : <T extends string>(arg: { keys: T[];}) => { readonly keys: T[]; readonly firstKey: T;} | ||
>arg : { keys: T[]; } | ||
>keys : T[] | ||
>keys : T[] | ||
>firstKey : T | ||
|
||
function func1() { | ||
>func1 : () => void | ||
|
||
const { firstKey } = func({keys: ["aa", "bb"]}) | ||
>firstKey : "aa" | "bb" | ||
>func({keys: ["aa", "bb"]}) : { readonly keys: ("aa" | "bb")[]; readonly firstKey: "aa" | "bb"; } | ||
>func : <T extends string>(arg: { keys: T[]; }) => { readonly keys: T[]; readonly firstKey: T; } | ||
>{keys: ["aa", "bb"]} : { keys: ("aa" | "bb")[]; } | ||
>keys : ("aa" | "bb")[] | ||
>["aa", "bb"] : ("aa" | "bb")[] | ||
>"aa" : "aa" | ||
>"bb" : "bb" | ||
|
||
const a: "aa" | "bb" = firstKey; | ||
>a : "aa" | "bb" | ||
>firstKey : "aa" | "bb" | ||
|
||
const { keys } = func({keys: ["aa", "bb"]}) | ||
>keys : ("aa" | "bb")[] | ||
>func({keys: ["aa", "bb"]}) : { readonly keys: ("aa" | "bb")[]; readonly firstKey: "aa" | "bb"; } | ||
>func : <T extends string>(arg: { keys: T[]; }) => { readonly keys: T[]; readonly firstKey: T; } | ||
>{keys: ["aa", "bb"]} : { keys: ("aa" | "bb")[]; } | ||
>keys : ("aa" | "bb")[] | ||
>["aa", "bb"] : ("aa" | "bb")[] | ||
>"aa" : "aa" | ||
>"bb" : "bb" | ||
|
||
const b: ("aa" | "bb")[] = keys; | ||
>b : ("aa" | "bb")[] | ||
>keys : ("aa" | "bb")[] | ||
} | ||
|
||
function func2() { | ||
>func2 : () => void | ||
|
||
const { keys, firstKey } = func({keys: ["aa", "bb"]}) | ||
>keys : ("aa" | "bb")[] | ||
>firstKey : "aa" | "bb" | ||
>func({keys: ["aa", "bb"]}) : { readonly keys: ("aa" | "bb")[]; readonly firstKey: "aa" | "bb"; } | ||
>func : <T extends string>(arg: { keys: T[]; }) => { readonly keys: T[]; readonly firstKey: T; } | ||
>{keys: ["aa", "bb"]} : { keys: ("aa" | "bb")[]; } | ||
>keys : ("aa" | "bb")[] | ||
>["aa", "bb"] : ("aa" | "bb")[] | ||
>"aa" : "aa" | ||
>"bb" : "bb" | ||
|
||
const a: "aa" | "bb" = firstKey; | ||
>a : "aa" | "bb" | ||
>firstKey : "aa" | "bb" | ||
|
||
const b: ("aa" | "bb")[] = keys; | ||
>b : ("aa" | "bb")[] | ||
>keys : ("aa" | "bb")[] | ||
} | ||
|
||
function func3() { | ||
>func3 : () => void | ||
|
||
const x = func({keys: ["aa", "bb"]}) | ||
>x : { readonly keys: ("aa" | "bb")[]; readonly firstKey: "aa" | "bb"; } | ||
>func({keys: ["aa", "bb"]}) : { readonly keys: ("aa" | "bb")[]; readonly firstKey: "aa" | "bb"; } | ||
>func : <T extends string>(arg: { keys: T[]; }) => { readonly keys: T[]; readonly firstKey: T; } | ||
>{keys: ["aa", "bb"]} : { keys: ("aa" | "bb")[]; } | ||
>keys : ("aa" | "bb")[] | ||
>["aa", "bb"] : ("aa" | "bb")[] | ||
>"aa" : "aa" | ||
>"bb" : "bb" | ||
|
||
const a: "aa" | "bb" = x.firstKey; | ||
>a : "aa" | "bb" | ||
>x.firstKey : "aa" | "bb" | ||
>x : { readonly keys: ("aa" | "bb")[]; readonly firstKey: "aa" | "bb"; } | ||
>firstKey : "aa" | "bb" | ||
|
||
const b: ("aa" | "bb")[] = x.keys; | ||
>b : ("aa" | "bb")[] | ||
>x.keys : ("aa" | "bb")[] | ||
>x : { readonly keys: ("aa" | "bb")[]; readonly firstKey: "aa" | "bb"; } | ||
>keys : ("aa" | "bb")[] | ||
} | ||
|
21 changes: 21 additions & 0 deletions
21
tests/cases/compiler/inferStringLiteralUnionForBindingElement.ts
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,21 @@ | ||
declare function func<T extends string>(arg: { keys: T[] }): { readonly keys: T[]; readonly firstKey: T; }; | ||
|
||
function func1() { | ||
const { firstKey } = func({keys: ["aa", "bb"]}) | ||
const a: "aa" | "bb" = firstKey; | ||
|
||
const { keys } = func({keys: ["aa", "bb"]}) | ||
const b: ("aa" | "bb")[] = keys; | ||
} | ||
|
||
function func2() { | ||
const { keys, firstKey } = func({keys: ["aa", "bb"]}) | ||
const a: "aa" | "bb" = firstKey; | ||
const b: ("aa" | "bb")[] = keys; | ||
} | ||
|
||
function func3() { | ||
const x = func({keys: ["aa", "bb"]}) | ||
const a: "aa" | "bb" = x.firstKey; | ||
const b: ("aa" | "bb")[] = x.keys; | ||
} |