Files
codeql/javascript/ql/test/tutorials/Introducing the JavaScript libraries/query14.qll
2019-03-05 08:14:47 +00:00

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."
}