TypeScript/tests/baselines/reference/memberFunctionsWithPrivateOverloads.js
Sheetal Nandi 6ab3adfd43 Modified the emitComment logic to handle emitting leading or trailing spaces depending on flags
Leading comments have trailing separator while trailing comments have leading space
This removes the extra trailing space in the trailing comments
2014-08-15 14:32:08 -07:00

85 lines
1.9 KiB
JavaScript

//// [memberFunctionsWithPrivateOverloads.ts]
class C {
private foo(x: number);
private foo(x: number, y: string);
private foo(x: any, y?: any) { }
private bar(x: 'hi');
private bar(x: string);
private bar(x: number, y: string);
private bar(x: any, y?: any) { }
private static foo(x: number);
private static foo(x: number, y: string);
private static foo(x: any, y?: any) { }
private static bar(x: 'hi');
private static bar(x: string);
private static bar(x: number, y: string);
private static bar(x: any, y?: any) { }
}
class D<T> {
private foo(x: number);
private foo(x: T, y: T);
private foo(x: any, y?: any) { }
private bar(x: 'hi');
private bar(x: string);
private bar(x: T, y: T);
private bar(x: any, y?: any) { }
private static foo(x: number);
private static foo(x: number, y: number);
private static foo(x: any, y?: any) { }
private static bar(x: 'hi');
private static bar(x: string);
private static bar(x: number, y: number);
private static bar(x: any, y?: any) { }
}
var c: C;
var r = c.foo(1); // error
var d: D<number>;
var r2 = d.foo(2); // error
var r3 = C.foo(1); // error
var r4 = D.bar(''); // error
//// [memberFunctionsWithPrivateOverloads.js]
var C = (function () {
function C() {
}
C.prototype.foo = function (x, y) {
};
C.prototype.bar = function (x, y) {
};
C.foo = function (x, y) {
};
C.bar = function (x, y) {
};
return C;
})();
var D = (function () {
function D() {
}
D.prototype.foo = function (x, y) {
};
D.prototype.bar = function (x, y) {
};
D.foo = function (x, y) {
};
D.bar = function (x, y) {
};
return D;
})();
var c;
var r = c.foo(1); // error
var d;
var r2 = d.foo(2); // error
var r3 = C.foo(1); // error
var r4 = D.bar(''); // error