mirror of
https://github.com/github/codeql.git
synced 2026-05-03 20:58:03 +02: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:
@@ -1,4 +1,4 @@
|
||||
import python
|
||||
|
||||
from StrConst s
|
||||
from StringLiteral s
|
||||
select s.getLocation(), s.getText()
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
import python
|
||||
|
||||
select any(StrConst s) as s, s.getText()
|
||||
select any(StringLiteral s) as s, s.getText()
|
||||
|
||||
Reference in New Issue
Block a user