summaryrefslogtreecommitdiff
path: root/benchmarks/cmop/lib/MOP/Immutable/Point.pm
blob: a0d7c902fbdb00bf49de21fe6d4c27fd9c7f628a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

package MOP::Immutable::Point;

use strict;
use warnings;
use metaclass;

__PACKAGE__->meta->add_attribute('x' => (accessor => 'x', default => 10));
__PACKAGE__->meta->add_attribute('y' => (accessor => 'y'));

sub clear {
    my $self = shift;
    $self->x(0);
    $self->y(0);
}

__PACKAGE__->meta->make_immutable;

1;

__END__