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

    Interface PositionalFunctionArgument

    A reference without a name, e.g. the references to 3 and 2 in foo(3, 2), see NamedFunctionArgument.

    interface PositionalFunctionArgument {
        cds?: ControlDependency[];
        name?: undefined;
        nodeId: NodeId;
        type: ReferenceType;
    }

    Hierarchy

    Index

    If the reference is only effective, if, for example, an if-then-else condition is true, this references the root of the if. As a hacky intermediate solution (until we have pointer-analysis), an empty array may indicate a maybe which is due to pointer access (e.g., in a[x] <- 3).

    name?: undefined
    nodeId: NodeId

    The id of the node which represents the reference in the NormalizedAst|normalized AST and the DataflowGraph|dataflow graph.

    Type of the reference to be resolved