mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
/**
|
|
* @name Tests call graph.
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Callable src, Callable dest
|
|
where
|
|
dest.fromSource() and
|
|
src.calls(dest)
|
|
select src, dest, src.getDeclaringType()
|