mirror of
https://github.com/github/codeql.git
synced 2026-02-28 12:53:49 +01:00
10 lines
277 B
Plaintext
10 lines
277 B
Plaintext
import RecordedCalls
|
|
|
|
from ValidRecordedCall rc, Call call, Function callee, CallableValue calleeValue
|
|
where
|
|
call = rc.getCall() and
|
|
callee = rc.getCallee() and
|
|
calleeValue.getScope() = callee and
|
|
calleeValue.getACall() = call.getAFlowNode()
|
|
select call, "-->", callee
|