line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
######################################################################
|
2
|
|
|
|
|
|
|
package Net::Amazon::Request::TextStream;
|
3
|
|
|
|
|
|
|
######################################################################
|
4
|
1
|
|
|
1
|
|
677
|
use warnings;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
30
|
|
5
|
1
|
|
|
1
|
|
4
|
use strict;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
6
|
1
|
|
|
1
|
|
4
|
use base qw(Net::Amazon::Request);
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
172
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
##################################################
|
9
|
|
|
|
|
|
|
sub new {
|
10
|
|
|
|
|
|
|
##################################################
|
11
|
1
|
|
|
1
|
1
|
36
|
my($class, %options) = @_;
|
12
|
|
|
|
|
|
|
|
13
|
1
|
|
|
|
|
9
|
$class->_assert_options_defined(\%options,
|
14
|
|
|
|
|
|
|
qw(textstream));
|
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
|
|
8
|
$class->_convert_option(\%options,
|
17
|
|
|
|
|
|
|
'textstream',
|
18
|
|
|
|
|
|
|
'TextStream');
|
19
|
|
|
|
|
|
|
|
20
|
1
|
|
|
|
|
9
|
my $self = $class->SUPER::new(%options);
|
21
|
|
|
|
|
|
|
|
22
|
1
|
|
|
|
|
11
|
$self->_convert_itemsearch();
|
23
|
|
|
|
|
|
|
|
24
|
0
|
|
|
|
|
|
bless $self, $class; # reconsecrate
|
25
|
|
|
|
|
|
|
}
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1;
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__END__
|