Files
codeql/java/ql/test/library-tests/guards/guardslogic.ql
Anders Schack-Mulligen 42b1b12aa1 Java: Fix qltests
2025-06-26 07:17:34 +02:00

10 lines
318 B
Plaintext

import java
import semmle.code.java.controlflow.Guards
from Guard g, BasicBlock bb, GuardValue gv
where
g.valueControls(bb, gv) and
g.getEnclosingCallable().getDeclaringType().hasName("Logic") and
(exists(gv.asBooleanValue()) or gv.isThrowsException() or gv.getDualValue().isThrowsException())
select g, gv, bb