TypeScript/tests/baselines/reference/implementPublicPropertyAsPrivate.js

16 lines
332 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [implementPublicPropertyAsPrivate.ts]
interface I {
x: number;
}
class C implements I {
private x = 0; // should raise error at class decl
}
//// [implementPublicPropertyAsPrivate.js]
var C = (function () {
function C() {
this.x = 0; // should raise error at class decl
2014-07-13 01:04:16 +02:00
}
return C;
})();