File: useRegexpGroups.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (51 lines) | stat: -rw-r--r-- 2,457 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
=== tests/cases/conformance/es2018/useRegexpGroups.ts ===
let re = /(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2})/u;
>re : Symbol(re, Decl(useRegexpGroups.ts, 0, 3))

let result = re.exec("2015-01-02");
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))
>re.exec : Symbol(RegExp.exec, Decl(lib.es5.d.ts, --, --))
>re : Symbol(re, Decl(useRegexpGroups.ts, 0, 3))
>exec : Symbol(RegExp.exec, Decl(lib.es5.d.ts, --, --))

let date = result[0];
>date : Symbol(date, Decl(useRegexpGroups.ts, 3, 3))
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))

let year1 = result.groups.year;
>year1 : Symbol(year1, Decl(useRegexpGroups.ts, 5, 3))
>result.groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))
>groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))

let year2 = result[1];
>year2 : Symbol(year2, Decl(useRegexpGroups.ts, 6, 3))
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))

let month1 = result.groups.month;
>month1 : Symbol(month1, Decl(useRegexpGroups.ts, 8, 3))
>result.groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))
>groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))

let month2 = result[2];
>month2 : Symbol(month2, Decl(useRegexpGroups.ts, 9, 3))
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))

let day1 = result.groups.day;
>day1 : Symbol(day1, Decl(useRegexpGroups.ts, 11, 3))
>result.groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))
>groups : Symbol(RegExpExecArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))

let day2 = result[3];
>day2 : Symbol(day2, Decl(useRegexpGroups.ts, 12, 3))
>result : Symbol(result, Decl(useRegexpGroups.ts, 1, 3))

let foo = "foo".match(/(?<bar>foo)/)!.groups.foo;
>foo : Symbol(foo, Decl(useRegexpGroups.ts, 14, 3))
>"foo".match(/(?<bar>foo)/)!.groups : Symbol(RegExpMatchArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))
>"foo".match : Symbol(String.match, Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
>match : Symbol(String.match, Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
>groups : Symbol(RegExpMatchArray.groups, Decl(lib.es2018.regexp.d.ts, --, --))