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

    A call a framework is given a function through, binding its parameters by position - which is how R passes them, so this catches a shinyApp(ui, function(i, o, s)) that no name-based rule can.

    interface LinkedInputEntryPoint {
        argIdx: number;
        argName: string;
        call: Identifier;
        params: readonly (string | undefined)[];
    }
    Index
    argIdx: number

    the index of that argument when it is passed positionally

    argName: string

    the name of the argument holding the function

    the call taking the function, e.g. shiny::shinyApp

    params: readonly (string | undefined)[]

    which LinkedInputObject the framework binds to each parameter, by position; undefined leaves one alone