mirror of
https://github.com/github/codeql.git
synced 2026-02-26 11:53:42 +01:00
11 lines
169 B
Plaintext
11 lines
169 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()
|