TypeScript/tests/baselines/reference/overloadOnConstConstraintChecks3.js

46 lines
1,015 B
TypeScript

//// [overloadOnConstConstraintChecks3.ts]
class A { private x = 1}
class B extends A {}
class C extends A {
public foo() { }
}
function foo(name: 'hi'): B;
function foo(name: 'bye'): C;
function foo(name: string): A;
function foo(name: any): A {
return null;
}
//// [overloadOnConstConstraintChecks3.js]
var __extends = 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 A = (function () {
function A() {
this.x = 1;
}
return A;
})();
var B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
})(A);
var C = (function (_super) {
__extends(C, _super);
function C() {
_super.apply(this, arguments);
}
C.prototype.foo = function () { };
return C;
})(A);
function foo(name) {
return null;
}