TypeScript/tests/cases/compiler/emitThisInObjectLiteralGetter.ts
2017-04-24 14:48:25 -07:00

7 lines
98 B
TypeScript

// @target: es5
const example = {
get foo() {
return item => this.bar(item);
}
};