Files
codeql/python/ql/test/library-tests/DefUse/Uses.ql
2018-11-19 15:15:54 +00:00

12 lines
205 B
Plaintext

/**
* @name Usages
* @description Insert description here...
* @kind problem
* @problem.severity warning
*/
import python
from Name u
where u.uses(_)
select u.getId(), u.getLocation().getStartLine()