TypeScript/tests/baselines/reference/Protected7.js

13 lines
198 B
TypeScript

//// [Protected7.ts]
class C {
protected private m() { }
}
//// [Protected7.js]
var C = (function () {
function C() {
}
C.prototype.m = function () { };
return C;
})();