mirror of
https://github.com/github/codeql.git
synced 2026-03-26 01:08:16 +01:00
10 lines
242 B
Plaintext
10 lines
242 B
Plaintext
import csharp
|
|
import semmle.code.csharp.controlflow.BasicBlocks
|
|
|
|
from BasicBlock dom, BasicBlock bb, string s
|
|
where
|
|
dom.dominates(bb) and s = "pre"
|
|
or
|
|
dom.postDominates(bb) and s = "post"
|
|
select s, dom.getFirstNode(), bb.getFirstNode()
|