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.
2 parents bafea91 + bc8761c commit 393251dCopy full SHA for 393251d
shared/dataflow/codeql/dataflow/internal/DataFlowImplCommon.qll
@@ -386,7 +386,7 @@ module MakeImplCommon<InputSig Lang> {
386
}
387
388
private DataFlowCallable viableCallableExt(DataFlowCall call) {
389
- result = viableCallable(call)
+ result = viableCallableCached(call)
390
or
391
result = viableCallableLambda(call, _)
392
@@ -479,6 +479,9 @@ module MakeImplCommon<InputSig Lang> {
479
isArgumentNode(n, call, pos)
480
481
482
+ cached
483
+ DataFlowCallable viableCallableCached(DataFlowCall call) { result = viableCallable(call) }
484
+
485
/**
486
* Gets a viable target for the lambda call `call`.
487
*
0 commit comments