TypeScript/tests/baselines/reference/Protected6.js

13 lines
187 B
TypeScript

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