TypeScript/tests/baselines/reference/genericStaticAnyTypeFunction.js
Sheetal Nandi 1b5023bad3 Emit leading/trailing comments for return statement
Note the detachedComments and copyright headers comment emitting is not part of this change
2014-08-15 15:16:17 -07:00

36 lines
611 B
JavaScript

//// [genericStaticAnyTypeFunction.ts]
class A {
static one<T>(source: T, value: number): T {
return source;
}
static goo() { return 0; }
static two<T>(source: T): T {
return this.one<T>(source, 42); // should not error
}
}
//// [genericStaticAnyTypeFunction.js]
var A = (function () {
function A() {
}
A.one = function (source, value) {
return source;
};
A.goo = function () {
return 0;
};
A.two = function (source) {
return this.one(source, 42); // should not error
};
return A;
})();