B::Hooks::EndOfScope - Execute code after a scope finished compilation


B-Hooks-EndOfScope documentation Contained in the B-Hooks-EndOfScope distribution.

Index


Code Index:

NAME

Top

B::Hooks::EndOfScope - Execute code after a scope finished compilation

SYNOPSIS

Top

    on_scope_end { ... };

DESCRIPTION

Top

This module allows you to execute code when perl finished compiling the surrounding scope.

FUNCTIONS

Top

on_scope_end

    on_scope_end { ... };

    on_scope_end $code;

Registers $code to be executed after the surrounding scope has been compiled.

This is exported by default. See Sub::Exporter on how to customize it.

SEE ALSO

Top

Sub::Exporter

Variable::Magic

AUTHOR

Top

  Florian Ragwitz <rafl@debian.org>

COPYRIGHT AND LICENSE

Top


B-Hooks-EndOfScope documentation Contained in the B-Hooks-EndOfScope distribution.

use strict;
use warnings;

package B::Hooks::EndOfScope;
BEGIN {
  $B::Hooks::EndOfScope::AUTHORITY = 'cpan:FLORA';
}
BEGIN {
  $B::Hooks::EndOfScope::VERSION = '0.09';
}
# ABSTRACT: Execute code after a scope finished compilation

use 5.008000;
use Variable::Magic 0.34;

use Sub::Exporter -setup => {
    exports => ['on_scope_end'],
    groups  => { default => ['on_scope_end'] },
};



{
    my $wiz = Variable::Magic::wizard
        data => sub { [$_[1]] },
        free => sub { $_->() for @{ $_[1] }; () };

    sub on_scope_end (&) {
        my $cb = shift;

        $^H |= 0x020000;

        if (my $stack = Variable::Magic::getdata %^H, $wiz) {
            push @{ $stack }, $cb;
        }
        else {
            Variable::Magic::cast %^H, $wiz, $cb;
        }
    }
}


1;

__END__