Function Graph Overview
    Preparing search index...

    Interface BuilderOptions

    interface BuilderOptions {
        flatSwitch?: boolean;
        markerPattern?: RegExp;
        callProcessor?: (
            call: Node,
            name: string,
            ctx: Context,
        ) => undefined | BasicBlock;
    }
    Index

    Properties

    flatSwitch?: boolean

    Render switches as flat, vs. an if-else chain

    markerPattern?: RegExp

    The comment pattern to use for markers. The first capture group will be used as the marker text.

    callProcessor?: (
        call: Node,
        name: string,
        ctx: Context,
    ) => undefined | BasicBlock