line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Reddit::Client::Account; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
38
|
use strict; |
|
5
|
|
|
|
|
15
|
|
|
5
|
|
|
|
|
205
|
|
4
|
5
|
|
|
5
|
|
28
|
use warnings; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
147
|
|
5
|
5
|
|
|
5
|
|
26
|
use Carp; |
|
5
|
|
|
|
|
14
|
|
|
5
|
|
|
|
|
448
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
require Reddit::Client::Thing; |
8
|
|
|
|
|
|
|
|
9
|
5
|
|
|
5
|
|
34
|
use base qw/Reddit::Client::Thing/; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
2358
|
|
10
|
5
|
|
|
|
|
26
|
use fields qw/has_mail inbox_count created modhash created_utc link_karma |
11
|
|
|
|
|
|
|
comment_karma is_gold is_mod has_mod_mail |
12
|
|
|
|
|
|
|
features gold_creddits gold_expiration |
13
|
|
|
|
|
|
|
new_modmail_exists pref_no_profanity pref_show_snoovatar |
14
|
|
|
|
|
|
|
suspension_expiration_utc verified subreddit in_beta is_employee |
15
|
|
|
|
|
|
|
is_sponsor is_suspended pref_geopopular pref_top_karma_subreddits |
16
|
|
|
|
|
|
|
over_18 has_subscribed hide_from_robots has_verified_email |
17
|
5
|
|
|
5
|
|
38
|
/; |
|
5
|
|
|
|
|
10
|
|
18
|
|
|
|
|
|
|
|
19
|
5
|
|
|
5
|
|
1043
|
use constant type => "t2"; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
401
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |