mirror of
https://github.com/github/codeql.git
synced 2026-03-06 07:36:47 +01:00
12 lines
254 B
Plaintext
12 lines
254 B
Plaintext
/**
|
|
* @name test
|
|
*/
|
|
|
|
import python
|
|
import analysis.DefinitionTracking
|
|
|
|
from Expr use, Definition defn
|
|
where defn = getADefinition(use)
|
|
and use.getEnclosingModule().getName() = "test"
|
|
select use.getLocation().toString(), use.toString(), defn.toString()
|