TypeScript/tests/cases/compiler/thisCapture1.ts

9 lines
192 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class X {
private y = 0;
public getSettings(keys: string[]): any {
var ret: any;
return ret.always(() => {
this.y = 0;
}).promise();
}
}