Help for this page

Select Code to Download


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