pub type ConditionalTreeNode = TreeNode<Symbol>;Expand description
A binary search tree to store all paths through nested conditional blocks.
Aliased Type§
pub struct ConditionalTreeNode {
pub depth: usize,
pub elements: IndexSet<Symbol>,
pub counter: usize,
}Fields§
§depth: usizeThe current depth.
elements: IndexSet<Symbol>The current node.
counter: usizeA counter.