shell bypass 403
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;