TypeScript/tests/baselines/reference/numericIndexerConstraint4.js
Nathan Shively-Sanders 5138e8be8e Correct tests and update baselines.
A lot of tests used non-numeric property names for object literals that
are contextually typed only by a numeric indexer.
2016-05-25 11:37:10 -07:00

34 lines
706 B
TypeScript

//// [numericIndexerConstraint4.ts]
class A {
foo: number;
}
class B extends A {
bar: string;
}
var x: {
[idx: number]: A;
} = { 0: new B() }
//// [numericIndexerConstraint4.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; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var A = (function () {
function A() {
}
return A;
}());
var B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
}(A));
var x = { 0: new B() };