TypeScript/tests/baselines/reference/overloadOnConstNoStringImplementation2.js

41 lines
993 B
TypeScript

//// [overloadOnConstNoStringImplementation2.ts]
interface I {
x1(a: number, callback: (x: 'hi') => number);
}
class C implements I {
x1(a: number, callback: (x: 'hi') => number);
x1(a: number, callback: (x: any) => number) {
callback('hi');
callback('bye');
var hm = "hm";
callback(hm);
callback(1);
}
}
var c: C;
c.x1(1, (x: 'hi') => { return 1; } );
c.x1(1, (x: 'bye') => { return 1; } );
c.x1(1, (x: string) => { return 1; } );
c.x1(1, (x: number) => { return 1; } );
//// [overloadOnConstNoStringImplementation2.js]
var C = (function () {
function C() {
}
C.prototype.x1 = function (a, callback) {
callback('hi');
callback('bye');
var hm = "hm";
callback(hm);
callback(1);
};
return C;
})();
var c;
c.x1(1, function (x) { return 1; });
c.x1(1, function (x) { return 1; });
c.x1(1, function (x) { return 1; });
c.x1(1, function (x) { return 1; });