pub fn walk_mut(nodes: &mut Vec<Node>, f: &mut dyn FnMut(&mut Node))
Walk all nodes in the AST, calling f on each with a mutable reference. Useful for implementing transforms.
f