@eagleoutice/flowr - v2.13.1
    Preparing search index...
    interface UndefinedSymbolConfig {
        checkFunctions: boolean;
        checkSubscripts: boolean;
        checkVariables: boolean;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of UndefinedSymbolConfig
    Index

    Properties

    checkFunctions: boolean

    flag names used in a function-call position that cannot be resolved (default true)

    checkSubscripts: boolean

    flag unresolved symbols used as [/[[ subscripts (default false). Off by default to mute data.table's DT[i, j, by] column masking, which flowR cannot distinguish from ordinary indexing.

    checkVariables: boolean

    flag names used as a variable read that cannot be resolved (default true). Formulas and data-masking (dplyr/tidyr/ggplot, subset/with) are recognised via flowR's dataflow, so this is precise; residual false positives are possible in dynamic eval/attach.