Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
Perl /
Tidy /
Delete
Unzip
Name
Size
Permission
Date
Action
VerticalAligner
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Debugger.pm
3.5
KB
-rw-rw-rw-
2021-01-09 17:29
DevNull.pm
391
B
-rw-rw-rw-
2021-01-09 17:29
Diagnostics.pm
2.73
KB
-rw-rw-rw-
2021-01-09 17:29
FileWriter.pm
11.81
KB
-rw-rw-rw-
2021-01-09 17:29
Formatter.pm
780.51
KB
-rw-rw-rw-
2021-01-10 16:05
HtmlWriter.pm
49.26
KB
-rw-rw-rw-
2021-01-09 17:29
IOScalar.pm
3.42
KB
-rw-rw-rw-
2021-01-09 17:29
IOScalarArray.pm
2.98
KB
-rw-rw-rw-
2021-01-09 17:29
IndentationItem.pm
7.51
KB
-rw-rw-rw-
2021-01-09 17:29
LineBuffer.pm
2.3
KB
-rw-rw-rw-
2021-01-09 17:29
LineSink.pm
3.39
KB
-rw-rw-rw-
2021-01-09 17:29
LineSource.pm
3.63
KB
-rw-rw-rw-
2021-01-09 17:29
Logger.pm
18.63
KB
-rw-rw-rw-
2021-01-09 17:29
Tokenizer.pm
319.26
KB
-rw-rw-rw-
2021-01-09 17:31
VerticalAligner.pm
197.81
KB
-rw-rw-rw-
2021-01-09 17:30
Save
Rename
##################################################################### # # The Perl::Tidy::LineBuffer class supplies a 'get_line()' # method for returning the next line to be parsed, as well as a # 'peek_ahead()' method # # The input parameter is an object with a 'get_line()' method # which returns the next line to be parsed # ##################################################################### package Perl::Tidy::LineBuffer; use strict; use warnings; our $VERSION = '20210111'; sub AUTOLOAD { # Catch any undefined sub calls so that we are sure to get # some diagnostic information. This sub should never be called # except for a programming error. our $AUTOLOAD; return if ( $AUTOLOAD =~ /\bDESTROY$/ ); my ( $pkg, $fname, $lno ) = caller(); my $my_package = __PACKAGE__; print STDERR <<EOM; ====================================================================== Error detected in package '$my_package', version $VERSION Received unexpected AUTOLOAD call for sub '$AUTOLOAD' Called from package: '$pkg' Called from File '$fname' at line '$lno' This error is probably due to a recent programming change ====================================================================== EOM exit 1; } sub DESTROY { # required to avoid call to AUTOLOAD in some versions of perl } sub new { my ( $class, $line_source_object ) = @_; return bless { _line_source_object => $line_source_object, _rlookahead_buffer => [], }, $class; } sub peek_ahead { my ( $self, $buffer_index ) = @_; my $line = undef; my $line_source_object = $self->{_line_source_object}; my $rlookahead_buffer = $self->{_rlookahead_buffer}; if ( $buffer_index < scalar( @{$rlookahead_buffer} ) ) { $line = $rlookahead_buffer->[$buffer_index]; } else { $line = $line_source_object->get_line(); push( @{$rlookahead_buffer}, $line ); } return $line; } sub get_line { my $self = shift; my $line = undef; my $line_source_object = $self->{_line_source_object}; my $rlookahead_buffer = $self->{_rlookahead_buffer}; if ( scalar( @{$rlookahead_buffer} ) ) { $line = shift @{$rlookahead_buffer}; } else { $line = $line_source_object->get_line(); } return $line; } 1;