Files
codeql/javascript/ql/test/library-tests/PostDominance/DefCallExample.ql
2018-08-02 17:53:23 +01:00

8 lines
243 B
Plaintext

import javascript
from ReachableBasicBlock callBlock, ReachableBasicBlock entryBlock, CallExpr c, Function f
where callBlock.postDominates(entryBlock) and
callBlock.getANode() = c and
entryBlock.getANode() = f.getEntry()
select c