ParseTreeVisitor typedef

ParseTreeVisitor = bool Function(ParseTreeNode node)

A visitor function that is called for each node in the parse tree. Return false to stop traversal, true to continue.

Implementation

typedef ParseTreeVisitor = bool Function(ParseTreeNode node);