TypeScript/tests/cases/compiler/thisCapture1.ts
2014-07-12 17:30:19 -07:00

9 lines
192 B
TypeScript

class X {
private y = 0;
public getSettings(keys: string[]): any {
var ret: any;
return ret.always(() => {
this.y = 0;
}).promise();
}
}