A FlowrSearchElement that is enriched with a set of enrichments through FlowrSearchBuilder.with. Enrichments can be retrieved easily from an element through enrichmentContent.

interface EnrichedFlowrSearchElement<Info> {
    enrichments: {
        "call-targets"?: CallTargetsContent;
        "last-call"?: LastCallContent;
    };
    node: RNode<Info>;
}

Type Parameters

  • Info

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of EnrichedFlowrSearchElement

Properties

Properties

enrichments: {
    "call-targets"?: CallTargetsContent;
    "last-call"?: LastCallContent;
}
node: RNode<Info>