mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
274 B
Plaintext
12 lines
274 B
Plaintext
/**
|
|
* @name SourceDeclaration
|
|
*/
|
|
|
|
import default
|
|
|
|
from Class cls, Class sourceDecl
|
|
where
|
|
cls.getPackage().hasName("generics") and
|
|
cls.getSourceDeclaration() = sourceDecl
|
|
select cls.getLocation().getStartLine(), cls, sourceDecl.getLocation().getStartLine(), sourceDecl
|