File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
javascript/ql/test/library-tests/TypeScript/BindingPattern Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
- consts
2
- | tst.tsx:2:3:2:26 | const { ... } = o; |
3
- | tst.tsx:9:5:9:26 | const b ... efined; |
4
- usings
5
- | tst.tsx:7:5:7:28 | using f ... as any; |
6
1
#select
7
2
| tst.tsx:1:10:1:10 | f |
8
3
| tst.tsx:1:12:1:12 | o |
9
4
| tst.tsx:2:14:2:14 | v |
10
5
| tst.tsx:6:10:6:10 | v |
11
6
| tst.tsx:7:11:7:13 | foo |
12
7
| tst.tsx:9:11:9:13 | bar |
8
+ | tst.tsx:12:16:12:16 | b |
9
+ | tst.tsx:13:17:13:19 | foo |
10
+ consts
11
+ | tst.tsx:2:3:2:26 | const { ... } = o; |
12
+ | tst.tsx:9:5:9:26 | const b ... efined; |
13
+ usings
14
+ | tst.tsx:7:5:7:28 | using f ... as any; |
15
+ | tst.tsx:13:5:13:34 | await u ... as any; |
Original file line number Diff line number Diff line change @@ -7,4 +7,8 @@ function v() {
7
7
using foo = null as any ;
8
8
9
9
const bar = undefined ;
10
+ }
11
+
12
+ async function b ( ) {
13
+ await using foo = null as any ;
10
14
}
You can’t perform that action at this time.
0 commit comments