AttributeListASTNode is a type of AST node that represents a list of attributes.

interface AttributeListASTNode {
    children: (CommentASTNode | AttributeASTNode<AttributeKey>)[];
    kind: "Graph" | "Node" | "Edge";
    location?: FileRange;
    type: "AttributeList";
}

Hierarchy (view full)

Properties

kind: "Graph" | "Node" | "Edge"
location?: FileRange

The start and end location of the AST object.

type: "AttributeList"

Every leaf interface that extends ASTBaseNode must specify a type property.

Generated using TypeDoc