//! Module: visitor::normalize
//! Responsibility: normalize visitor implementation over visitable trees.
//! Does not own: top-level normalize entrypoints or issue aggregation policy.
//! Boundary: mutating visitor used by the crate-level normalize surface.
use crate;
///
/// NormalizeVisitor
///
/// Walks a tree and applies normalization at each node.
///
pub ;