- or download this
# build the dependency map for active children
$child{$_} ||= $parent{$_} for grep $_->active, $self->children;
- or download this
warn "Deleting removed script '$_'\n" for map $_->name, @deleted;
- or download this
for my $hidden (grep !$_->visible, @objects) {
...
}
- or download this
# build the dependency map for active children
$_->active and $child{$_} ||= $parent{$_} for $self->children;
...
next if $hidden->visible;
...
}