mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
15 lines
210 B
Plaintext
15 lines
210 B
Plaintext
/**
|
|
* @name Escaped
|
|
* @description Test for escaped characters
|
|
*/
|
|
|
|
|
|
import python
|
|
import semmle.python.regex
|
|
|
|
from Regex r, int start, int end
|
|
where r.character(start, end)
|
|
select r.getText(), start, end
|
|
|
|
|