TypeScript/tests/baselines/reference/Protected4.js

13 lines
211 B
TypeScript

//// [Protected4.ts]
class C {
protected public m() { }
}
//// [Protected4.js]
var C = /** @class */ (function () {
function C() {
}
C.prototype.m = function () { };
return C;
}());