mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
9 lines
223 B
Plaintext
9 lines
223 B
Plaintext
import java
|
|
|
|
from ControlFlowNode n, ControlFlowNode succ
|
|
where
|
|
succ = n.getASuccessor() and
|
|
n.getLocation().getFile().getExtension() = "java" and
|
|
not n.getFile().getStem() = "PopulateRuntimeException"
|
|
select n, succ
|