line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package EntityModel::Query::FromTable; |
2
|
|
|
|
|
|
|
{ |
3
|
|
|
|
|
|
|
$EntityModel::Query::FromTable::VERSION = '0.102'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
use EntityModel::Class { |
6
|
16
|
|
|
|
|
247
|
_isa => [qw(EntityModel::Query::Table)], |
7
|
16
|
|
|
16
|
|
10368
|
}; |
|
16
|
|
|
|
|
31
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
EntityModel::Query::FromTable - FROM table definition |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 VERSION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
version 0.102 |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SYNOPSIS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
See L. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
See L. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 METHODS |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=cut |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 import |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Register parse handling. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
sub import { |
38
|
16
|
|
|
16
|
|
40
|
my $class = shift; |
39
|
|
|
|
|
|
|
$class->register( |
40
|
|
|
|
|
|
|
'from' => sub { |
41
|
7
|
|
|
7
|
|
9
|
my $self = shift; |
42
|
7
|
|
|
|
|
24
|
$self->parse_base( |
43
|
|
|
|
|
|
|
@_, |
44
|
|
|
|
|
|
|
method => 'from', |
45
|
|
|
|
|
|
|
type => 'EntityModel::Query::FromTable' |
46
|
|
|
|
|
|
|
); |
47
|
|
|
|
|
|
|
} |
48
|
16
|
|
|
|
|
245
|
); |
49
|
|
|
|
|
|
|
} |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
1; |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
__END__ |