pub fn build_all(node: &mut dyn ComponentNode, ctx: &mut RustdvCtx)Expand description
Top-down: build a node, then build the children it just created (D6).
Reading children_mut after build is what lets a parent construct
them in its own build phase and have the walk descend into them.