1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
//// [functionOverloadsOutOfOrder.ts]
class d {
private foo(n: number): string;
private foo(ns: any) {
return ns.toString();
}
private foo(s: string): string;
}
class e {
private foo(ns: any) {
return ns.toString();
}
private foo(s: string): string;
private foo(n: number): string;
}
//// [functionOverloadsOutOfOrder.js]
var d = /** @class */ (function () {
function d() {
}
d.prototype.foo = function (ns) {
return ns.toString();
};
return d;
}());
var e = /** @class */ (function () {
function e() {
}
e.prototype.foo = function (ns) {
return ns.toString();
};
return e;
}());
|