mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
205 B
Plaintext
8 lines
205 B
Plaintext
import javascript
|
|
|
|
query predicate test_query14(DataFlow::InvokeNode cs, string res) {
|
|
not cs.isIncomplete() and
|
|
not exists(cs.getACallee()) and
|
|
res = "Unable to find a callee for this call site."
|
|
}
|