TypeScript/tests/baselines/reference/genericStaticAnyTypeFunction.js
2014-07-12 17:30:19 -07:00

36 lines
591 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);
};
return A;
})();