mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
JavaScript: Fix data flow out of reflective calls.
We were previously missing a data-flow edge from reflected calls to the corresponding reflective call, that is, for `f.call(...)` we didn't have a flow edge from the implicit call to `f` to the result of `f.call(...)`.
This commit is contained in:
@@ -85,6 +85,10 @@
|
||||
| tst.js:111:23:111:25 | v2c |
|
||||
| tst.js:111:29:111:31 | o2c |
|
||||
| tst.js:111:36:111:38 | o2d |
|
||||
| tst.js:115:1:115:5 | Array |
|
||||
| tst.js:115:1:115:10 | Array.call |
|
||||
| tst.js:115:1:115:12 | Array.call() |
|
||||
| tst.js:115:1:115:12 | reflective call |
|
||||
| tst.ts:1:1:1:0 | this |
|
||||
| tst.ts:3:3:3:8 | setX() |
|
||||
| tst.ts:7:1:7:0 | this |
|
||||
|
||||
Reference in New Issue
Block a user