TypeScript/tests/baselines/reference/Protected9.js

13 lines
186 B
TypeScript
Raw Normal View History

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