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

11 lines
188 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