mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
10 lines
218 B
Plaintext
10 lines
218 B
Plaintext
import csharp
|
|
import Common
|
|
|
|
from SourceBasicBlock dom, SourceBasicBlock bb, string s
|
|
where
|
|
dom.dominates(bb) and s = "pre"
|
|
or
|
|
dom.postDominates(bb) and s = "post"
|
|
select s, dom.getFirstNode(), bb.getFirstNode()
|