STATIC_DATAFLOW: {
    dependencies: readonly ["normalize"];
    description: "Construct the dataflow graph";
    executed: OncePerFile;
    humanReadableName: "dataflow";
    name: "dataflow";
    printer: {
        "0": <Input>(input: Input) => Input;
        "2": (df: DataflowInformation) => string;
        "3": (df: DataflowInformation) => string;
        "4": (df: DataflowInformation) => string;
        "5": (
            df: DataflowInformation,
            config: QuadSerializationConfiguration,
        ) => string;
    };
    processor: (
        results: {
            normalize?: NormalizedAst<
                ParentInformation,
                RProject<ParentInformation>,
            >;
        },
        input: {
            context?: FlowrAnalyzerContext;
            parser?: Parser<KnownParserType>;
        },
    ) => DataflowInformation & {
        cfgQuick: undefined
        | ControlFlowInformation<CfgSimpleVertex>;
    };
    requiredInput: {};
} = ...

Type declaration