TypeScript/tests/baselines/reference/Protected5.js

14 lines
192 B
JavaScript

//// [Protected5.ts]
class C {
protected static m() { }
}
//// [Protected5.js]
var C = (function () {
function C() {
}
C.m = function () {
};
return C;
})();