line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
4
|
|
|
4
|
|
366
|
use strict; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
98
|
|
3
|
4
|
|
|
4
|
|
16
|
use warnings; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
181
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Context::Singleton::Frame::Promise::Builder; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = v1.0.5; |
8
|
|
|
|
|
|
|
|
9
|
4
|
|
|
4
|
|
44
|
use parent qw[ Context::Singleton::Frame::Promise ]; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
49
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub new { |
12
|
49
|
|
|
49
|
0
|
12040
|
my ($class, %params) = @_; |
13
|
|
|
|
|
|
|
|
14
|
49
|
|
|
|
|
143
|
my $self = $class->SUPER::new (%params); |
15
|
|
|
|
|
|
|
|
16
|
49
|
|
|
|
|
94
|
$self->{builder} = $params{builder}; |
17
|
|
|
|
|
|
|
|
18
|
49
|
|
|
|
|
99
|
$self; |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub builder { |
22
|
26
|
|
|
26
|
0
|
42
|
$_[0]->{builder}; |
23
|
|
|
|
|
|
|
} |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
sub notify_deducible { |
26
|
30
|
|
|
30
|
0
|
50
|
my ($self, $in_depth) = @_; |
27
|
|
|
|
|
|
|
|
28
|
30
|
100
|
|
|
|
72
|
$self->set_deducible ($in_depth) |
29
|
|
|
|
|
|
|
if $self->deducible_dependencies == $self->dependencies; |
30
|
|
|
|
|
|
|
} |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
1; |
33
|
|
|
|
|
|
|
|