We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e350a0 commit 7373a50Copy full SHA for 7373a50
ruby/ql/lib/codeql/ruby/dataflow/internal/DataFlowDispatch.qll
@@ -241,7 +241,11 @@ private module Cached {
241
or
242
FlowSummaryImplSpecific::ParsePositions::isParsedParameterPosition(_, pos)
243
} or
244
- TKeywordArgumentPosition(string name) { name = any(KeywordParameter kp).getName() }
+ TKeywordArgumentPosition(string name) {
245
+ name = any(KeywordParameter kp).getName()
246
+ or
247
+ exists(any(Call c).getKeywordArgument(name))
248
+ }
249
250
cached
251
newtype TParameterPosition =
0 commit comments