mirror of
https://github.com/github/codeql.git
synced 2026-02-13 21:51:29 +01:00
8 lines
243 B
Plaintext
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
|