@@ -582,8 +582,8 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
582
582
* the possible call sites are restricted.
583
583
*/
584
584
pragma [ nomagic]
585
- DataFlowCall prunedViableImplInCallContextReverse (
586
- DataFlowCallable callable , CallContextReturn ctx
585
+ DataFlowCall viableImplCallContextReducedReverse (
586
+ DataFlowCallable callable , CallContextNoCall ctx
587
587
) {
588
588
exists ( DataFlowCallable c0 , DataFlowCall call0 |
589
589
callEnclosingCallable ( call0 , callable ) and
@@ -600,7 +600,7 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
600
600
predicate resolveReturn ( CallContextNoCall cc , DataFlowCallable callable , DataFlowCall call ) {
601
601
cc instanceof CallContextAny and relevantCallEdgeOut ( call , callable )
602
602
or
603
- call = prunedViableImplInCallContextReverse ( callable , cc )
603
+ call = viableImplCallContextReducedReverse ( callable , cc )
604
604
}
605
605
606
606
/** Gets the call context when returning from `c` to `call`. */
@@ -888,10 +888,10 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
888
888
}
889
889
890
890
cached
891
- DataFlowCall prunedViableImplInCallContextReverse (
892
- DataFlowCallable callable , CallContextReturn ctx
891
+ DataFlowCall viableImplCallContextReducedReverse (
892
+ DataFlowCallable callable , CallContextNoCall ctx
893
893
) {
894
- result = Impl2:: prunedViableImplInCallContextReverse ( callable , ctx )
894
+ result = Impl2:: viableImplCallContextReducedReverse ( callable , ctx )
895
895
}
896
896
}
897
897
0 commit comments