Skip to content

Commit 06b02eb

Browse files
committed
Sync files.
1 parent 3862f8e commit 06b02eb

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ module Public {
180180
result = "Argument[" + getParameterPosition(pos) + "]"
181181
)
182182
or
183+
exists(string synthetic |
184+
sc = TSyntheticGlobalSummaryComponent(synthetic) and
185+
result = "SyntheticGlobal[" + synthetic + "]"
186+
)
187+
or
183188
sc = TReturnSummaryComponent(getReturnValueKind()) and result = "ReturnValue"
184189
}
185190

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ module Public {
180180
result = "Argument[" + getParameterPosition(pos) + "]"
181181
)
182182
or
183+
exists(string synthetic |
184+
sc = TSyntheticGlobalSummaryComponent(synthetic) and
185+
result = "SyntheticGlobal[" + synthetic + "]"
186+
)
187+
or
183188
sc = TReturnSummaryComponent(getReturnValueKind()) and result = "ReturnValue"
184189
}
185190

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ module Public {
180180
result = "Argument[" + getParameterPosition(pos) + "]"
181181
)
182182
or
183+
exists(string synthetic |
184+
sc = TSyntheticGlobalSummaryComponent(synthetic) and
185+
result = "SyntheticGlobal[" + synthetic + "]"
186+
)
187+
or
183188
sc = TReturnSummaryComponent(getReturnValueKind()) and result = "ReturnValue"
184189
}
185190

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ module Public {
180180
result = "Argument[" + getParameterPosition(pos) + "]"
181181
)
182182
or
183+
exists(string synthetic |
184+
sc = TSyntheticGlobalSummaryComponent(synthetic) and
185+
result = "SyntheticGlobal[" + synthetic + "]"
186+
)
187+
or
183188
sc = TReturnSummaryComponent(getReturnValueKind()) and result = "ReturnValue"
184189
}
185190

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ module Public {
180180
result = "Argument[" + getParameterPosition(pos) + "]"
181181
)
182182
or
183+
exists(string synthetic |
184+
sc = TSyntheticGlobalSummaryComponent(synthetic) and
185+
result = "SyntheticGlobal[" + synthetic + "]"
186+
)
187+
or
183188
sc = TReturnSummaryComponent(getReturnValueKind()) and result = "ReturnValue"
184189
}
185190

0 commit comments

Comments
 (0)