dmd.ast_node

Defines the base class for all nodes which are part of the AST.

Authors

Walter Bright

Source: ast_node.d

  • Declaration

    abstract class ASTNode: dmd.root.rootobject.RootObject;

    The base class of all AST nodes.

    • Declaration

      abstract void accept(Visitor v);

      Visits this AST node using the given visitor.

      Parameters

      Visitor v

      the visitor to use when visiting this node