TypeScript/tests/cases/compiler/emitThisInObjectLiteralGetter.ts

7 lines
98 B
TypeScript
Raw Normal View History

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