interface MermaidCfgGraphPrinterInfo {
    basicBlockCharacterLimit?: number;
    entryPointStyle?: string;
    exitPointStyle?: string;
    includeBasicBlockLabel?: boolean;
    includeOnlyIds?: ReadonlySet<NodeId>;
    mark?: ReadonlySet<MermaidMarkdownMark>;
    markStyle?: MermaidMarkStyle;
    prefix?: string;
    simplify?: boolean;
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of MermaidCfgGraphPrinterInfo

Properties

basicBlockCharacterLimit?: number

If this threshold is reached (lexemes of a simplified basic block), the remaning character will be replaced by ...

entryPointStyle?: string

The style to apply to mark an entry point marker node

exitPointStyle?: string

The stly eto apply to mark an exit point marker node

includeBasicBlockLabel?: boolean

If true, a simplified basic block will have "Basic Block (id)" prepended

includeOnlyIds?: ReadonlySet<NodeId>
mark?: ReadonlySet<MermaidMarkdownMark>
markStyle?: MermaidMarkStyle
prefix?: string
simplify?: boolean