@@ -901,7 +901,7 @@ module Make<LocationSig Location, InputSig<Location> Input> {
901
901
or
902
902
exists ( Guard g0 , GuardValue v0 |
903
903
guardControls ( g0 , v0 , tgtGuard , tgtVal ) and
904
- WrapperGuard:: additionalImpliesStep ( g0 , v0 , guard , v )
904
+ WrapperGuard:: wrapperImpliesStep ( g0 , v0 , guard , v )
905
905
)
906
906
or
907
907
exists ( Guard g0 , GuardValue v0 |
@@ -947,7 +947,7 @@ module Make<LocationSig Location, InputSig<Location> Input> {
947
947
*/
948
948
predicate nullGuard ( Guard guard , GuardValue v , Expr e , boolean isNull ) {
949
949
impliesStep2 ( guard , v , e , any ( GuardValue gv | gv .isNullness ( isNull ) ) ) or
950
- WrapperGuard:: additionalImpliesStep ( guard , v , e , any ( GuardValue gv | gv .isNullness ( isNull ) ) ) or
950
+ WrapperGuard:: wrapperImpliesStep ( guard , v , e , any ( GuardValue gv | gv .isNullness ( isNull ) ) ) or
951
951
additionalImpliesStep ( guard , v , e , any ( GuardValue gv | gv .isNullness ( isNull ) ) )
952
952
}
953
953
@@ -1074,7 +1074,7 @@ module Make<LocationSig Location, InputSig<Location> Input> {
1074
1074
* This predicate covers the implication steps that arise from calls to
1075
1075
* custom guard wrappers.
1076
1076
*/
1077
- predicate additionalImpliesStep ( PreGuard g1 , GuardValue v1 , PreGuard g2 , GuardValue v2 ) {
1077
+ predicate wrapperImpliesStep ( PreGuard g1 , GuardValue v1 , PreGuard g2 , GuardValue v2 ) {
1078
1078
exists ( NonOverridableMethodCall call , ParameterPosition ppos , ArgumentPosition apos |
1079
1079
g1 = call and
1080
1080
call .getMethod ( ) = customGuard ( ppos , v1 , v2 ) and
0 commit comments