TypeScript/tests/baselines/reference/privateStaticNotAccessibleInClodule.js
2014-07-12 17:30:19 -07:00

23 lines
489 B
JavaScript

//// [privateStaticNotAccessibleInClodule.ts]
// Any attempt to access a private property member outside the class body that contains its declaration results in a compile-time error.
class C {
private foo: string;
private static bar: string;
}
module C {
export var y = C.bar; // error
}
//// [privateStaticNotAccessibleInClodule.js]
var C = (function () {
function C() {
}
return C;
})();
var C;
(function (C) {
C.y = C.bar;
})(C || (C = {}));