mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
8 lines
209 B
Plaintext
8 lines
209 B
Plaintext
import python
|
|
|
|
from Fstring str, int n, Expr e
|
|
where
|
|
e = str.getValue(n) and
|
|
not exists(FormattedValue v | v.getFormatSpec() = str)
|
|
select str.getLocation().getStartLine(), str.toString(), n, e.toString()
|