mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
10 lines
289 B
Plaintext
10 lines
289 B
Plaintext
// query-type: graph
|
|
import sbb_test
|
|
|
|
// Note: no instance of `SubBasicBlockCutNode`
|
|
|
|
from boolean isEdge, SubBasicBlock x, SubBasicBlock y, string label
|
|
where isNode(isEdge, x, y, label) or isSuccessor(isEdge, x, y, label)
|
|
select x.getEnclosingFunction().toString(), isEdge, x, y, label
|
|
|