mirror of
https://github.com/github/codeql.git
synced 2026-08-02 08:23:01 +02:00
10 lines
182 B
Plaintext
10 lines
182 B
Plaintext
import go
|
|
|
|
query predicate nodes(ControlFlow::Node nd) { none() }
|
|
|
|
query predicate edges(ControlFlow::Node pred, ControlFlow::Node succ) {
|
|
succ = pred.getASuccessor()
|
|
}
|
|
|
|
select ""
|