ASTNode

The base class of all AST nodes.

extern (C++) abstract
class ASTNode : RootObject {}

Members

Functions

accept
void accept(Visitor v)

Visits this AST node using the given visitor.

Inherited Members

From RootObject

equals
bool equals(RootObject o)
Undocumented in source. Be warned that the author may not have intended to support it.
toChars
const(char)* toChars()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
const(char)[] toString()
dyncast
DYNCAST dyncast()
Undocumented in source. Be warned that the author may not have intended to support it.

Meta