TypeScript/tests/cases/compiler/declFileObjectLiteralWithAccessors.ts
2015-10-28 13:07:08 -07:00

13 lines
270 B
TypeScript

// @declaration: true
// @target: es5
function /*1*/makePoint(x: number) {
return {
b: 10,
get x() { return x; },
set x(a: number) { this.b = a; }
};
};
var /*4*/point = makePoint(2);
var /*2*/x = point.x;
point./*3*/x = 30;