TypeScript/tests/baselines/reference/Protected9.js

13 lines
200 B
TypeScript

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