From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
our $VERSION = '1.302210';
BEGIN {
our @ISA = ('Test2::EventFacet');
}
our $AUTOLOAD;
sub AUTOLOAD {
my $self = shift;
my $name = $AUTOLOAD;
$name =~ s/^.*:://g;
return undef unless exists $self->{$name};
return $self->{$name};
}
sub DESTROY {}
1;