TypeScript/tests/baselines/reference/mergedInterfacesWithInheritedPrivates2.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

68 lines
1.2 KiB
TypeScript

//// [mergedInterfacesWithInheritedPrivates2.ts]
class C {
private x: number;
}
class C2 {
private w: number;
}
interface A extends C {
y: string;
}
interface A extends C2 {
z: string;
}
class D extends C implements A { // error
private w: number;
y: string;
z: string;
}
class E extends C2 implements A { // error
w: number;
y: string;
z: string;
}
var a: A;
var r = a.x; // error
var r2 = a.w; // error
//// [mergedInterfacesWithInheritedPrivates2.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 C = (function () {
function C() {
}
return C;
})();
var C2 = (function () {
function C2() {
}
return C2;
})();
var D = (function (_super) {
__extends(D, _super);
function D() {
_super.apply(this, arguments);
}
return D;
})(C);
var E = (function (_super) {
__extends(E, _super);
function E() {
_super.apply(this, arguments);
}
return E;
})(C2);
var a;
var r = a.x; // error
var r2 = a.w; // error