line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Reddit::Client::ModmailMessage; |
2
|
5
|
|
|
5
|
|
37
|
use strict; |
|
5
|
|
|
|
|
14
|
|
|
5
|
|
|
|
|
150
|
|
3
|
5
|
|
|
5
|
|
30
|
use warnings; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
119
|
|
4
|
5
|
|
|
5
|
|
27
|
use Carp; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
313
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
require Reddit::Client::Thing; # base doesn't require. use parent does |
7
|
5
|
|
|
5
|
|
30
|
use base qw/Reddit::Client::Thing/; |
|
5
|
|
|
|
|
13
|
|
|
5
|
|
|
|
|
641
|
|
8
|
5
|
|
|
|
|
33
|
use fields qw/ |
9
|
|
|
|
|
|
|
author |
10
|
|
|
|
|
|
|
body |
11
|
|
|
|
|
|
|
bodyMarkdown |
12
|
|
|
|
|
|
|
date |
13
|
|
|
|
|
|
|
isInternal |
14
|
5
|
|
|
5
|
|
37
|
/; |
|
5
|
|
|
|
|
12
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# no type, apparently. None listed in docs. Message is t4, but no indication |
17
|
|
|
|
|
|
|
# these are Messages |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|