mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
10 lines
285 B
Plaintext
10 lines
285 B
Plaintext
import python
|
|
private import LegacyPointsTo
|
|
import Util
|
|
|
|
from SsaSourceVariable var, ControlFlowNode use
|
|
where
|
|
(use = var.getAUse() or var.hasRefinement(use, _)) and
|
|
not var instanceof SpecialSsaSourceVariable
|
|
select locate(use.getLocation(), "abd"), var.getName(), use.toString()
|