TypeScript/tests/baselines/reference/propertyAccessibility2.js

16 lines
218 B
TypeScript

//// [propertyAccessibility2.ts]
class C {
private static x = 1;
}
var c = C.x;
//// [propertyAccessibility2.js]
var C = (function () {
function C() {
}
return C;
}());
C.x = 1;
var c = C.x;