mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02:00
11 lines
344 B
Plaintext
11 lines
344 B
Plaintext
import python
|
|
import CallGraphTest
|
|
|
|
query predicate expectedCallEdgeNotFound(Call call, Function callable) {
|
|
any(PointsToResolver r).expectedCallEdgeNotFound(call, callable)
|
|
}
|
|
|
|
query predicate unexpectedCallEdgeFound(Call call, Function callable, string message) {
|
|
any(PointsToResolver r).unexpectedCallEdgeFound(call, callable, message)
|
|
}
|