Files
codeql/python/ql/examples/snippets/singlequotestring.ql
2019-07-26 17:47:11 +02:00

15 lines
272 B
Plaintext

/**
* @id py/examples/singlequotestring
* @name Single-quoted string literals
* @description Finds string literals using single quotes
* @tags string
* single quote
* quote
*/
import python
from StrConst s
where s.getPrefix().charAt(_) = "'"
select s