Files
codeql/java/ql/test/library-tests/successors/TestContinue/TestSucc.ql
Owen Mansel-Chan 0f3dd6d8f1 Java: IPA the CFG
2024-12-10 15:26:11 +00:00

9 lines
237 B
Plaintext

import java
from ControlFlowNode n, ControlFlowNode succ
where
succ = n.getASuccessor() and
n.getLocation().getFile().getExtension() = "java" and
not n.getLocation().getFile().getStem() = "PopulateRuntimeException"
select n, succ