mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
219 B
Plaintext
9 lines
219 B
Plaintext
import java
|
|
import semmle.code.java.controlflow.Guards
|
|
|
|
from Guard g, BasicBlock bb, boolean branch
|
|
where
|
|
g.controls(bb, branch) and
|
|
g.getEnclosingCallable().getDeclaringType().hasName("Logic")
|
|
select g, branch, bb
|