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

    Describes a linting result for a problematic eval usage, including the location of the eval call and the computed input sources that lead to it.

    interface ProblematicEvalResult {
        certainty: LintingResultCertainty;
        involvedId: NodeId | NodeId[] | undefined;
        loc: [
            startLine: number,
            startColumn: number,
            endLine: number,
            endColumn: number,
            f?: string,
        ];
        quickFix?: LintQuickFix[];
        sources: InputSources;
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of ProblematicEvalResult
    Index

    Properties

    The certainty of the linting result.

    involvedId: NodeId | NodeId[] | undefined

    The node ID or IDs involved in this linting result, if applicable.

    loc: [
        startLine: number,
        startColumn: number,
        endLine: number,
        endColumn: number,
        f?: string,
    ]
    quickFix?: LintQuickFix[]

    If available, what to do to fix the linting result.

    sources: InputSources