Devel-TrackSIG
view release on metacpan or search on metacpan
lib/Devel/TrackGlobalScalar.pm view on Meta::CPAN
}
}
sub TIESCALAR {
my $class = shift;
my $instance = shift || undef;
my $name = shift;
my $o = bless [\$instance, $name] => $class;
$globals{$name} = $o;
return $o;
}
sub FETCH {
#_report($_[0], 'FETCH');
return ${$_[0][0]};
}
sub STORE {
( run in 0.368 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )