DotASTNode is a type of AST node that represents a dot in a graph.

interface DotASTNode {
    children: StatementASTNode[];
    location?: FileRange;
    type: "Dot";
}

Hierarchy (view full)

Properties

children: StatementASTNode[]
location?: FileRange

The start and end location of the AST object.

type: "Dot"

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

Generated using TypeDoc