Files
codeql/python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgAllLiveReachable.ql
2026-07-27 17:37:36 +02:00

14 lines
341 B
Plaintext

/** New-CFG version of AllLiveReachable. */
import python
import NewCfgImpl
private module Utils = EvalOrderCfgUtils<NewCfg>;
private import Utils
private import Utils::CfgTests
from TimerCfgNode a, TestFunction f
where allLiveReachable(a, f)
select a, "Unreachable live annotation; entry of $@ does not reach this node", f, f.getName()