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

22 lines
516 B
Plaintext

=== tests/cases/compiler/functionType.ts ===
function salt() {}
>salt : () => void
salt.apply("hello", []);
>salt.apply("hello", []) : any
>salt.apply : (thisArg: any, argArray?: any) => any
>salt : () => void
>apply : (thisArg: any, argArray?: any) => any
>"hello" : string
>[] : undefined[]
(new Function("return 5"))();
>(new Function("return 5"))() : any
>(new Function("return 5")) : Function
>new Function("return 5") : Function
>Function : FunctionConstructor
>"return 5" : string