mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
237 B
Plaintext
9 lines
237 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
|