TypeScript/tests/baselines/reference/tooFewArgumentsInGenericFunctionTypedArgument.types
2014-08-18 19:56:03 -07:00

102 lines
3 KiB
Plaintext

=== tests/cases/compiler/tooFewArgumentsInGenericFunctionTypedArgument.ts ===
interface Collection<T, U> {
>Collection : Collection<T, U>
>T : T
>U : U
length: number;
>length : number
add(x: T, y: U): void;
>add : (x: T, y: U) => void
>x : T
>T : T
>y : U
>U : U
remove(x: T, y: U): boolean;
>remove : (x: T, y: U) => boolean
>x : T
>T : T
>y : U
>U : U
}
interface Combinators {
>Combinators : Combinators
map<T, U, V>(c: Collection<T,U>, f: (x: T, y: U) => V): Collection<T, V>;
>map : { <T, U, V>(c: Collection<T, U>, f: (x: T, y: U) => V): Collection<T, V>; <T, U>(c: Collection<T, U>, f: (x: T, y: U) => any): Collection<any, any>; }
>T : T
>U : U
>V : V
>c : Collection<T, U>
>Collection : Collection<T, U>
>T : T
>U : U
>f : (x: T, y: U) => V
>x : T
>T : T
>y : U
>U : U
>V : V
>Collection : Collection<T, U>
>T : T
>V : V
map<T, U>(c: Collection<T,U>, f: (x: T, y: U) => any): Collection<any, any>;
>map : { <T, U, V>(c: Collection<T, U>, f: (x: T, y: U) => V): Collection<T, V>; <T, U>(c: Collection<T, U>, f: (x: T, y: U) => any): Collection<any, any>; }
>T : T
>U : U
>c : Collection<T, U>
>Collection : Collection<T, U>
>T : T
>U : U
>f : (x: T, y: U) => any
>x : T
>T : T
>y : U
>U : U
>Collection : Collection<T, U>
}
var c2: Collection<number, string>;
>c2 : Collection<number, string>
>Collection : Collection<T, U>
var _: Combinators;
>_ : Combinators
>Combinators : Combinators
var r1a = _.map(c2, (x) => { return x.toFixed() });
>r1a : Collection<number, string>
>_.map(c2, (x) => { return x.toFixed() }) : Collection<number, string>
>_.map : { <T, U, V>(c: Collection<T, U>, f: (x: T, y: U) => V): Collection<T, V>; <T, U>(c: Collection<T, U>, f: (x: T, y: U) => any): Collection<any, any>; }
>_ : Combinators
>map : { <T, U, V>(c: Collection<T, U>, f: (x: T, y: U) => V): Collection<T, V>; <T, U>(c: Collection<T, U>, f: (x: T, y: U) => any): Collection<any, any>; }
>c2 : Collection<number, string>
>(x) => { return x.toFixed() } : (x: number) => string
>x : number
>x.toFixed() : string
>x.toFixed : (fractionDigits?: number) => string
>x : number
>toFixed : (fractionDigits?: number) => string
var rf1 = (x: number) => { return x.toFixed() };
>rf1 : (x: number) => string
>(x: number) => { return x.toFixed() } : (x: number) => string
>x : number
>x.toFixed() : string
>x.toFixed : (fractionDigits?: number) => string
>x : number
>toFixed : (fractionDigits?: number) => string
var r1b = _.map(c2, rf1);
>r1b : Collection<number, string>
>_.map(c2, rf1) : Collection<number, string>
>_.map : { <T, U, V>(c: Collection<T, U>, f: (x: T, y: U) => V): Collection<T, V>; <T, U>(c: Collection<T, U>, f: (x: T, y: U) => any): Collection<any, any>; }
>_ : Combinators
>map : { <T, U, V>(c: Collection<T, U>, f: (x: T, y: U) => V): Collection<T, V>; <T, U>(c: Collection<T, U>, f: (x: T, y: U) => any): Collection<any, any>; }
>c2 : Collection<number, string>
>rf1 : (x: number) => string