Files
codeql/python/ql/test/library-tests/variables/scopes/locals.ql
2020-03-30 11:59:10 +02:00

9 lines
197 B
Plaintext

import python
from LocalVariable l, string kind
where
l instanceof FastLocalVariable and kind = "fast"
or
l instanceof NameLocalVariable and kind = "name"
select l, l.getScope(), kind