mirror of
https://github.com/github/codeql.git
synced 2026-07-03 18:45:34 +02:00
14 lines
294 B
Plaintext
14 lines
294 B
Plaintext
/**
|
|
* Provides classes and predicates for working with basic blocks in Java.
|
|
*/
|
|
overlay[local?]
|
|
module;
|
|
|
|
import java
|
|
import Dominance
|
|
|
|
/** A basic block that ends in an exit node. */
|
|
class ExitBlock extends BasicBlock {
|
|
ExitBlock() { this.getLastNode() instanceof ControlFlow::ExitNode }
|
|
}
|