TypeScript/tests/baselines/reference/fatarrowfunctionsInFunctions.js
2014-07-12 17:30:19 -07:00

27 lines
610 B
TypeScript

//// [fatarrowfunctionsInFunctions.ts]
declare function setTimeout(expression: any, msec?: number, language?: any): number;
var messenger = {
message: "Hello World",
start: function() {
var _self = this;
setTimeout(function() {
_self.message.toString();
}, 3000);
}
};
messenger.start();
//// [fatarrowfunctionsInFunctions.js]
var messenger = {
message: "Hello World",
start: function () {
var _self = this;
setTimeout(function () {
_self.message.toString();
}, 3000);
}
};
messenger.start();