mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
Python: Change all remaining occurrences of StrConst
Done using ``` git grep StrConst | xargs sed -i 's/StrConst/StringLiteral/g' ```
This commit is contained in:
@@ -8,6 +8,6 @@
|
||||
|
||||
import python
|
||||
|
||||
from StrConst s
|
||||
from StringLiteral s
|
||||
where s.getPrefix().matches("%r%")
|
||||
select s
|
||||
|
||||
@@ -9,6 +9,6 @@
|
||||
|
||||
import python
|
||||
|
||||
from StrConst s
|
||||
from StringLiteral s
|
||||
where s.getPrefix().charAt(_) = "'"
|
||||
select s
|
||||
|
||||
Reference in New Issue
Block a user