@eagleoutice/flowr - v2.10.1
    Preparing search index...
    Enrichments: {
        "call-targets": {
            enrichElement: (
                e: FlowrSearchElement<ParentInformation>,
                _s: FlowrSearchElements<
                    ParentInformation,
                    FlowrSearchElement<ParentInformation>[],
                >,
                analyzer: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: { onlyBuiltin?: boolean } | undefined,
                prev: CallTargetsContent | undefined,
            ) => Promise<CallTargetsContent>;
            mapper: (
                __namedParameters: CallTargetsContent,
            ) => FlowrSearchElement<ParentInformation>[];
        };
        "cfg-information": {
            enrichElement: (
                e: FlowrSearchElement<ParentInformation>,
                search: FlowrSearchElements<
                    ParentInformation,
                    FlowrSearchElement<ParentInformation>[],
                >,
                _data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                _args: CfgInformationArguments | undefined,
                prev: CfgInformationElementContent | undefined,
            ) => { isReachable: boolean | undefined; isRoot: boolean };
            enrichSearch: (
                _search: FlowrSearchElements<
                    ParentInformation,
                    FlowrSearchElement<ParentInformation>[],
                >,
                data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: CfgInformationArguments | undefined,
                prev: CfgInformationSearchContent | undefined,
            ) => Promise<CfgInformationSearchContent>;
        };
        "last-call": {
            enrichElement: (
                e: FlowrSearchElement<ParentInformation>,
                _s: FlowrSearchElements<
                    ParentInformation,
                    FlowrSearchElement<ParentInformation>[],
                >,
                analyzer: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: Omit<LinkToLastCall<CallNameTypes>, "type">[] | undefined,
                prev: LastCallContent | undefined,
            ) => Promise<LastCallContent>;
            mapper: (
                __namedParameters: LastCallContent,
            ) => FlowrSearchElement<ParentInformation>[];
        };
        "query-data": {
            enrichElement: (
                _e: FlowrSearchElement<ParentInformation>,
                _search: FlowrSearchElements<
                    ParentInformation,
                    FlowrSearchElement<ParentInformation>[],
                >,
                _data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: QueryDataElementContent | undefined,
                prev: QueryDataElementContent | undefined,
            ) => QueryDataElementContent;
            enrichSearch: (
                _search: FlowrSearchElements<
                    ParentInformation,
                    FlowrSearchElement<ParentInformation>[],
                >,
                _data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: QueryDataSearchContent | undefined,
                prev: QueryDataSearchContent | undefined,
            ) => Required<QueryDataSearchContent>;
        };
    } = ...

    The registry of enrichments that are currently supported by the search. See FlowrSearchBuilder.with for more information on how to apply enrichments.

    Type Declaration