| /third_party/typescript/tests/baselines/reference/ |
| D | useRegexpGroups.types | 7 >result : RegExpExecArray 8 >re.exec("2015-01-02") : RegExpExecArray 9 >re.exec : (string: string) => RegExpExecArray 11 >exec : (string: string) => RegExpExecArray 17 >result : RegExpExecArray 24 >result : RegExpExecArray 31 >result : RegExpExecArray 38 >result : RegExpExecArray 45 >result : RegExpExecArray 52 >result : RegExpExecArray [all …]
|
| D | library_RegExpExecArraySlice.types | 2 // RegExpExecArray.slice can have zero, one, or two arguments 3 var regExpExecArrayValue: RegExpExecArray; 4 >regExpExecArrayValue : RegExpExecArray 9 >regExpExecArrayValue : RegExpExecArray 15 >regExpExecArrayValue : RegExpExecArray 22 >regExpExecArrayValue : RegExpExecArray
|
| D | typeGuardsNestedAssignments.types | 119 let match: RegExpExecArray | null 120 >match : RegExpExecArray | null 125 >(match = re.exec("xxx")) : RegExpExecArray | null 126 >match = re.exec("xxx") : RegExpExecArray | null 127 >match : RegExpExecArray | null 128 >re.exec("xxx") : RegExpExecArray | null 129 >re.exec : (string: string) => RegExpExecArray | null 131 >exec : (string: string) => RegExpExecArray | null 140 >match : RegExpExecArray 145 >match : RegExpExecArray
|
| D | useRegexpGroups.symbols | 17 >result.groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --)) 19 >groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --)) 27 >result.groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --)) 29 >groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --)) 37 >result.groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --)) 39 >groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))
|
| D | library_RegExpExecArraySlice.symbols | 2 // RegExpExecArray.slice can have zero, one, or two arguments 3 var regExpExecArrayValue: RegExpExecArray; 5 >RegExpExecArray : Symbol(RegExpExecArray, Decl(lib.es5.d.ts, --, --))
|
| D | typeGuardsNestedAssignments.symbols | 94 let match: RegExpExecArray | null 96 >RegExpExecArray : Symbol(RegExpExecArray, Decl(lib.es5.d.ts, --, --))
|
| D | library_RegExpExecArraySlice.js | 3 var regExpExecArrayValue: RegExpExecArray;
|
| D | doYouNeedToChangeYourTargetLibraryES2016Plus.types | 105 >/(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/g.exec("2019-04-30") : RegExpExecArray 106 >/(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/g.exec : (string: string) => RegExpExecArray 108 >exec : (string: string) => RegExpExecArray
|
| D | 1.0lib-noErrors.symbols | 1271 interface RegExpExecArray { 1272 >RegExpExecArray : Symbol(RegExpExecArray, Decl(1.0lib-noErrors.ts, 790, 1)) 1278 >length : Symbol(RegExpExecArray.length, Decl(1.0lib-noErrors.ts, 793, 28)) 1281 >index : Symbol(RegExpExecArray.index, Decl(1.0lib-noErrors.ts, 794, 19)) 1284 >input : Symbol(RegExpExecArray.input, Decl(1.0lib-noErrors.ts, 796, 18)) 1287 >toString : Symbol(RegExpExecArray.toString, Decl(1.0lib-noErrors.ts, 797, 18)) 1290 >toLocaleString : Symbol(RegExpExecArray.toLocaleString, Decl(1.0lib-noErrors.ts, 799, 23)) 1293 >concat : Symbol(RegExpExecArray.concat, Decl(1.0lib-noErrors.ts, 800, 29)) 1297 >join : Symbol(RegExpExecArray.join, Decl(1.0lib-noErrors.ts, 801, 43)) 1301 >pop : Symbol(RegExpExecArray.pop, Decl(1.0lib-noErrors.ts, 802, 37)) [all …]
|
| D | typeGuardsNestedAssignments.js | 42 let match: RegExpExecArray | null
|
| D | 1.0lib-noErrors.js | 794 interface RegExpExecArray { 832 exec(string: string): RegExpExecArray;
|
| D | doYouNeedToChangeYourTargetLibraryES2016Plus.errors.txt | 12 ….ts(17,111): error TS2550: Property 'groups' does not exist on type 'RegExpExecArray'. Do you need… 77 !!! error TS2550: Property 'groups' does not exist on type 'RegExpExecArray'. Do you need to change…
|
| D | 1.0lib-noErrors.types | 1219 interface RegExpExecArray { 1359 exec(string: string): RegExpExecArray; 1360 >exec : (string: string) => RegExpExecArray
|
| /third_party/typescript/src/harness/ |
| D | documentsUtil.ts | 98 let match: RegExpExecArray | null; 141 let match: RegExpExecArray | null; 142 let lastMatch: RegExpExecArray | undefined;
|
| D | util.ts | 38 let match: RegExpExecArray | null;
|
| D | harnessIO.ts | 1171 let match: RegExpExecArray | null; 1202 let testMetaData: RegExpExecArray | null;
|
| /third_party/typescript/lib/ |
| D | lib.es2018.regexp.d.ts | 27 interface RegExpExecArray { interface
|
| D | lib.es5.d.ts | 914 interface RegExpExecArray extends Array<string> { interface 924 exec(string: string): RegExpExecArray | null;
|
| /third_party/typescript/tests/cases/compiler/ |
| D | library_RegExpExecArraySlice.ts | 2 var regExpExecArrayValue: RegExpExecArray;
|
| /third_party/typescript/src/lib/ |
| D | es2018.regexp.d.ts | 7 interface RegExpExecArray { interface
|
| D | es5.d.ts | 894 interface RegExpExecArray extends Array<string> { interface 904 exec(string: string): RegExpExecArray | null;
|
| /third_party/typescript/tests/cases/conformance/controlFlow/ |
| D | typeGuardsNestedAssignments.ts | 43 let match: RegExpExecArray | null
|
| /third_party/qrcodegen/typescript-javascript/ |
| D | qrcodegen-input-demo.ts | 101 const viewBox: string = (/ viewBox="([^"]*)"/.exec(code) as RegExpExecArray)[1]; 102 const pathD: string = (/ d="([^"]*)"/.exec(code) as RegExpExecArray)[1];
|
| /third_party/typescript/tests/cases/conformance/decorators/ |
| D | 1.0lib-noErrors.ts | 794 interface RegExpExecArray { interface 832 exec(string: string): RegExpExecArray;
|
| /third_party/typescript/scripts/ |
| D | authors.ts | 130 let match: RegExpExecArray | null;
|