TypeScript/tests/baselines/reference/assignmentCompatWithNumericIndexer3.js
2020-12-01 19:03:49 -05:00

96 lines
2.4 KiB
TypeScript

//// [assignmentCompatWithNumericIndexer3.ts]
// Derived type indexer must be subtype of base type indexer
interface Base { foo: string; }
interface Derived extends Base { bar: string; }
interface Derived2 extends Derived { baz: string; }
class A {
[x: number]: Derived;
}
var a: A;
var b: { [x: number]: Base; };
a = b; // error
b = a; // ok
class B2 extends A {
[x: number]: Derived2; // ok
}
var b2: { [x: number]: Derived2; };
a = b2; // ok
b2 = a; // error
module Generics {
class A<T extends Derived> {
[x: number]: T;
}
function foo<T extends Derived>() {
var a: A<T>;
var b: { [x: number]: Derived; };
a = b; // error
b = a; // ok
var b2: { [x: number]: T; };
a = b2; // ok
b2 = a; // ok
}
}
//// [assignmentCompatWithNumericIndexer3.js]
// Derived type indexer must be subtype of base type indexer
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) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var A = /** @class */ (function () {
function A() {
}
return A;
}());
var a;
var b;
a = b; // error
b = a; // ok
var B2 = /** @class */ (function (_super) {
__extends(B2, _super);
function B2() {
return _super !== null && _super.apply(this, arguments) || this;
}
return B2;
}(A));
var b2;
a = b2; // ok
b2 = a; // error
var Generics;
(function (Generics) {
var A = /** @class */ (function () {
function A() {
}
return A;
}());
function foo() {
var a;
var b;
a = b; // error
b = a; // ok
var b2;
a = b2; // ok
b2 = a; // ok
}
})(Generics || (Generics = {}));