foo(3, 2)
interface PositionalFunctionArgument {
    controlDependencies: undefined | ControlDependency[];
    name?: undefined;
    nodeId: NodeId;
    type: ReferenceType;
}

Hierarchy

Hierarchy-Diagram

UML class diagram of PositionalFunctionArgument

Properties

controlDependencies: undefined | ControlDependency[]

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

Node which represents the reference in the AST

Type of the reference to be resolved