aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/block/Block.java
blob: 09aa2d418089ed866b1091425f60b53545674c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package org.checkerframework.dataflow.cfg.block;

/**
 * Represents a basic block in a control flow graph.
 *
 * @author Stefan Heule
 *
 */
public interface Block {

    /** The types of basic blocks */
    public static enum BlockType {

        /** A regular basic block. */
        REGULAR_BLOCK,

        /** A conditional basic block. */
        CONDITIONAL_BLOCK,

        /** A special basic block. */
        SPECIAL_BLOCK,

        /** A basic block that can throw an exception. */
        EXCEPTION_BLOCK,
    }

    /**
     * @return the type of this basic block
     */
    BlockType getType();

    /**
     * @return the unique identifier of this block
     */
    long getId();

}