The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
if (defined $m)
	{
	my @result = (( ref $m eq 'CODE' ) ? &{$m}( ref $match ? @$match : $match) : $m);
	if (@result == 1)
		{ $match = $result[0]; }
	else
		{ $match = [ @result ]; }
	$result->[$i + 1] = $match;	
	}

if (defined $stval)
	{
	my @result;
	if (ref $match) { @result = get_strings($match); }
	else { @result = $match; }
	if (ref $stval eq 'CODE')
		{ &{$stval}($self, @result); }
	else
		{ push @{$self->{$stval}}, @result; }
	}

1 POD Error

The following errors were encountered while parsing the POD:

Around line 570:

Unknown directive: =comment