@eagleoutice/flowr - v2.11.0
    Preparing search index...
    UNDEFINED_SYMBOL: {
        createSearch: (
            _config: UndefinedSymbolConfig,
        ) => FlowrSearchBuilderOut<"all", [], ParentInformation, "filter">;
        info: {
            certainty: OverApproximative;
            defaultConfig: {};
            description: "Flags calls to functions that are neither defined locally, a known 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<ParentInformation>[],
            >,
            config: MergeableRecord,
            data: ReadonlyFlowrAnalysisProvider<KnownParser>,
        ) => Promise<
            {
                ".meta": UndefinedSymbolMetadata;
                results: {
                    certainty: Uncertain;
                    involvedId: NodeId;
                    loc: [
                        startLine: number,
                        startColumn: number,
                        endLine: number,
                        endColumn: number,
                        f?: string,
                    ];
                    name: BrandedIdentifier;
                }[];
            },
        >;
    } = ...

    Flags calls to functions that are neither defined locally, a known builtin, nor exported by a package loaded via library()/require()/use() (resolved from the flowr-pkgdb database). Over-approximative: reflection/NSE and packages without export info can cause false positives.

    Type Declaration