TypeScript/tests/cases/compiler/promiseChaining1.ts
2014-07-12 17:30:19 -07:00

10 lines
513 B
TypeScript

// 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)/*S*/.then(x => "abc")/*Function*/.then(x => x.length)/*number*/; // Should error on "abc" because it is not a Function
return new Chain2(result);
}
}