mirror of
https://github.com/github/codeql.git
synced 2026-03-06 07:36:47 +01: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
|