mirror of
https://github.com/github/codeql.git
synced 2026-03-18 05:26:45 +01: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."
|