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

13 lines
187 B
JavaScript

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