interface PrintCfgOptions {
    openCode?: boolean;
    prefix?: string;
    showCode?: boolean;
    simplifications?: readonly (
        "unique-cf-sets"
        | "remove-dead-code"
        | "to-basic-blocks"
    )[];
    simplify?: boolean;
    useDfg?: boolean;
}

Properties

openCode?: boolean
prefix?: string
showCode?: boolean
simplifications?: readonly (
    "unique-cf-sets"
    | "remove-dead-code"
    | "to-basic-blocks"
)[]
simplify?: boolean
useDfg?: boolean