Help for this page

Select Code to Download


  1. or download this
       +---------+        +---------+        +---------+
       |  Filter |        |   Safe  |        |   Base  | 
    ...
                        +-------------+
                        | Safe_Filter | @ISA=qw(Filter Safe Base);
                        +-------------+
    
  2. or download this
      BEGIN { push @MIXIN, "#line ".__LINE__.' "'.__FILE__.'"', "", <<'/' 
    +}
      sub compile {
        eval { local $SIG{__DIE__}; (shift)->SUPER::compile( @_) };
      }
      /
    
  3. or download this
      sub compile {
        eval { local $SIG{__DIE__}; (shift)->NEXT('compile', @_) };
      }
    
  4. or download this
      sub NEXT {
        my ( $self, $method, @args ) = @_;
    ...
        }
        Carp::croak( "Can't find NEXT method" );
      }