TypeScript/tests/baselines/reference/Protected5.js

13 lines
187 B
TypeScript
Raw Normal View History

2014-09-20 02:58:41 +02:00
//// [Protected5.ts]
class C {
protected static m() { }
}
//// [Protected5.js]
var C = (function () {
function C() {
}
C.m = function () { };
2014-09-20 02:58:41 +02:00
return C;
})();