//// [derivedClassOverridesProtectedMembers4.ts] var x: { foo: string; } var y: { foo: string; bar: string; } class Base { protected a: typeof x; } class Derived1 extends Base { public a: typeof x; } class Derived2 extends Derived1 { protected a: typeof x; // Error, parent was public } //// [derivedClassOverridesProtectedMembers4.js] var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var x; var y; var Base = /** @class */ (function () { function Base() { } return Base; }()); var Derived1 = /** @class */ (function (_super) { __extends(Derived1, _super); function Derived1() { return _super !== null && _super.apply(this, arguments) || this; } return Derived1; }(Base)); var Derived2 = /** @class */ (function (_super) { __extends(Derived2, _super); function Derived2() { return _super !== null && _super.apply(this, arguments) || this; } return Derived2; }(Derived1));