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

13 lines
186 B
TypeScript

//// [Protected9.ts]
class C {
constructor(protected p) { }
}
//// [Protected9.js]
var C = (function () {
function C(p) {
this.p = p;
}
return C;
}());