| /third_party/typescript/tests/baselines/reference/ |
| D | bestChoiceType.types | 7 >(''.match(/ /) || []) : RegExpMatchArray 8 >''.match(/ /) || [] : RegExpMatchArray 9 >''.match(/ /) : RegExpMatchArray | null 10 >''.match : (regexp: string | RegExp) => RegExpMatchArray | null 12 >match : (regexp: string | RegExp) => RegExpMatchArray | null 29 >x : RegExpMatchArray | null 30 >''.match(/ /) : RegExpMatchArray | null 31 >''.match : (regexp: string | RegExp) => RegExpMatchArray | null 33 >match : (regexp: string | RegExp) => RegExpMatchArray | null 37 >y : RegExpMatchArray [all …]
|
| D | stringMatchAll.types | 3 >matches : IterableIterator<RegExpMatchArray> 4 >"matchAll".matchAll(/\w/g) : IterableIterator<RegExpMatchArray> 5 >"matchAll".matchAll : (regexp: RegExp) => IterableIterator<RegExpMatchArray> 7 >matchAll : (regexp: RegExp) => IterableIterator<RegExpMatchArray> 11 >array : RegExpMatchArray[] 12 >[...matches] : RegExpMatchArray[] 13 >...matches : RegExpMatchArray 14 >matches : IterableIterator<RegExpMatchArray> 19 >array[0] : RegExpMatchArray 20 >array : RegExpMatchArray[]
|
| D | narrowingWithNonNullExpression.types | 3 >m : RegExpMatchArray 4 >''.match('') : RegExpMatchArray 5 >''.match : (regexp: string | RegExp) => RegExpMatchArray 7 >match : (regexp: string | RegExp) => RegExpMatchArray 12 >m! : RegExpMatchArray 13 >m : RegExpMatchArray 15 >m : RegExpMatchArray 22 >m : RegExpMatchArray 25 >m : RegExpMatchArray
|
| D | regexMatchAll-esnext.types | 3 >matches : IterableIterator<RegExpMatchArray> 4 >/\w/g[Symbol.matchAll]("matchAll") : IterableIterator<RegExpMatchArray> 5 >/\w/g[Symbol.matchAll] : (str: string) => IterableIterator<RegExpMatchArray> 13 >array : RegExpMatchArray[] 14 >[...matches] : RegExpMatchArray[] 15 >...matches : RegExpMatchArray 16 >matches : IterableIterator<RegExpMatchArray> 21 >array[0] : RegExpMatchArray 22 >array : RegExpMatchArray[]
|
| D | regexMatchAll.types | 3 >matches : IterableIterator<RegExpMatchArray> 4 >/\w/g[Symbol.matchAll]("matchAll") : IterableIterator<RegExpMatchArray> 5 >/\w/g[Symbol.matchAll] : (str: string) => IterableIterator<RegExpMatchArray> 13 >array : RegExpMatchArray[] 14 >[...matches] : RegExpMatchArray[] 15 >...matches : RegExpMatchArray 16 >matches : IterableIterator<RegExpMatchArray> 21 >array[0] : RegExpMatchArray 22 >array : RegExpMatchArray[]
|
| D | useRegexpGroups.types | 66 >"foo".match(/(?<bar>foo)/)! : RegExpMatchArray 67 >"foo".match(/(?<bar>foo)/) : RegExpMatchArray 68 …regexp: string | RegExp): RegExpMatchArray; (matcher: { [Symbol.match](string: string): RegExpMatc… 70 …regexp: string | RegExp): RegExpMatchArray; (matcher: { [Symbol.match](string: string): RegExpMatc…
|
| D | initializedDestructuringAssignmentTypes.types | 6 >''.match('') || [] : RegExpMatchArray 7 >''.match('') : RegExpMatchArray 8 >''.match : (regexp: string | RegExp) => RegExpMatchArray 10 >match : (regexp: string | RegExp) => RegExpMatchArray
|
| D | parser630933.types | 7 >b : RegExpMatchArray 8 >a.match(/\/ver=([^/]+)/) : RegExpMatchArray 9 >a.match : (regexp: string | RegExp) => RegExpMatchArray 11 >match : (regexp: string | RegExp) => RegExpMatchArray
|
| D | doYouNeedToChangeYourTargetLibraryES2016Plus.types | 95 >"2019-04-30".match(/(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/g) : RegExpMatchArray 96 …regexp: string | RegExp): RegExpMatchArray; (matcher: { [Symbol.match](string: string): RegExpMatc… 98 …regexp: string | RegExp): RegExpMatchArray; (matcher: { [Symbol.match](string: string): RegExpMatc…
|
| D | useRegexpGroups.symbols | 47 >"foo".match(/(?<bar>foo)/)!.groups : Symbol(RegExpMatchArray.groups, Decl(lib.es2018.regexp.d.ts, … 50 >groups : Symbol(RegExpMatchArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))
|
| D | parserharness.types | 280 >bugs : RegExpMatchArray 281 >content.match(/\bbug (\d+)/i) : RegExpMatchArray 282 >content.match : (regexp: string | RegExp) => RegExpMatchArray 284 >match : (regexp: string | RegExp) => RegExpMatchArray 288 >bugs : RegExpMatchArray 293 >bugs : RegExpMatchArray 4848 >match : RegExpMatchArray 4849 >errorLines[i].match(/([^\(]*)\((\d+),(\d+)\):\s+((.*[\s\r\n]*.*)+)\s*$/) : RegExpMatchArray 4850 >errorLines[i].match : (regexp: string | RegExp) => RegExpMatchArray 4854 >match : (regexp: string | RegExp) => RegExpMatchArray [all …]
|
| D | doYouNeedToChangeYourTargetLibraryES2016Plus.errors.txt | 11 …ts(16,113): error TS2550: Property 'groups' does not exist on type 'RegExpMatchArray'. Do you need… 74 !!! error TS2550: Property 'groups' does not exist on type 'RegExpMatchArray'. Do you need to chang…
|
| /third_party/typescript/lib/ |
| D | lib.es2015.symbol.wellknown.d.ts | 187 [Symbol.match](string: string): RegExpMatchArray | null; 239 …match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | n…
|
| D | lib.es2020.string.d.ts | 29 matchAll(regexp: RegExp): IterableIterator<RegExpMatchArray>;
|
| D | lib.es2020.symbol.wellknown.d.ts | 38 [Symbol.matchAll](str: string): IterableIterator<RegExpMatchArray>;
|
| D | lib.es2018.regexp.d.ts | 21 interface RegExpMatchArray { interface
|
| D | lib.es5.d.ts | 440 match(regexp: string | RegExp): RegExpMatchArray | null; 909 interface RegExpMatchArray extends Array<string> { interface
|
| /third_party/typescript/src/lib/ |
| D | es2015.symbol.wellknown.d.ts | 167 [Symbol.match](string: string): RegExpMatchArray | null; 219 …match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | n…
|
| D | es2020.string.d.ts | 9 matchAll(regexp: RegExp): IterableIterator<RegExpMatchArray>;
|
| D | es2020.symbol.wellknown.d.ts | 18 [Symbol.matchAll](str: string): IterableIterator<RegExpMatchArray>;
|
| D | es2018.regexp.d.ts | 1 interface RegExpMatchArray { interface
|
| D | es5.d.ts | 420 match(regexp: string | RegExp): RegExpMatchArray | null; 889 interface RegExpMatchArray extends Array<string> { interface
|
| /third_party/typescript/scripts/ |
| D | authors.ts | 36 let match: RegExpMatchArray | null;
|
| /third_party/typescript/tests/lib/ |
| D | lib.d.ts | 336 match(regexp: string): RegExpMatchArray; 342 match(regexp: RegExp): RegExpMatchArray; 830 interface RegExpMatchArray extends Array<string> { interface
|
| /third_party/node/deps/npm/node_modules/uri-js/dist/es5/ |
| D | uri.all.min.js.map | 1 …([^#]*))?(?:#((?:.|\\n|\\r)*))?/i;\nconst NO_MATCH_IS_UNDEFINED = (<RegExpMatchArray>(\"\").match(…
|