@eagleoutice/flowr - v2.13.16
    Preparing search index...
    TREE_SITTER_NORMALIZE_PIPELINE: Pipeline<
        | {
            dependencies: readonly [];
            description: "Parse the given R code into an AST using tree-sitter";
            executed: OncePerFile;
            humanReadableName: "parse with tree-sitter";
            name: "parse";
            printer: {
                "0": <Input>(input: ...) => ...;
                "2": {
                    (value: ..., replacer?: ..., space?: ...): ...;
                    (value: ..., replacer?: ..., space?: ...): ...;
                };
            };
            processor: (_results: unknown, input: Partial<(...)>) => Promise<(...)>;
            requiredInput: ParseRequiredInput<Tree>;
        }
        | {
            dependencies: readonly ["parse"];
            description: "Normalize the AST to flowR's AST";
            executed: OncePerFile;
            humanReadableName: "normalize tree-sitter tree";
            name: "normalize";
            printer: {
                "0": <Input>(input: ...) => ...;
                "2": (ast: ...) => ...;
                "3": (ast: ...) => ...;
                "4": (ast: ...) => ...;
                "5": (ast: ..., config: ...) => ...;
            };
            processor: (
                results: { parse?: ... },
                input: Partial<(...)>,
            ) => NormalizedAst<(...), (...)>;
            requiredInput: NormalizeRequiredInput;
        },
    > = ...