@eagleoutice/flowr - v2.10.2
    Preparing search index...
    DEAD_CODE: {
        createSearch: (
            config: DeadCodeConfig,
        ) => FlowrSearchBuilderOut<"all", [], ParentInformation, "with">;
        info: {
            certainty: BestEffort;
            defaultConfig: {};
            description: "Marks areas of code that are never reached during execution.";
            name: "Dead Code";
            tags: readonly [Smell, Usability, Reproducibility];
        };
        prettyPrint: {
            full: (result: DeadCodeResult) => string;
            query: (result: DeadCodeResult) => string;
        };
        processSearchResult: (
            elements: FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<ParentInformation>[],
            >,
            _config: DeadCodeConfig,
            _data: {
                analyzer: ReadonlyFlowrAnalysisProvider;
                cfg: ControlFlowInformation;
                dataflow: DataflowInformation;
                normalize: NormalizedAst;
            },
        ) => { ".meta": DeadCodeMetadata; results: DeadCodeResult[] };
    } = ...

    Type Declaration