Skip to content

Commit c520cb6

Browse files
authored
Merge branch 'main' into python/test-MaD-keyword-argument
2 parents eef60c9 + fb4ed39 commit c520cb6

File tree

862 files changed

+69988
-69159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

862 files changed

+69988
-69159
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0.2
1+
7.1.0

codeql-workspace.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ provide:
66
- "*/ql/consistency-queries/qlpack.yml"
77
- "*/ql/automodel/src/qlpack.yml"
88
- "*/ql/automodel/test/qlpack.yml"
9+
- "python/extractor/qlpack.yml"
910
- "shared/**/qlpack.yml"
1011
- "cpp/ql/test/query-tests/Security/CWE/CWE-190/semmle/tainted/qlpack.yml"
1112
- "go/ql/config/legacy-support/qlpack.yml"

config/identical-files.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,6 @@
255255
"cpp/ql/lib/semmle/code/cpp/XML.qll",
256256
"csharp/ql/lib/semmle/code/csharp/XML.qll",
257257
"java/ql/lib/semmle/code/xml/XML.qll",
258-
"javascript/ql/lib/semmle/javascript/XML.qll",
259258
"python/ql/lib/semmle/python/xml/XML.qll"
260259
],
261260
"DuplicationProblems.inc.qhelp": [
@@ -372,4 +371,4 @@
372371
"python/ql/test/experimental/dataflow/model-summaries/InlineTaintTest.ext.yml",
373372
"python/ql/test/experimental/dataflow/model-summaries/NormalDataflowTest.ext.yml"
374373
]
375-
}
374+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Expr extends @expr {
2+
string toString() { none() }
3+
}
4+
5+
class Location extends @location_expr {
6+
string toString() { none() }
7+
}
8+
9+
from Expr expr, int kind, int kind_new, Location loc
10+
where
11+
exprs(expr, kind, loc) and
12+
if kind = 363 then kind_new = 1 else kind_new = kind
13+
select expr, kind_new, loc

0 commit comments

Comments
 (0)