TypeScript/tests/baselines/reference/Protected6.js
2015-02-06 18:45:09 -08:00

13 lines
187 B
JavaScript

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