1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#!./perl
BEGIN {
chdir 't' if -d 't';
require './test.pl';
set_up_inc('../lib');
require Config;
}
use v5.36;
use feature 'class';
no warnings 'experimental::class';
# A legacy-perl class to act as a test helper
package DestructionNotify {
sub new { my $pkg = shift; bless [ @_ ], $pkg }
sub DESTROY { my $self = shift; ${ $self->[0] } .= $self->[1] }
}
{
my $destroyed;
my $notifier = DestructionNotify->new( \$destroyed, 1 );
undef $notifier;
$destroyed or
BAIL_OUT('DestructionNotify does not work');
}
{
my $destroyed;
class Test1 {
field $x;
method x { return $x; }
ADJUST {
$x = DestructionNotify->new( \$destroyed, "x" );
}
field $y;
field $z;
ADJUST {
# These in the "wrong" order just to prove to ourselves that it
# doesn't matter
$z = DestructionNotify->new( \$destroyed, "z" );
$y = DestructionNotify->new( \$destroyed, "y" );
}
}
my $obj = Test1->new;
ok(!$destroyed, 'Destruction notify not yet triggered');
refcount_is $obj, 1, 'Object has one reference';
# one in $obj, one stack temporary here
refcount_is $obj->x, 2, 'DestructionNotify has two references';
undef $obj;
is($destroyed, "zyx", 'Destruction notify triggered by object destruction in the correct order');
}
done_testing;
|