mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +02:00
8 lines
248 B
Plaintext
8 lines
248 B
Plaintext
import python
|
|
|
|
string lazy(Import imp) { if imp.isLazy() then result = "lazy" else result = "normal" }
|
|
|
|
from Import imp
|
|
where imp.getLocation().getFile().getShortName() = "test.py"
|
|
select imp.getLocation().getStartLine(), imp.toString(), lazy(imp)
|