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

104 lines
1.8 KiB
TypeScript

//// [arrayLiteralTypeInference.ts]
class Action {
id: number;
}
class ActionA extends Action {
value: string;
}
class ActionB extends Action {
trueNess: boolean;
}
var x1: Action[] = [
{ id: 2, trueness: false },
{ id: 3, name: "three" }
]
var x2: Action[] = [
new ActionA(),
new ActionB()
]
var x3: Action[] = [
new Action(),
new ActionA(),
new ActionB()
]
var z1: { id: number }[] =
[
{ id: 2, trueness: false },
{ id: 3, name: "three" }
]
var z2: { id: number }[] =
[
new ActionA(),
new ActionB()
]
var z3: { id: number }[] =
[
new Action(),
new ActionA(),
new ActionB()
]
//// [arrayLiteralTypeInference.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 Action = (function () {
function Action() {
}
return Action;
}());
var ActionA = (function (_super) {
__extends(ActionA, _super);
function ActionA() {
_super.apply(this, arguments);
}
return ActionA;
}(Action));
var ActionB = (function (_super) {
__extends(ActionB, _super);
function ActionB() {
_super.apply(this, arguments);
}
return ActionB;
}(Action));
var x1 = [
{ id: 2, trueness: false },
{ id: 3, name: "three" }
];
var x2 = [
new ActionA(),
new ActionB()
];
var x3 = [
new Action(),
new ActionA(),
new ActionB()
];
var z1 = [
{ id: 2, trueness: false },
{ id: 3, name: "three" }
];
var z2 = [
new ActionA(),
new ActionB()
];
var z3 = [
new Action(),
new ActionA(),
new ActionB()
];