Function Graph Overview
    Preparing search index...
    interface Context {
        builder: Builder;
        options: BuilderOptions;
        matcher: BlockMatcher;
        dispatch: Dispatch;
        state: BlockHandler;
        link: Link;
        extra?: Extra;
        callProcessor?: (
            call: Node,
            functionName: string,
            ctx: Context,
        ) => undefined | BasicBlock;
    }
    Index

    Properties

    builder: Builder
    matcher: BlockMatcher
    dispatch: Dispatch
    link: Link
    extra?: Extra
    callProcessor?: (
        call: Node,
        functionName: string,
        ctx: Context,
    ) => undefined | BasicBlock