mirror of
https://github.com/github/codeql.git
synced 2026-04-08 08:34:02 +02:00
7 lines
159 B
Plaintext
7 lines
159 B
Plaintext
import javascript
|
|
|
|
from CallSite cs
|
|
where not cs.isIncomplete() and
|
|
not exists(cs.getACallee())
|
|
select cs, "Unable to find a callee for this call site."
|