EdgeASTPropaties is an interface that defines the properties of an EdgeASTNode.

interface EdgeASTPropaties {
    location?: FileRange;
    targets: [from: EdgeTargetASTNode, to: EdgeTargetASTNode, ...rest: EdgeTargetASTNode[]];
}

Hierarchy (view full)

Properties

Properties

location?: FileRange

The start and end location of the AST object.

targets: [from: EdgeTargetASTNode, to: EdgeTargetASTNode, ...rest: EdgeTargetASTNode[]]

An array of EdgeTargetASTNodes. The EdgeTargetASTNode represents a node that is the target of an edge.

Generated using TypeDoc