Skip to content

Commit 8aa8088

Browse files
atorralbaStephan Brandauer
authored andcommitted
Sync files
1 parent 8065714 commit 8aa8088

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

csharp/ql/lib/semmle/code/csharp/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ module Private {
10121012
private predicate relevantSummaryElementGenerated(
10131013
AccessPath inSpec, AccessPath outSpec, string kind
10141014
) {
1015-
summaryElement(this, inSpec, outSpec, kind, "generated") and
1015+
summaryElement(this, inSpec, outSpec, kind, ["generated", "ai-generated"]) and
10161016
not summaryElement(this, _, _, _, "manual")
10171017
}
10181018

go/ql/lib/semmle/go/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ module Private {
10121012
private predicate relevantSummaryElementGenerated(
10131013
AccessPath inSpec, AccessPath outSpec, string kind
10141014
) {
1015-
summaryElement(this, inSpec, outSpec, kind, "generated") and
1015+
summaryElement(this, inSpec, outSpec, kind, ["generated", "ai-generated"]) and
10161016
not summaryElement(this, _, _, _, "manual")
10171017
}
10181018

python/ql/lib/semmle/python/dataflow/new/internal/FlowSummaryImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ module Private {
10121012
private predicate relevantSummaryElementGenerated(
10131013
AccessPath inSpec, AccessPath outSpec, string kind
10141014
) {
1015-
summaryElement(this, inSpec, outSpec, kind, "generated") and
1015+
summaryElement(this, inSpec, outSpec, kind, ["generated", "ai-generated"]) and
10161016
not summaryElement(this, _, _, _, "manual")
10171017
}
10181018

ruby/ql/lib/codeql/ruby/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ module Private {
10121012
private predicate relevantSummaryElementGenerated(
10131013
AccessPath inSpec, AccessPath outSpec, string kind
10141014
) {
1015-
summaryElement(this, inSpec, outSpec, kind, "generated") and
1015+
summaryElement(this, inSpec, outSpec, kind, ["generated", "ai-generated"]) and
10161016
not summaryElement(this, _, _, _, "manual")
10171017
}
10181018

swift/ql/lib/codeql/swift/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ module Private {
10121012
private predicate relevantSummaryElementGenerated(
10131013
AccessPath inSpec, AccessPath outSpec, string kind
10141014
) {
1015-
summaryElement(this, inSpec, outSpec, kind, "generated") and
1015+
summaryElement(this, inSpec, outSpec, kind, ["generated", "ai-generated"]) and
10161016
not summaryElement(this, _, _, _, "manual")
10171017
}
10181018

0 commit comments

Comments
 (0)