mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
9 lines
199 B
Plaintext
9 lines
199 B
Plaintext
import python
|
|
|
|
from For f, string kind
|
|
where
|
|
f instanceof AsyncFor and kind = "async"
|
|
or
|
|
not f instanceof AsyncFor and kind = "normal"
|
|
select f.getLocation().getStartLine(), f.toString(), kind
|