Interface DependencyNode

Represents a node in a dependency tree.

Hierarchy

Implemented by

Properties

deepDependants: Iterable<Interfaces.DependencyNode>

All the nodes that depend on this node, and all the nodes that those nodes depend on, and so on. Uses a depth-first search.

deepDependencies: Iterable<Interfaces.DependencyNode>

All the nodes that this node depends on, and all the nodes that depend on those nodes, and so on. Uses a depth-first search.

dependants: Iterable<Interfaces.DependencyNode>

All the nodes that depend on this node.

dependencies: Iterable<Interfaces.DependencyNode>

All the nodes that this node depends on.

Methods

  • Returns true if the node exists, false otherwise.
    false is returned when a node, that normally exists, encounters a special case where it does not exist.

    Returns boolean

Generated using TypeDoc