TypeScript/tests/baselines/reference/genericArray1.types
2015-04-15 16:44:20 -07:00

29 lines
745 B
Plaintext

=== tests/cases/compiler/genericArray1.ts ===
/*
var n: number[];
interface Array<T> {
map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];
}
interface String{
length: number;
}
*/
var lengths = ["a", "b", "c"].map(x => x.length);
>lengths : number[]
>["a", "b", "c"].map(x => x.length) : number[]
>["a", "b", "c"].map : <U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]
>["a", "b", "c"] : string[]
>"a" : string
>"b" : string
>"c" : string
>map : <U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]
>x => x.length : (x: string) => number
>x : string
>x.length : number
>x : string
>length : number