Files
codeql/java/ql/test/library-tests/guards/guards.ql
2018-10-11 11:31:37 +02:00

9 lines
282 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