line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DB::Pluggable::Role::AfterInit; |
2
|
1
|
|
|
1
|
|
792
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
3
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
23
|
|
4
|
1
|
|
|
1
|
|
17
|
use 5.010; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
37
|
|
5
|
1
|
|
|
1
|
|
4
|
use Role::Basic; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
15
|
|
6
|
|
|
|
|
|
|
with qw(Brickyard::Role::Plugin); |
7
|
|
|
|
|
|
|
requires qw(afterinit); |
8
|
|
|
|
|
|
|
our $VERSION = '1.112001'; |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=pod |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=for stopwords afterinit |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
DB::Pluggable::Role::AfterInit - Do something in the debugger's afterinit() function |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 IMPLEMENTING |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The C role indicates that a plugin wants to do something |
22
|
|
|
|
|
|
|
during the debugger's C function. The plugin must provide |
23
|
|
|
|
|
|
|
the C method. |