mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
11 lines
306 B
Plaintext
11 lines
306 B
Plaintext
import csharp
|
|
import semmle.code.csharp.controlflow.ControlFlowGraph
|
|
|
|
query predicate edges(ControlFlowNode node, ControlFlowNode successor, string attr, string val) {
|
|
exists(ControlFlowEdgeType t |
|
|
successor = node.getASuccessorByType(t) |
|
|
attr = "semmle.label" and
|
|
val = t.toString()
|
|
)
|
|
}
|