mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
263 B
Plaintext
12 lines
263 B
Plaintext
/**
|
|
* @name Escaped
|
|
* @description Test for escaped characters
|
|
*/
|
|
|
|
import python
|
|
import semmle.python.regex
|
|
|
|
from RegExp r, int start, int end
|
|
where r.character(start, end) and r.getLocation().getFile().getBaseName() = "test.py"
|
|
select r.getText(), start, end
|