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