Modules§
Structs§
- Builder for
AnalysisLog.
Enums§
- Order to iterate through a n-ary tree; for n-ary trees only Pre-order and Post-order make sense.
Traits§
- Trait which represents a stateful cursor in a n-ary tree. The cursor can be moved between nodes in the tree by the given methods, and the node which the cursor is currently pointing at can be read as well.
- Represents an AST node and offers convenient AST-specific functionality.
Functions§
- Traverse an n-ary tree using
cursor, returning the nodes of the tree through an iterator in an order according toorder.