line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
####################################################################### |
2
|
|
|
|
|
|
|
# ex: set ts=8 sw=4 et |
3
|
|
|
|
|
|
|
######################################################################### |
4
|
|
|
|
|
|
|
package WWW::Facebook::API::Notes; |
5
|
|
|
|
|
|
|
|
6
|
34
|
|
|
34
|
|
196
|
use warnings; |
|
34
|
|
|
|
|
75
|
|
|
34
|
|
|
|
|
989
|
|
7
|
34
|
|
|
34
|
|
178
|
use strict; |
|
34
|
|
|
|
|
70
|
|
|
34
|
|
|
|
|
918
|
|
8
|
34
|
|
|
34
|
|
176
|
use Carp; |
|
34
|
|
|
|
|
74
|
|
|
34
|
|
|
|
|
14731
|
|
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
1
|
30
|
sub create { return shift->base->call( 'notes.create', @_ ) } |
11
|
1
|
|
|
1
|
1
|
30
|
sub delete { return shift->base->call( 'notes.delete', @_ ) } |
12
|
1
|
|
|
1
|
1
|
34
|
sub edit { return shift->base->call( 'notes.edit', @_ ) } |
13
|
1
|
|
|
1
|
1
|
31
|
sub get { return shift->base->call( 'notes.get', @_ ) } |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; # Magic true value required at end of module |
16
|
|
|
|
|
|
|
__END__ |