interface NameNode {
    kind: "Name";
    loc?: Location;
    value: string;
}

Properties

Properties

kind: "Name"
loc?: Location
value: string