mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
8 lines
196 B
Plaintext
8 lines
196 B
Plaintext
import python
|
|
|
|
from LocalVariable v, Scope inner
|
|
where v.escapes() and inner = v.getAnAccess().getScope() and
|
|
inner != v.getScope()
|
|
select v.toString(), v.getScope().toString(), inner.toString()
|
|
|