mirror of
https://github.com/github/codeql.git
synced 2026-01-12 22:14:47 +01:00
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
import javascript
|
|
|
|
query predicate missingBasicBlock(DataFlow::ThisNode node) {
|
|
not exists(node.getBasicBlock())
|
|
}
|
|
|
|
query BasicBlock basicBlock(DataFlow::ThisNode node) {
|
|
result = node.getBasicBlock()
|
|
}
|