TypeScript/tests/cases/compiler/declFileObjectLiteralWithOnlyGetter.ts

11 lines
199 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @declaration: true
// @target: es5
2014-07-13 01:04:16 +02:00
function /*1*/makePoint(x: number) {
return {
get x() { return x; },
};
};
var /*4*/point = makePoint(2);
var /*2*/x = point./*3*/x;