File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
javascript/ql/test/library-tests/CallGraphs/AnnotatedTest Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
spuriousCallee
2
- | accessors.js:54:1:54:7 | new D() | accessors.js:32:9:32:8 | () {} | -1 | calls |
3
2
missingCallee
4
3
| constructor-field.ts:40:5:40:14 | f3.build() | constructor-field.ts:13:3:13:12 | build() {} | -1 | calls |
5
4
| constructor-field.ts:71:1:71:11 | bf3.build() | constructor-field.ts:13:3:13:12 | build() {} | -1 | calls |
@@ -13,4 +12,4 @@ accessorCall
13
12
| accessors.js:44:1:44:9 | new D().f | accessors.js:37:8:37:13 | (x) {} |
14
13
| accessors.js:48:1:48:5 | obj.f | accessors.js:5:8:5:12 | () {} |
15
14
| accessors.js:51:1:51:3 | C.f | accessors.js:19:15:19:19 | () {} |
16
- | accessors.js:54 :1:54:9 | new D() .f | accessors.js:34:8:34:12 | () {} |
15
+ | accessors.js:55 :1:55:3 | d .f | accessors.js:34:8:34:12 | () {} |
Original file line number Diff line number Diff line change @@ -50,5 +50,6 @@ obj.f();
50
50
/** calls:NONE */
51
51
C . f ( ) ;
52
52
53
+ const d = new D ( ) ;
53
54
/** calls:NONE */
54
- new D ( ) . f ( ) ;
55
+ d . f ( ) ;
You can’t perform that action at this time.
0 commit comments