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

    Variable UNDEFINED_SYMBOLConst

    UNDEFINED_SYMBOL: {
        createSearch: (
            _config: UndefinedSymbolConfig,
        ) => FlowrSearchBuilderOut<"all", [], ParentInformation, "filter">;
        info: {
            certainty: OverApproximative;
            defaultConfig: {
                checkFunctions: true;
                checkSubscripts: false;
                checkVariables: true;
            };
            description: "Flags functions and variables that are neither defined locally, a base R builtin, nor exported by a loaded package.";
            name: "Undefined Symbol";
            tags: readonly [Bug, Experimental];
        };
        prettyPrint: {
            full: (result: UndefinedSymbolResult) => string;
            query: (result: UndefinedSymbolResult) => string;
        };
        processSearchResult: (
            elements: FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<(...)>[],
            >,
            config: UndefinedSymbolConfig,
            data: ReadonlyFlowrAnalysisProvider<KnownParser>,
        ) => Promise<{ ".meta": UndefinedSymbolMetadata; results: (...)[] }>;
    } = ...

    Flags function calls (sd()) and, opt-in, variable reads (x) that are neither defined locally, a builtin, nor exported by a package in scope - the DESCRIPTION/library() packages plus the default-attached base packages, all resolved from the flowr-sigdb database. To stay precise it consults flowR's dataflow: non-standard evaluation (quoting) is not reported, and an unloaded package that exports the name is offered as a hint. Over-approximative: NSE beyond what flowR models can still cause false positives.

    Type Declaration