@@ -4003,7 +4003,7 @@ module MakeImpl<DataFlowParameter Lang> {
4003
4003
4004
4004
private predicate relevantState ( FlowState state ) {
4005
4005
sourceNode ( _, state ) or
4006
- sinkNode ( _, state ) or
4006
+ sinkNodeWithState ( _, state ) or
4007
4007
additionalLocalStateStep ( _, state , _, _) or
4008
4008
additionalLocalStateStep ( _, _, _, state ) or
4009
4009
additionalJumpStateStep ( _, state , _, _) or
@@ -4060,7 +4060,7 @@ module MakeImpl<DataFlowParameter Lang> {
4060
4060
NodeEx node , FlowState state , TRevSummaryCtx1 sc1 , TRevSummaryCtx2 sc2 ,
4061
4061
TRevSummaryCtx3 sc3 , PartialAccessPath ap
4062
4062
) {
4063
- sinkNode ( node , state ) and
4063
+ sinkNodeWithState ( node , state ) and
4064
4064
sc1 = TRevSummaryCtx1None ( ) and
4065
4065
sc2 = TRevSummaryCtx2None ( ) and
4066
4066
sc3 = TRevSummaryCtx3None ( ) and
@@ -4278,7 +4278,7 @@ module MakeImpl<DataFlowParameter Lang> {
4278
4278
}
4279
4279
4280
4280
predicate isSink ( ) {
4281
- sinkNode ( node , state ) and
4281
+ sinkNodeWithState ( node , state ) and
4282
4282
sc1 = TRevSummaryCtx1None ( ) and
4283
4283
sc2 = TRevSummaryCtx2None ( ) and
4284
4284
sc3 = TRevSummaryCtx3None ( ) and
0 commit comments