TypeScript/tests/baselines/reference/Protected4.js
2015-12-08 17:51:10 -08:00

13 lines
197 B
TypeScript

//// [Protected4.ts]
class C {
protected public m() { }
}
//// [Protected4.js]
var C = (function () {
function C() {
}
C.prototype.m = function () { };
return C;
}());