File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
java/ql/lib/semmle/code/java/dataflow Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -253,11 +253,11 @@ class SsaImplicitUpdate extends SsaUpdate {
253253 or
254254 if this .hasImplicitQualifierUpdate ( )
255255 then
256- if isNonNonLocal ( this )
256+ if isNonLocal ( this )
257257 then result = "nonlocal + nonlocal qualifier"
258258 else result = "nonlocal qualifier"
259259 else (
260- isNonNonLocal ( this ) and result = "nonlocal"
260+ isNonLocal ( this ) and result = "nonlocal"
261261 )
262262 }
263263
@@ -289,9 +289,9 @@ class SsaImplicitUpdate extends SsaUpdate {
289289}
290290
291291overlay [ global]
292- private predicate isNonNonLocalImpl ( SsaImplicitUpdate su ) { exists ( su .getANonLocalUpdate ( ) ) }
292+ private predicate isNonLocalImpl ( SsaImplicitUpdate su ) { exists ( su .getANonLocalUpdate ( ) ) }
293293
294- private predicate isNonNonLocal ( SsaImplicitUpdate su ) = forceLocal( isNonNonLocalImpl / 1 ) ( su )
294+ private predicate isNonLocal ( SsaImplicitUpdate su ) = forceLocal( isNonLocalImpl / 1 ) ( su )
295295
296296/**
297297 * An SSA variable that represents an uncertain implicit update of the value.
Original file line number Diff line number Diff line change @@ -555,7 +555,6 @@ private module Cached {
555555 Impl:: phiHasInputFromBlock ( phi , inp , bb )
556556 }
557557
558- overlay [ global]
559558 cached
560559 module DataFlowIntegration {
561560 import DataFlowIntegrationImpl
You can’t perform that action at this time.
0 commit comments