@eagleoutice/flowr - v2.13.14
    Preparing search index...
    DEFAULT_DATAFLOW_PIPELINE: Pipeline<
        | {
            dependencies: readonly [];
            description: "Parse the given R code into an AST";
            executed: OncePerFile;
            humanReadableName: "parse with R shell";
            name: "parse";
            printer: {
                "0": <Input>(input: ...) => ...;
                "2": {
                    (value: ..., replacer?: ..., space?: ...): ...;
                    (value: ..., replacer?: ..., space?: ...): ...;
                };
                "5": (p: ..., config: ...) => ...;
            };
            processor: (_results: unknown, input: Partial<(...)>) => Promise<(...)>;
            requiredInput: ParseRequiredInput<string>;
        }
        | {
            dependencies: readonly ["parse"];
            description: "Normalize the AST to flowR's AST";
            executed: OncePerFile;
            humanReadableName: "normalize";
            name: "normalize";
            printer: {
                "0": <Input>(input: ...) => ...;
                "2": (ast: ...) => ...;
                "3": (ast: ...) => ...;
                "4": (ast: ...) => ...;
                "5": (ast: ..., config: ...) => ...;
            };
            processor: (
                results: { parse?: ... },
                input: Partial<(...)>,
            ) => NormalizedAst<(...), (...)>;
            requiredInput: NormalizeRequiredInput;
        }
        | {
            dependencies: readonly ["normalize"];
            description: "Construct the dataflow graph";
            executed: OncePerFile;
            humanReadableName: "dataflow";
            name: "dataflow";
            printer: {
                "0": <Input>(input: ...) => ...;
                "2": (df: ...) => ...;
                "3": (
                    this: ...,
                    graph: ...,
                    includeEnvironments?: ...,
                    mark?: ...,
                    simplified?: ...,
                    qualifyBaseR?: ...,
                ) => ...;
                "4": (
                    this: ...,
                    graph: ...,
                    includeEnvironments?: ...,
                    mark?: ...,
                    simplified?: ...,
                    qualifyBaseR?: ...,
                ) => ...;
                "5": (df: ..., config: ...) => ...;
            };
            processor: (
                results: { normalize?: ... },
                input: { context?: ...; parser?: ... },
            ) => (...) & (...);
            requiredInput: {};
        },
    > = ...

    The default pipeline for working with flowR, including the dataflow step. See the DEFAULT_NORMALIZE_PIPELINE for the pipeline without the dataflow step and the DEFAULT_SLICE_AND_RECONSTRUCT_PIPELINE for the pipeline with slicing and reconstructing steps