Help for this page

Select Code to Download


  1. or download this
    - pre processor
    - processor
    - post processor
    - engine
    
  2. or download this
    sub engines {
         
    ...
        }
        return @engines;
    }
    
  3. or download this
    sub new {
         
    ...
     
        return $dt;
    }
    
  4. or download this
    sub all {
         
    ...
            return \@subs;
        };
    }
    
  5. or download this
    sub _engine {
         
    ...
     
        return $cref;
    }
    
  6. or download this
    sub all {
         
    ...
         
        $self->run($p);
    }
    
  7. or download this
    sub run {
     
    ...
     
        return $struct;
    }
    
  8. or download this
        my $engine = $self->_engine($p, $subs);
     
    ...
            $subs = $engine->($p, $subs);
            $self->{write_file_contents} = $p->{write_file_contents};
        }