interface VariableNode {
    kind: "Variable";
    loc?: Location;
    name: NameNode;
}

Properties

Properties

kind: "Variable"
loc?: Location
name: NameNode