<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">use strict;
use warnings;

package Test::Tester::Delegate;

our $VERSION = '1.302190';

use Scalar::Util();

use vars '$AUTOLOAD';

sub new
{
	my $pkg = shift;

	my $obj = shift;
	my $self = bless {}, $pkg;

	return $self;
}

sub AUTOLOAD
{
	my ($sub) = $AUTOLOAD =~ /.*::(.*?)$/;

	return if $sub eq "DESTROY";

	my $obj = $_[0]-&gt;{Object};

	my $ref = $obj-&gt;can($sub);
	shift(@_);
	unshift(@_, $obj);
	goto &amp;$ref;
}

sub can {
	my $this = shift;
	my ($sub) = @_;

	return $this-&gt;{Object}-&gt;can($sub) if Scalar::Util::blessed($this);

	return $this-&gt;SUPER::can(@_);
}

1;
</pre></body></html>