TypeScript/tests/baselines/reference/derivedClassOverridesProtectedMembers2.js
2015-05-01 10:49:54 -07:00

142 lines
3.3 KiB
TypeScript

//// [derivedClassOverridesProtectedMembers2.ts]
var x: { foo: string; }
var y: { foo: string; bar: string; }
class Base {
protected a: typeof x;
protected b(a: typeof x) { }
protected get c() { return x; }
protected set c(v: typeof x) { }
protected d: (a: typeof x) => void ;
protected static r: typeof x;
protected static s(a: typeof x) { }
protected static get t() { return x; }
protected static set t(v: typeof x) { }
protected static u: (a: typeof x) => void ;
constructor(a: typeof x) { }
}
// Increase visibility of all protected members to public
class Derived extends Base {
a: typeof y;
b(a: typeof y) { }
get c() { return y; }
set c(v: typeof y) { }
d: (a: typeof y) => void;
static r: typeof y;
static s(a: typeof y) { }
static get t() { return y; }
static set t(a: typeof y) { }
static u: (a: typeof y) => void;
constructor(a: typeof y) { super(a); }
}
var d: Derived = new Derived(y);
var r1 = d.a;
var r2 = d.b(y);
var r3 = d.c;
var r3a = d.d;
d.c = y;
var r4 = Derived.r;
var r5 = Derived.s(y);
var r6 = Derived.t;
var r6a = Derived.u;
Derived.t = y;
class Base2 {
[i: string]: Object;
[i: number]: typeof x;
}
class Derived2 extends Base2 {
[i: string]: typeof x;
[i: number]: typeof y;
}
var d2: Derived2;
var r7 = d2[''];
var r8 = d2[1];
//// [derivedClassOverridesProtectedMembers2.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
var x;
var y;
var Base = (function () {
function Base(a) {
}
Base.prototype.b = function (a) { };
Object.defineProperty(Base.prototype, "c", {
get: function () { return x; },
set: function (v) { },
enumerable: true,
configurable: true
});
Base.s = function (a) { };
Object.defineProperty(Base, "t", {
get: function () { return x; },
set: function (v) { },
enumerable: true,
configurable: true
});
return Base;
})();
// Increase visibility of all protected members to public
var Derived = (function (_super) {
__extends(Derived, _super);
function Derived(a) {
_super.call(this, a);
}
Derived.prototype.b = function (a) { };
Object.defineProperty(Derived.prototype, "c", {
get: function () { return y; },
set: function (v) { },
enumerable: true,
configurable: true
});
Derived.s = function (a) { };
Object.defineProperty(Derived, "t", {
get: function () { return y; },
set: function (a) { },
enumerable: true,
configurable: true
});
return Derived;
})(Base);
var d = new Derived(y);
var r1 = d.a;
var r2 = d.b(y);
var r3 = d.c;
var r3a = d.d;
d.c = y;
var r4 = Derived.r;
var r5 = Derived.s(y);
var r6 = Derived.t;
var r6a = Derived.u;
Derived.t = y;
var Base2 = (function () {
function Base2() {
}
return Base2;
})();
var Derived2 = (function (_super) {
__extends(Derived2, _super);
function Derived2() {
_super.apply(this, arguments);
}
return Derived2;
})(Base2);
var d2;
var r7 = d2[''];
var r8 = d2[1];