Files
codeql/python/ql/test/library-tests/variables/scopes/free.ql
2018-11-19 15:15:54 +00:00

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()