Module syn_solidity::visit_mut

source ·
Available on crate feature visit-mut only.
Expand description

Syntax tree traversal to mutate an exclusive borrow of a syntax tree in place.

Each method of the VisitMut trait is a hook that can be overridden to customize the behavior when visiting the corresponding type of node. By default, every method recursively visits the substructure of the input by invoking the right visitor method of each of its fields.

Traits

  • Syntax tree traversal to mutate an exclusive borrow of a syntax tree in place.

Functions