for my $child ($root->children) { my $handler = $child->tag; if ($dispatch{$handler}) { $dispatch{$handler}->($child, $data_struct); } else { die "Haven't written handler for '$handler' yet"; } }