Sha256: a9d815cdefe56f6da290385a2d8ea300b1ca5996dc6c12e82c19c9f5613c9194
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
package Method::Generate::DemolishAll; use strictures 1; use base qw(Moo::Object); use Sub::Quote qw(quote_sub quotify); use Moo::_Utils; sub generate_method { my ($self, $into) = @_; quote_sub "${into}::DEMOLISHALL", join '', $self->_handle_subdemolish($into), qq{ my \$self = shift;\n}, $self->demolishall_body_for($into, '$self', '@_'), qq{ return \$self\n}; quote_sub "${into}::DESTROY", join '', q! my $self = shift; my $e = do { local $?; local $@; require Moo::_Utils; eval { $self->DEMOLISHALL(Moo::_Utils::_in_global_destruction); }; $@; }; no warnings 'misc'; die $e if $e; # rethrow !; } sub demolishall_body_for { my ($self, $into, $me, $args) = @_; my @demolishers = grep *{_getglob($_)}{CODE}, map "${_}::DEMOLISH", @{Moo::_Utils::_get_linear_isa($into)}; join '', map qq{ ${me}->${_}(${args});\n}, @demolishers; } sub _handle_subdemolish { my ($self, $into) = @_; ' if (ref($_[0]) ne '.quotify($into).') {'."\n". ' return shift->Moo::Object::DEMOLISHALL(@_)'.";\n". ' }'."\n"; } 1;
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
STLExtract-1.0.1 | Slic3r/Linux/lib/std/Method/Generate/DemolishAll.pm |
STLExtract-1.0.0 | Slic3r/Linux/lib/std/Method/Generate/DemolishAll.pm |