TypeScript/tests/baselines/reference/noImplicitAnyInContextuallyTypesFunctionParamter.types

23 lines
1.3 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/noImplicitAnyInContextuallyTypesFunctionParamter.ts ===
var regexMatchList = ['', ''];
>regexMatchList : string[]
2014-08-15 23:33:16 +02:00
>['', ''] : string[]
2015-04-13 21:36:11 +02:00
>'' : string
>'' : string
2014-08-15 23:33:16 +02:00
regexMatchList.forEach(match => ''.replace(match, ''));
>regexMatchList.forEach(match => ''.replace(match, '')) : void
>regexMatchList.forEach : (callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void
>regexMatchList : string[]
>forEach : (callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void
2014-08-15 23:33:16 +02:00
>match => ''.replace(match, '') : (match: string) => string
>match : string
2014-08-15 23:33:16 +02:00
>''.replace(match, '') : string
>''.replace : { (searchValue: string, replaceValue: string): string; (searchValue: string, replaceValue: (substring: string, ...args: any[]) => string): string; (searchValue: RegExp, replaceValue: string): string; (searchValue: RegExp, replaceValue: (substring: string, ...args: any[]) => string): string; }
2015-04-13 21:36:11 +02:00
>'' : string
>replace : { (searchValue: string, replaceValue: string): string; (searchValue: string, replaceValue: (substring: string, ...args: any[]) => string): string; (searchValue: RegExp, replaceValue: string): string; (searchValue: RegExp, replaceValue: (substring: string, ...args: any[]) => string): string; }
>match : string
2015-04-13 21:36:11 +02:00
>'' : string
2014-08-15 23:33:16 +02:00