@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Please use FlowrAnalyzer instead of this directly unless you really know what you are doing. Returns either a DEFAULT_PARSE_PIPELINE or a TREE_SITTER_PARSE_PIPELINE depending on the parser used.

    • Parameters

      Returns PipelineExecutor<
          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>;
              },
          >,
      >

    • Parameters

      Returns PipelineExecutor<
          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>;
              },
          >,
      >

    • Parameters

      Returns
          | PipelineExecutor<
              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": ...; "2": ... };
                      processor: (_results: ..., input: ...) => ...;
                      requiredInput: ParseRequiredInput<(...)>;
                  },
              >,
          >
          | PipelineExecutor<
              Pipeline<
                  {
                      dependencies: readonly [];
                      description: "Parse the given R code into an AST";
                      executed: OncePerFile;
                      humanReadableName: "parse with R shell";
                      name: "parse";
                      printer: { "0": ...; "2": ...; "5": ... };
                      processor: (_results: ..., input: ...) => ...;
                      requiredInput: ParseRequiredInput<(...)>;
                  },
              >,
          >