The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl -w
use strict;
use Test::More 'no_plan';
{
package Stuff;
method echo($arg) : method {
return $arg;
}
is( Stuff->echo(42), 42 );
is_deeply( [attributes::get \&echo], ['method'] );
}
{
package Foo;
my $code = func () : method {};
is_deeply( [attributes::get $code], ['method'] );
}
{
package Things;
my $attrs;
my $cb_called;
sub MODIFY_CODE_ATTRIBUTES {
my ($pkg, $code, @attrs) = @_;
$cb_called = 1;
$attrs = \@attrs;
return ();
}
method moo($foo, $bar) : Bar Baz(fubar) {
}
# Torture test for the attribute handling.
method foo
:
Bar
:Moo(:Ko{oh)
: Baz(fu{bar:): { return {} }
::ok($cb_called, 'attribute handler got called');
::is_deeply($attrs, [qw/Bar Moo(:Ko{oh) Baz(fu{bar:)/], '... with the right attributes');
}