TypeScript/tests/baselines/reference/overloadOnConstConstraintChecks2.js
2015-06-16 12:18:31 -07:00

43 lines
1,018 B
TypeScript

//// [overloadOnConstConstraintChecks2.ts]
class A {}
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;
}
//// [overloadOnConstConstraintChecks2.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 C = (function (_super) {
__extends(C, _super);
function C() {
_super.apply(this, arguments);
}
C.prototype.foo = function () { };
return C;
})(A);
function foo(name) {
return null;
}