TypeScript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionThisCapturing.ts

15 lines
209 B
TypeScript
Raw Normal View History

2015-01-07 20:54:22 +01:00
// @target:es5
var f1 = () => {
this.age = 10
};
var f2 = (x: string) => {
this.name = x
}
function foo(func: () => boolean) { }
foo(() => {
this.age = 100;
return true;
});