TypeScript/tests/cases/compiler/promiseChaining2.ts

10 lines
432 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// same example but with constraints on each type parameter
class Chain2<T extends { length: number }> {
constructor(public value: T) { }
then<S extends Function>(cb: (x: T) => S): Chain2<S> {
var result = cb(this.value);
// should get a fresh type parameter which each then call
var z = this.then(x => result).then(x => "abc").then(x => x.length);
return new Chain2(result);
}
}