mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Fixed 73 .ql query files where the @name metadata contained an ending period. This ensures consistency with the CodeQL query metadata style guidelines.
12 lines
172 B
Plaintext
12 lines
172 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()
|