Home
last modified time | relevance | path

Searched refs:RegExpMatchArray (Results 1 – 25 of 35) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DbestChoiceType.types7 >(''.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 …]
DstringMatchAll.types3 >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[]
DnarrowingWithNonNullExpression.types3 >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
DregexMatchAll-esnext.types3 >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[]
DregexMatchAll.types3 >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[]
DuseRegexpGroups.types66 >"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…
DinitializedDestructuringAssignmentTypes.types6 >''.match('') || [] : RegExpMatchArray
7 >''.match('') : RegExpMatchArray
8 >''.match : (regexp: string | RegExp) => RegExpMatchArray
10 >match : (regexp: string | RegExp) => RegExpMatchArray
Dparser630933.types7 >b : RegExpMatchArray
8 >a.match(/\/ver=([^/]+)/) : RegExpMatchArray
9 >a.match : (regexp: string | RegExp) => RegExpMatchArray
11 >match : (regexp: string | RegExp) => RegExpMatchArray
DdoYouNeedToChangeYourTargetLibraryES2016Plus.types95 >"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…
DuseRegexpGroups.symbols47 >"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, --, --))
Dparserharness.types280 >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 …]
DdoYouNeedToChangeYourTargetLibraryES2016Plus.errors.txt11 …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/
Dlib.es2015.symbol.wellknown.d.ts187 [Symbol.match](string: string): RegExpMatchArray | null;
239 …match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | n…
Dlib.es2020.string.d.ts29 matchAll(regexp: RegExp): IterableIterator<RegExpMatchArray>;
Dlib.es2020.symbol.wellknown.d.ts38 [Symbol.matchAll](str: string): IterableIterator<RegExpMatchArray>;
Dlib.es2018.regexp.d.ts21 interface RegExpMatchArray { interface
Dlib.es5.d.ts440 match(regexp: string | RegExp): RegExpMatchArray | null;
909 interface RegExpMatchArray extends Array<string> { interface
/third_party/typescript/src/lib/
Des2015.symbol.wellknown.d.ts167 [Symbol.match](string: string): RegExpMatchArray | null;
219 …match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | n…
Des2020.string.d.ts9 matchAll(regexp: RegExp): IterableIterator<RegExpMatchArray>;
Des2020.symbol.wellknown.d.ts18 [Symbol.matchAll](str: string): IterableIterator<RegExpMatchArray>;
Des2018.regexp.d.ts1 interface RegExpMatchArray { interface
Des5.d.ts420 match(regexp: string | RegExp): RegExpMatchArray | null;
889 interface RegExpMatchArray extends Array<string> { interface
/third_party/typescript/scripts/
Dauthors.ts36 let match: RegExpMatchArray | null;
/third_party/typescript/tests/lib/
Dlib.d.ts336 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/
Duri.all.min.js.map1 …([^#]*))?(?:#((?:.|\\n|\\r)*))?/i;\nconst NO_MATCH_IS_UNDEFINED = (<RegExpMatchArray>(\"\").match(…

12