mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
8 lines
330 B
Plaintext
8 lines
330 B
Plaintext
import RecordedCalls
|
|
|
|
from RecordedCall rc
|
|
where not rc instanceof ValidRecordedCall
|
|
select "Could not uniquely identify this recorded call (either call or callee was not uniquely identified)",
|
|
rc.call_filename(), rc.call_linenum(), rc.call_inst_index(), "-->", rc.callee_filename(),
|
|
rc.callee_linenum(), rc.callee_funcname()
|