Files
codeql/java/ql/test/library-tests/guards/guards.ql
2018-08-30 10:48:05 +01:00

8 lines
278 B
Plaintext

import java
import semmle.code.java.controlflow.Guards
from ConditionBlock cb, boolean testIsTrue, BasicBlock controlled
where cb.controls(controlled, testIsTrue)
and cb.getEnclosingCallable().getDeclaringType().hasName("Test")
select cb.getCondition(), testIsTrue, controlled