-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(pipe): replace rest parameters overload (#3945)
* chore(test): add dtslint files and script * chore(dtslint): add zip operator * chore(dtslint): add zip observable * chore(dtslint): rename directory * fix(pipe): replace rest parameters overload Replace the rest parameters overload with a signature that also includes the A-I type parameters. Closes #3841 * test(first): fix problem exposed by pipe fix * test(reduce): fix problem exposed by pipe fix * test(scan): fix problem exposed by pipe fix * test(startWith): fix problem exposed by pipe fix * test(zipAll): fix problem exposed by pipe fix * chore(dtslint): move files * chore(dtslint): add generic custom operator test * chore(pipe): remove redundant type parameter * chore(pipe): remove rest params type param * chore(dtslint): add pipe rest params test
- Loading branch information
Showing
8 changed files
with
195 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
import { Observable, of, OperatorFunction } from 'rxjs'; | ||
import { mapTo } from 'rxjs/operators'; | ||
|
||
function a<I extends string, O extends string>(input: I, output: O): OperatorFunction<I, O>; | ||
function a<I, O extends string>(output: O): OperatorFunction<I, O>; | ||
function a<I, O extends string>(inputOrOutput: I | O, output?: O): OperatorFunction<I, O> { | ||
return mapTo<I, O>(output === undefined ? inputOrOutput as O : output); | ||
} | ||
|
||
describe('pipe', () => { | ||
it('should infer for no arguments', () => { | ||
const o = of('foo').pipe(); // $ExpectType Observable<string> | ||
}); | ||
|
||
it('should infer for 1 argument', () => { | ||
const o = of('foo').pipe(a('1')); // $ExpectType Observable<"1"> | ||
}); | ||
|
||
it('should infer for 2 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2')); // $ExpectType Observable<"2"> | ||
}); | ||
|
||
it('should infer for 3 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3')); // $ExpectType Observable<"3"> | ||
}); | ||
|
||
it('should infer for 4 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4')); // $ExpectType Observable<"4"> | ||
}); | ||
|
||
it('should infer for 5 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5')); // $ExpectType Observable<"5"> | ||
}); | ||
|
||
it('should infer for 6 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6')); // $ExpectType Observable<"6"> | ||
}); | ||
|
||
it('should infer for 7 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7')); // $ExpectType Observable<"7"> | ||
}); | ||
|
||
it('should infer for 8 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7'), a('8')); // $ExpectType Observable<"8"> | ||
}); | ||
|
||
it('should infer for 9 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7'), a('8'), a('9')); // $ExpectType Observable<"9"> | ||
}); | ||
|
||
it('should infer {} for more than 9 arguments', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7'), a('8'), a('9'), a('10')); // $ExpectType Observable<{}> | ||
}); | ||
|
||
it('should require a type assertion for more than 9 arguments', () => { | ||
const o: Observable<'10'> = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7'), a('8'), a('9'), a('10')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 1st argument', () => { | ||
const o = of('foo').pipe(a('#', '1')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 2nd argument', () => { | ||
const o = of('foo').pipe(a('1'), a('#', '2')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 3rd argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('#', '3')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 4th argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('#', '4')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 5th argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('#', '5')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 6th argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('#', '6')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 7th argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('#', '7')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 8th argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7'), a('#', '8')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 9th argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7'), a('8'), a('#', '9')); // $ExpectError | ||
}); | ||
|
||
it('should not enforce types beyond the 9th argument', () => { | ||
const o = of('foo').pipe(a('1'), a('2'), a('3'), a('4'), a('5'), a('6'), a('7'), a('8'), a('9'), a('#', '10')); // $ExpectType Observable<{}> | ||
}); | ||
|
||
it('should support operators that return generics', () => { | ||
const customOperator = () => <T>(a: Observable<T>) => a; | ||
const o = of('foo').pipe(customOperator()); // $ExpectType Observable<string> | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import { pipe, UnaryFunction } from 'rxjs'; | ||
|
||
function a<I extends string, O extends string>(input: I, output: O): UnaryFunction<I, O> { | ||
return i => output; | ||
} | ||
|
||
it('should infer {} for no arguments', () => { | ||
const o = pipe(); // $ExpectType UnaryFunction<{}, {}> | ||
}); | ||
|
||
it('should infer for 1 argument', () => { | ||
const o = pipe(a('0', '1')); // $ExpectType UnaryFunction<"0", "1"> | ||
}); | ||
|
||
it('should infer for 2 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2')); // $ExpectType UnaryFunction<"0", "2"> | ||
}); | ||
|
||
it('should infer for 3 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3')); // $ExpectType UnaryFunction<"0", "3"> | ||
}); | ||
|
||
it('should infer for 4 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4')); // $ExpectType UnaryFunction<"0", "4"> | ||
}); | ||
|
||
it('should infer for 5 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5')); // $ExpectType UnaryFunction<"0", "5"> | ||
}); | ||
|
||
it('should infer for 6 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('5', '6')); // $ExpectType UnaryFunction<"0", "6"> | ||
}); | ||
|
||
it('should infer for 7 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('5', '6'), a('6', '7')); // $ExpectType UnaryFunction<"0", "7"> | ||
}); | ||
|
||
it('should infer for 8 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('5', '6'), a('6', '7'), a('7', '8')); // $ExpectType UnaryFunction<"0", "8"> | ||
}); | ||
|
||
it('should infer for 9 arguments', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('5', '6'), a('6', '7'), a('7', '8'), a('8', '9')); // $ExpectType UnaryFunction<"0", "9"> | ||
}); | ||
|
||
it('should enforce types for the 2nd argument', () => { | ||
const o = pipe(a('0', '1'), a('#', '2')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 3rd argument', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('#', '3')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 4th argument', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('#', '4')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 5th argument', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('#', '5')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 6th argument', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('#', '6')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 7th argument', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('5', '6'), a('#', '7')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 8th argument', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('5', '6'), a('6', '7'), a('#', '8')); // $ExpectError | ||
}); | ||
|
||
it('should enforce types for the 9th argument', () => { | ||
const o = pipe(a('0', '1'), a('1', '2'), a('2', '3'), a('3', '4'), a('4', '5'), a('5', '6'), a('6', '7'), a('7', '8'), a('#', '9')); // $ExpectError | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters