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 /
Perl /
Tidy /
[ HOME SHELL ]
Name
Size
Permission
Action
VerticalAligner
[ DIR ]
drwxrwxrwx
Debugger.pm
3.5
KB
-rw-rw-rw-
DevNull.pm
391
B
-rw-rw-rw-
Diagnostics.pm
1.92
KB
-rw-rw-rw-
FileWriter.pm
6.84
KB
-rw-rw-rw-
Formatter.pm
672.95
KB
-rw-rw-rw-
HtmlWriter.pm
48.41
KB
-rw-rw-rw-
IOScalar.pm
2.61
KB
-rw-rw-rw-
IOScalarArray.pm
2.16
KB
-rw-rw-rw-
IndentationItem.pm
6.87
KB
-rw-rw-rw-
LineBuffer.pm
1.48
KB
-rw-rw-rw-
LineSink.pm
2.58
KB
-rw-rw-rw-
LineSource.pm
2.81
KB
-rw-rw-rw-
Logger.pm
17.13
KB
-rw-rw-rw-
Tokenizer.pm
286.9
KB
-rw-rw-rw-
VerticalAligner.pm
149.48
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IndentationItem.pm
##################################################################### # # the Perl::Tidy::IndentationItem class supplies items which contain # how much whitespace should be used at the start of a line # ##################################################################### package Perl::Tidy::IndentationItem; use strict; use warnings; our $VERSION = '20200619'; sub new { # Create an 'indentation_item' which describes one level of leading # whitespace when the '-lp' indentation is used. my ( $class, %input_hash ) = @_; my $spaces = $input_hash{spaces}; my $level = $input_hash{level}; my $ci_level = $input_hash{ci_level}; my $available_spaces = $input_hash{available_spaces}; my $index = $input_hash{index}; my $gnu_sequence_number = $input_hash{gnu_sequence_number}; my $align_paren = $input_hash{align_paren}; my $stack_depth = $input_hash{stack_depth}; my $starting_index = $input_hash{starting_index}; my $closed = -1; my $arrow_count = 0; my $comma_count = 0; my $have_child = 0; my $want_right_spaces = 0; my $marked = 0; # DEFINITIONS: # spaces => # total leading white spaces # level => # the indentation 'level' # ci_level => # the 'continuation level' # available_spaces => # how many left spaces available # # for this level # closed => # index where we saw closing '}' # comma_count => # how many commas at this level? # sequence_number => # output batch number # index => # index in output batch list # have_child => # any dependents? # recoverable_spaces => # how many spaces to the right # # we would like to move to get # # alignment (negative if left) # align_paren => # do we want to try to align # # with an opening structure? # marked => # if visited by corrector logic # stack_depth => # indentation nesting depth # starting_index => # first token index of this level # arrow_count => # how many =>'s return bless { _spaces => $spaces, _level => $level, _ci_level => $ci_level, _available_spaces => $available_spaces, _closed => $closed, _comma_count => $comma_count, _sequence_number => $gnu_sequence_number, _index => $index, _have_child => $have_child, _recoverable_spaces => $want_right_spaces, _align_paren => $align_paren, _marked => $marked, _stack_depth => $stack_depth, _starting_index => $starting_index, _arrow_count => $arrow_count, }, $class; } sub permanently_decrease_available_spaces { # make a permanent reduction in the available indentation spaces # at one indentation item. NOTE: if there are child nodes, their # total SPACES must be reduced by the caller. my ( $item, $spaces_needed ) = @_; my $available_spaces = $item->get_available_spaces(); my $deleted_spaces = ( $available_spaces > $spaces_needed ) ? $spaces_needed : $available_spaces; $item->decrease_available_spaces($deleted_spaces); $item->decrease_SPACES($deleted_spaces); $item->set_recoverable_spaces(0); return $deleted_spaces; } sub tentatively_decrease_available_spaces { # We are asked to tentatively delete $spaces_needed of indentation # for an indentation item. We may want to undo this later. NOTE: if # there are child nodes, their total SPACES must be reduced by the # caller. my ( $item, $spaces_needed ) = @_; my $available_spaces = $item->get_available_spaces(); my $deleted_spaces = ( $available_spaces > $spaces_needed ) ? $spaces_needed : $available_spaces; $item->decrease_available_spaces($deleted_spaces); $item->decrease_SPACES($deleted_spaces); $item->increase_recoverable_spaces($deleted_spaces); return $deleted_spaces; } sub get_stack_depth { my $self = shift; return $self->{_stack_depth}; } sub get_spaces { my $self = shift; return $self->{_spaces}; } sub get_marked { my $self = shift; return $self->{_marked}; } sub set_marked { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_marked} = $value; } return $self->{_marked}; } sub get_available_spaces { my $self = shift; return $self->{_available_spaces}; } sub decrease_SPACES { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_spaces} -= $value; } return $self->{_spaces}; } sub decrease_available_spaces { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_available_spaces} -= $value; } return $self->{_available_spaces}; } sub get_align_paren { my $self = shift; return $self->{_align_paren}; } sub get_recoverable_spaces { my $self = shift; return $self->{_recoverable_spaces}; } sub set_recoverable_spaces { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_recoverable_spaces} = $value; } return $self->{_recoverable_spaces}; } sub increase_recoverable_spaces { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_recoverable_spaces} += $value; } return $self->{_recoverable_spaces}; } sub get_ci_level { my $self = shift; return $self->{_ci_level}; } sub get_level { my $self = shift; return $self->{_level}; } sub get_sequence_number { my $self = shift; return $self->{_sequence_number}; } sub get_index { my $self = shift; return $self->{_index}; } sub get_starting_index { my $self = shift; return $self->{_starting_index}; } sub set_have_child { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_have_child} = $value; } return $self->{_have_child}; } sub get_have_child { my $self = shift; return $self->{_have_child}; } sub set_arrow_count { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_arrow_count} = $value; } return $self->{_arrow_count}; } sub get_arrow_count { my $self = shift; return $self->{_arrow_count}; } sub set_comma_count { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_comma_count} = $value; } return $self->{_comma_count}; } sub get_comma_count { my $self = shift; return $self->{_comma_count}; } sub set_closed { my ( $self, $value ) = @_; if ( defined($value) ) { $self->{_closed} = $value; } return $self->{_closed}; } sub get_closed { my $self = shift; return $self->{_closed}; } 1;
Close