TypeScript/tests/baselines/reference/fatarrowfunctionsInFunctions.types

47 lines
1.5 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/fatarrowfunctionsInFunctions.ts ===
declare function setTimeout(expression: any, msec?: number, language?: any): number;
>setTimeout : (expression: any, msec?: number, language?: any) => number
>expression : any
>msec : number
>language : any
2014-08-15 23:33:16 +02:00
var messenger = {
>messenger : { message: string; start: () => void; }
2014-08-22 03:39:46 +02:00
>{ message: "Hello World", start: function() { var _self = this; setTimeout(function() { _self.message.toString(); }, 3000); }} : { message: string; start: () => void; }
2014-08-15 23:33:16 +02:00
message: "Hello World",
>message : string
2015-04-13 21:36:11 +02:00
>"Hello World" : string
2014-08-15 23:33:16 +02:00
start: function() {
>start : () => void
2014-08-22 03:39:46 +02:00
>function() { var _self = this; setTimeout(function() { _self.message.toString(); }, 3000); } : () => void
2014-08-15 23:33:16 +02:00
var _self = this;
>_self : any
2014-08-15 23:33:16 +02:00
>this : any
setTimeout(function() {
2014-08-22 03:39:46 +02:00
>setTimeout(function() { _self.message.toString(); }, 3000) : number
>setTimeout : (expression: any, msec?: number, language?: any) => number
2014-08-22 03:39:46 +02:00
>function() { _self.message.toString(); } : () => void
2014-08-15 23:33:16 +02:00
_self.message.toString();
>_self.message.toString() : any
>_self.message.toString : any
>_self.message : any
>_self : any
2014-08-15 23:33:16 +02:00
>message : any
>toString : any
}, 3000);
2015-04-13 21:36:11 +02:00
>3000 : number
2014-08-15 23:33:16 +02:00
}
};
messenger.start();
>messenger.start() : void
>messenger.start : () => void
>messenger : { message: string; start: () => void; }
>start : () => void
2014-08-15 23:33:16 +02:00