TypeScript/tests/baselines/reference/Protected5.js
2014-09-19 17:58:41 -07:00

14 lines
192 B
JavaScript

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