TypeScript/tests/baselines/reference/Protected6.js

13 lines
192 B
JavaScript

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