Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
PPI /
Normal /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
Standard.pm
3.12
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Standard.pm
package PPI::Normal::Standard; =pod =head1 NAME PPI::Normal::Standard - Provides standard document normalization functions =head1 DESCRIPTION This module provides the default normalization methods for L<PPI::Normal>. There is no reason for you to need to load this yourself. B<Move along, nothing to see here>. =cut use strict; our $VERSION = '1.270'; # VERSION ##################################################################### # Configuration and Registration my @METHODS = ( remove_insignificant_elements => 1, remove_useless_attributes => 1, remove_useless_pragma => 2, remove_statement_separator => 2, remove_useless_return => 2, ); sub import { PPI::Normal->register( map { /\D/ ? "PPI::Normal::Standard::$_" : $_ } @METHODS ) or die "Failed to register PPI::Normal::Standard transforms"; } ##################################################################### # Level 1 Transforms # Remove all insignificant elements sub remove_insignificant_elements { my $Document = shift; $Document->prune( sub { ! $_[1]->significant } ); } # Remove custom attributes that are not relevant to normalization sub remove_useless_attributes { my $Document = shift; delete $Document->{tab_width}; ### FIXME - Add support for more things } ##################################################################### # Level 2 Transforms # Remove version dependencies and pragma my $remove_pragma = map { $_ => 1 } qw{ strict warnings diagnostics less }; sub remove_useless_pragma { my $Document = shift; $Document->prune( sub { return '' unless $_[1]->isa('PPI::Statement::Include'); return 1 if $_[1]->version; return 1 if $remove_pragma->{$_[1]->pragma}; ''; } ); } # Remove all semi-colons at the end of statements sub remove_statement_separator { my $Document = shift; $Document->prune( sub { $_[1]->isa('PPI::Token::Structure') or return ''; $_[1]->content eq ';' or return ''; my $stmt = $_[1]->parent or return ''; $stmt->isa('PPI::Statement') or return ''; $_[1]->next_sibling and return ''; 1; } ); } # In any block, the "return" in the last statement is not # needed if there is only one and only one thing after the # return. sub remove_useless_return { my $Document = shift; $Document->prune( sub { $_[1]->isa('PPI::Token::Word') or return ''; $_[1]->content eq 'return' or return ''; my $stmt = $_[1]->parent or return ''; $stmt->isa('PPI::Statement::Break') or return ''; $stmt->children == 2 or return ''; $stmt->next_sibling and return ''; my $block = $stmt->parent or return ''; $block->isa('PPI::Structure::Block') or return ''; 1; } ); } 1; =pod =head1 SUPPORT See the L<support section|PPI/SUPPORT> in the main module. =head1 AUTHOR Adam Kennedy E<lt>adamk@cpan.orgE<gt> =head1 COPYRIGHT Copyright 2005 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. =cut
Close