mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
9 lines
197 B
Plaintext
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
|