interface ControlFlowCache {
    simplified: ObjectMap<
        [
            passes: readonly (
                | "unique-cf-sets"
                | "analyze-dead-code"
                | "remove-dead-code"
                | "to-basic-blocks"
            )[],
            df: boolean,
        ],
        ControlFlowInformation<CfgSimpleVertex>,
    >;
}

Properties

Properties

simplified: ObjectMap<
    [
        passes: readonly (
            | "unique-cf-sets"
            | "analyze-dead-code"
            | "remove-dead-code"
            | "to-basic-blocks"
        )[],
        df: boolean,
    ],
    ControlFlowInformation<CfgSimpleVertex>,
>