-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Component commits: a2b3af2 Elevate mapped types over type parameters in the same way as naked type parameters in intersection inference prioritization
- Loading branch information
Showing
9 changed files
with
680 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,63 @@ | ||
//// [vueLikeDataAndPropsInference.ts] | ||
interface Instance { | ||
_instanceBrand: never | ||
} | ||
|
||
type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data | ||
|
||
type PropsDefinition<T> = { | ||
[K in keyof T]: T[K] | ||
} | ||
|
||
interface Options< | ||
Data = ((this: Instance) => object), | ||
PropsDef = {} | ||
> { | ||
data?: Data | ||
props?: PropsDef | ||
watch?: Record<string, WatchHandler<any>> | ||
} | ||
|
||
type WatchHandler<T> = (val: T, oldVal: T) => void; | ||
|
||
type ThisTypedOptions<Data, Props> = | ||
Options<DataDef<Data, Props>, PropsDefinition<Props>> & | ||
ThisType<Data & Readonly<Props> & Instance> | ||
|
||
declare function test<Data, Props>(fn: ThisTypedOptions<Data, Props>): void; | ||
declare function test(fn: Options): void; | ||
|
||
test({ | ||
props: { | ||
foo: '' | ||
}, | ||
|
||
data(): { bar: boolean } { | ||
return { | ||
bar: true | ||
} | ||
}, | ||
|
||
watch: { | ||
foo(newVal: string, oldVal: string): void { | ||
this.bar = false | ||
} | ||
} | ||
}) | ||
|
||
//// [vueLikeDataAndPropsInference.js] | ||
test({ | ||
props: { | ||
foo: '' | ||
}, | ||
data: function () { | ||
return { | ||
bar: true | ||
}; | ||
}, | ||
watch: { | ||
foo: function (newVal, oldVal) { | ||
this.bar = false; | ||
} | ||
} | ||
}); |
130 changes: 130 additions & 0 deletions
130
tests/baselines/reference/vueLikeDataAndPropsInference.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,130 @@ | ||
=== tests/cases/compiler/vueLikeDataAndPropsInference.ts === | ||
interface Instance { | ||
>Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0)) | ||
|
||
_instanceBrand: never | ||
>_instanceBrand : Symbol(Instance._instanceBrand, Decl(vueLikeDataAndPropsInference.ts, 0, 20)) | ||
} | ||
|
||
type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data | ||
>DataDef : Symbol(DataDef, Decl(vueLikeDataAndPropsInference.ts, 2, 1)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 4, 13)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 4, 18)) | ||
>this : Symbol(this, Decl(vueLikeDataAndPropsInference.ts, 4, 29)) | ||
>Readonly : Symbol(Readonly, Decl(lib.es5.d.ts, --, --)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 4, 18)) | ||
>Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 4, 13)) | ||
|
||
type PropsDefinition<T> = { | ||
>PropsDefinition : Symbol(PropsDefinition, Decl(vueLikeDataAndPropsInference.ts, 4, 70)) | ||
>T : Symbol(T, Decl(vueLikeDataAndPropsInference.ts, 6, 21)) | ||
|
||
[K in keyof T]: T[K] | ||
>K : Symbol(K, Decl(vueLikeDataAndPropsInference.ts, 7, 5)) | ||
>T : Symbol(T, Decl(vueLikeDataAndPropsInference.ts, 6, 21)) | ||
>T : Symbol(T, Decl(vueLikeDataAndPropsInference.ts, 6, 21)) | ||
>K : Symbol(K, Decl(vueLikeDataAndPropsInference.ts, 7, 5)) | ||
} | ||
|
||
interface Options< | ||
>Options : Symbol(Options, Decl(vueLikeDataAndPropsInference.ts, 8, 1)) | ||
|
||
Data = ((this: Instance) => object), | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 10, 18)) | ||
>this : Symbol(this, Decl(vueLikeDataAndPropsInference.ts, 11, 13)) | ||
>Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0)) | ||
|
||
PropsDef = {} | ||
>PropsDef : Symbol(PropsDef, Decl(vueLikeDataAndPropsInference.ts, 11, 40)) | ||
|
||
> { | ||
data?: Data | ||
>data : Symbol(Options.data, Decl(vueLikeDataAndPropsInference.ts, 13, 7)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 10, 18)) | ||
|
||
props?: PropsDef | ||
>props : Symbol(Options.props, Decl(vueLikeDataAndPropsInference.ts, 14, 15)) | ||
>PropsDef : Symbol(PropsDef, Decl(vueLikeDataAndPropsInference.ts, 11, 40)) | ||
|
||
watch?: Record<string, WatchHandler<any>> | ||
>watch : Symbol(Options.watch, Decl(vueLikeDataAndPropsInference.ts, 15, 20)) | ||
>Record : Symbol(Record, Decl(lib.es5.d.ts, --, --)) | ||
>WatchHandler : Symbol(WatchHandler, Decl(vueLikeDataAndPropsInference.ts, 17, 1)) | ||
} | ||
|
||
type WatchHandler<T> = (val: T, oldVal: T) => void; | ||
>WatchHandler : Symbol(WatchHandler, Decl(vueLikeDataAndPropsInference.ts, 17, 1)) | ||
>T : Symbol(T, Decl(vueLikeDataAndPropsInference.ts, 19, 18)) | ||
>val : Symbol(val, Decl(vueLikeDataAndPropsInference.ts, 19, 24)) | ||
>T : Symbol(T, Decl(vueLikeDataAndPropsInference.ts, 19, 18)) | ||
>oldVal : Symbol(oldVal, Decl(vueLikeDataAndPropsInference.ts, 19, 31)) | ||
>T : Symbol(T, Decl(vueLikeDataAndPropsInference.ts, 19, 18)) | ||
|
||
type ThisTypedOptions<Data, Props> = | ||
>ThisTypedOptions : Symbol(ThisTypedOptions, Decl(vueLikeDataAndPropsInference.ts, 19, 51)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 21, 22)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 21, 27)) | ||
|
||
Options<DataDef<Data, Props>, PropsDefinition<Props>> & | ||
>Options : Symbol(Options, Decl(vueLikeDataAndPropsInference.ts, 8, 1)) | ||
>DataDef : Symbol(DataDef, Decl(vueLikeDataAndPropsInference.ts, 2, 1)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 21, 22)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 21, 27)) | ||
>PropsDefinition : Symbol(PropsDefinition, Decl(vueLikeDataAndPropsInference.ts, 4, 70)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 21, 27)) | ||
|
||
ThisType<Data & Readonly<Props> & Instance> | ||
>ThisType : Symbol(ThisType, Decl(lib.es5.d.ts, --, --)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 21, 22)) | ||
>Readonly : Symbol(Readonly, Decl(lib.es5.d.ts, --, --)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 21, 27)) | ||
>Instance : Symbol(Instance, Decl(vueLikeDataAndPropsInference.ts, 0, 0)) | ||
|
||
declare function test<Data, Props>(fn: ThisTypedOptions<Data, Props>): void; | ||
>test : Symbol(test, Decl(vueLikeDataAndPropsInference.ts, 23, 47), Decl(vueLikeDataAndPropsInference.ts, 25, 76)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 25, 22)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 25, 27)) | ||
>fn : Symbol(fn, Decl(vueLikeDataAndPropsInference.ts, 25, 35)) | ||
>ThisTypedOptions : Symbol(ThisTypedOptions, Decl(vueLikeDataAndPropsInference.ts, 19, 51)) | ||
>Data : Symbol(Data, Decl(vueLikeDataAndPropsInference.ts, 25, 22)) | ||
>Props : Symbol(Props, Decl(vueLikeDataAndPropsInference.ts, 25, 27)) | ||
|
||
declare function test(fn: Options): void; | ||
>test : Symbol(test, Decl(vueLikeDataAndPropsInference.ts, 23, 47), Decl(vueLikeDataAndPropsInference.ts, 25, 76)) | ||
>fn : Symbol(fn, Decl(vueLikeDataAndPropsInference.ts, 26, 22)) | ||
>Options : Symbol(Options, Decl(vueLikeDataAndPropsInference.ts, 8, 1)) | ||
|
||
test({ | ||
>test : Symbol(test, Decl(vueLikeDataAndPropsInference.ts, 23, 47), Decl(vueLikeDataAndPropsInference.ts, 25, 76)) | ||
|
||
props: { | ||
>props : Symbol(props, Decl(vueLikeDataAndPropsInference.ts, 28, 6)) | ||
|
||
foo: '' | ||
>foo : Symbol(foo, Decl(vueLikeDataAndPropsInference.ts, 29, 12)) | ||
|
||
}, | ||
|
||
data(): { bar: boolean } { | ||
>data : Symbol(data, Decl(vueLikeDataAndPropsInference.ts, 31, 6)) | ||
>bar : Symbol(bar, Decl(vueLikeDataAndPropsInference.ts, 33, 13)) | ||
|
||
return { | ||
bar: true | ||
>bar : Symbol(bar, Decl(vueLikeDataAndPropsInference.ts, 34, 16)) | ||
} | ||
}, | ||
|
||
watch: { | ||
>watch : Symbol(watch, Decl(vueLikeDataAndPropsInference.ts, 37, 6)) | ||
|
||
foo(newVal: string, oldVal: string): void { | ||
>foo : Symbol(foo, Decl(vueLikeDataAndPropsInference.ts, 39, 12)) | ||
>newVal : Symbol(newVal, Decl(vueLikeDataAndPropsInference.ts, 40, 12)) | ||
>oldVal : Symbol(oldVal, Decl(vueLikeDataAndPropsInference.ts, 40, 27)) | ||
|
||
this.bar = false | ||
} | ||
} | ||
}) |
97 changes: 97 additions & 0 deletions
97
tests/baselines/reference/vueLikeDataAndPropsInference.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,97 @@ | ||
=== tests/cases/compiler/vueLikeDataAndPropsInference.ts === | ||
interface Instance { | ||
_instanceBrand: never | ||
>_instanceBrand : never | ||
} | ||
|
||
type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data | ||
>DataDef : DataDef<Data, Props> | ||
>this : Readonly<Props> & Instance | ||
|
||
type PropsDefinition<T> = { | ||
>PropsDefinition : PropsDefinition<T> | ||
|
||
[K in keyof T]: T[K] | ||
} | ||
|
||
interface Options< | ||
Data = ((this: Instance) => object), | ||
>this : Instance | ||
|
||
PropsDef = {} | ||
> { | ||
data?: Data | ||
>data : Data | ||
|
||
props?: PropsDef | ||
>props : PropsDef | ||
|
||
watch?: Record<string, WatchHandler<any>> | ||
>watch : Record<string, WatchHandler<any>> | ||
} | ||
|
||
type WatchHandler<T> = (val: T, oldVal: T) => void; | ||
>WatchHandler : WatchHandler<T> | ||
>val : T | ||
>oldVal : T | ||
|
||
type ThisTypedOptions<Data, Props> = | ||
>ThisTypedOptions : ThisTypedOptions<Data, Props> | ||
|
||
Options<DataDef<Data, Props>, PropsDefinition<Props>> & | ||
ThisType<Data & Readonly<Props> & Instance> | ||
|
||
declare function test<Data, Props>(fn: ThisTypedOptions<Data, Props>): void; | ||
>test : { <Data, Props>(fn: ThisTypedOptions<Data, Props>): void; (fn: Options<(this: Instance) => object, {}>): void; } | ||
>fn : ThisTypedOptions<Data, Props> | ||
|
||
declare function test(fn: Options): void; | ||
>test : { <Data, Props>(fn: ThisTypedOptions<Data, Props>): void; (fn: Options<(this: Instance) => object, {}>): void; } | ||
>fn : Options<(this: Instance) => object, {}> | ||
|
||
test({ | ||
>test({ props: { foo: '' }, data(): { bar: boolean } { return { bar: true } }, watch: { foo(newVal: string, oldVal: string): void { this.bar = false } }}) : void | ||
>test : { <Data, Props>(fn: ThisTypedOptions<Data, Props>): void; (fn: Options<(this: Instance) => object, {}>): void; } | ||
>{ props: { foo: '' }, data(): { bar: boolean } { return { bar: true } }, watch: { foo(newVal: string, oldVal: string): void { this.bar = false } }} : { props: { foo: string; }; data(this: Readonly<{ foo: string; }> & Instance): { bar: boolean; }; watch: { foo(newVal: string, oldVal: string): void; }; } | ||
|
||
props: { | ||
>props : { foo: string; } | ||
>{ foo: '' } : { foo: string; } | ||
|
||
foo: '' | ||
>foo : string | ||
>'' : "" | ||
|
||
}, | ||
|
||
data(): { bar: boolean } { | ||
>data : (this: Readonly<{ foo: string; }> & Instance) => { bar: boolean; } | ||
>bar : boolean | ||
|
||
return { | ||
>{ bar: true } : { bar: true; } | ||
|
||
bar: true | ||
>bar : true | ||
>true : true | ||
} | ||
}, | ||
|
||
watch: { | ||
>watch : { foo(newVal: string, oldVal: string): void; } | ||
>{ foo(newVal: string, oldVal: string): void { this.bar = false } } : { foo(newVal: string, oldVal: string): void; } | ||
|
||
foo(newVal: string, oldVal: string): void { | ||
>foo : (newVal: string, oldVal: string) => void | ||
>newVal : string | ||
>oldVal : string | ||
|
||
this.bar = false | ||
>this.bar = false : false | ||
>this.bar : any | ||
>this : any | ||
>bar : any | ||
>false : false | ||
} | ||
} | ||
}) |
64 changes: 64 additions & 0 deletions
64
tests/baselines/reference/vueLikeDataAndPropsInference2.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,64 @@ | ||
//// [vueLikeDataAndPropsInference2.ts] | ||
interface Instance { | ||
_instanceBrand: never | ||
} | ||
|
||
type DataDef<Data, Props> = (this: Readonly<Props> & Instance) => Data | ||
|
||
type PropsDefinition<T> = { | ||
[K in keyof T]: T[K] | ||
} | ||
|
||
interface Options< | ||
Data = object | ((this: Instance) => object), | ||
PropsDef = PropsDefinition<Record<string, any>> | ||
> { | ||
data?: Data | ||
props?: PropsDef | ||
watch?: Record<string, WatchHandler<any>> | ||
} | ||
|
||
type WatchHandler<T> = (val: T, oldVal: T) => void; | ||
|
||
type ThisTypedOptions<Data, Props> = | ||
object & | ||
Options<DataDef<Data, Props>, PropsDefinition<Props>> & | ||
ThisType<Data & Readonly<Props> & Instance> | ||
|
||
declare function test<Data, Props>(fn: ThisTypedOptions<Data, Props>): void; | ||
declare function test(fn: Options): void; | ||
|
||
test({ | ||
props: { | ||
foo: '' | ||
}, | ||
|
||
data(): { bar: boolean } { | ||
return { | ||
bar: true | ||
} | ||
}, | ||
|
||
watch: { | ||
foo(newVal: string, oldVal: string): void { | ||
this.bar = false | ||
} | ||
} | ||
}) | ||
|
||
//// [vueLikeDataAndPropsInference2.js] | ||
test({ | ||
props: { | ||
foo: '' | ||
}, | ||
data: function () { | ||
return { | ||
bar: true | ||
}; | ||
}, | ||
watch: { | ||
foo: function (newVal, oldVal) { | ||
this.bar = false; | ||
} | ||
} | ||
}); |
Oops, something went wrong.