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

33 lines
869 B
TypeScript

//// [genericCloneReturnTypes2.ts]
class MyList<T> {
public size: number;
public data: T[];
constructor(n: number) {
this.size = n;
this.data = new Array<T>(this.size);
}
public clone() {
return new MyList<T>(this.size);
}
}
var a: MyList<string>;
var b: MyList<any> = a.clone(); // ok
var c: MyList<string> = a.clone(); // bug was there was an error on this line
var d: MyList<number> = a.clone(); // error
//// [genericCloneReturnTypes2.js]
var MyList = (function () {
function MyList(n) {
this.size = n;
this.data = new Array(this.size);
}
MyList.prototype.clone = function () {
return new MyList(this.size);
};
return MyList;
})();
var a;
var b = a.clone(); // ok
var c = a.clone(); // bug was there was an error on this line
var d = a.clone(); // error